* lisp/emacs-lisp/package.el (package-delete): Only remove pkg-desc from
[bpt/emacs.git] / lisp / ChangeLog
1 2014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
4 package-alist.
5
6 2014-01-08 Bastien Guerry <bzg@gnu.org>
7
8 * emacs-lisp/package.el (package-installed-p): First check if the
9 package name is in package-alist.
10 (package-delete): Correctly delete the package from package-alist.
11
12 2014-01-08 Daiki Ueno <ueno@gnu.org>
13
14 * emacs-lisp/package.el (url-recreate-url): Declare.
15 (url-http-target-url): Declare.
16 (package-handle-response): Include requested URL in the error
17 message.
18 (package--check-signature): Don't re-signal errors from
19 package--with-work-buffer. Suggested by Stefan Monnier.
20
21 2014-01-07 Bastien Guerry <bzg@gnu.org>
22
23 * minibuffer.el (completion--try-word-completion): When both a
24 hyphen and a space are possible candidates for the character
25 following a word, display both candidates. (Bug#15980)
26
27 2014-01-07 Martin Rudalics <rudalics@gmx.at>
28
29 * window.el (balance-windows-2): While rounding don't give a
30 window more than the remainder. Bug#16351, Bug#16383.
31
32 2014-01-07 Glenn Morris <rgm@gnu.org>
33
34 * menu-bar.el (menu-bar-help-extra-packages): Remove.
35 (menu-bar-help-menu): Use view-external-packages instead.
36
37 2014-01-07 Bastien Guerry <bzg@gnu.org>
38
39 * emacs-lisp/package.el (package-delete): Also delete the package
40 name from `package-alist', not its description only.
41
42 2014-01-07 Glenn Morris <rgm@gnu.org>
43
44 * help.el (view-external-packages):
45 * menu-bar.el (menu-bar-help-extra-packages):
46 Visit efaq.info rather than etc/MORE.STUFF.
47
48 2014-01-07 Juri Linkov <juri@jurta.org>
49
50 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
51 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
52
53 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
54 that shadows RET. (Bug#16342)
55
56 2014-01-07 Chong Yidong <cyd@gnu.org>
57
58 * isearch.el (isearch-yank-char, isearch-yank-word)
59 (isearch-yank-line): Doc fix.
60
61 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
62
63 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
64 * emacs-lisp/elint.el (elint-find-builtins):
65 * emacs-lisp/eldoc.el (eldoc-symbol-function):
66 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
67 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
68 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
69 * apropos.el (apropos-safe-documentation):
70 * subr.el (symbol-file): Remove redundant fboundp.
71 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
72
73 2014-01-06 Bastien Guerry <bzg@gnu.org>
74
75 * hl-line.el (global-hl-line-overlay): Make a local variable.
76 (global-hl-line-overlays): New variable to store all overlays.
77 (global-hl-line-mode): Don't delete overlays from the current
78 buffer when `global-hl-line-sticky-flag' is non-nil.
79 (global-hl-line-highlight): Add new overlays to
80 `global-hl-line-overlays'.
81 (global-hl-line-unhighlight-all): New function to delete all
82 overlays when turning off `global-hl-line-mode'.
83 This fixes Bug#16183.
84
85 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
86
87 * subr.el (set-transient-map): Fix nested case and docstring.
88
89 2014-01-06 Tassilo Horn <tsdh@gnu.org>
90
91 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
92 `Texinfo' entry.
93
94 2014-01-06 Daniel Colascione <dancol@dancol.org>
95
96 Fix defun navigation in vc log view.
97
98 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
99 like `beginning-of-defun'.
100 (log-view-end-of-defun,log-view-end-of-defun-1): Rename old
101 log-view-end-of-defun to log-view-end-of-defun-1. Replace
102 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
103 (log-view-extract-comment): Call `log-view-current-entry' directly
104 instead of relying on broken `log-view-beginning-of-defun' behavior.
105
106 2014-01-06 Paul Eggert <eggert@cs.ucla.edu>
107
108 Spelling fixes.
109 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
110 * emacs-lisp/debug.el (cancel-debug-on-entry):
111 * epg.el (epg-error-to-string):
112 * files.el (recover-file):
113 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
114 * mail/emacsbug.el (report-emacs-bug-hook):
115 * mail/sendmail.el (mail-recover):
116 * ses.el (ses-yank-resize):
117 * term/ns-win.el (ns-print-buffer):
118 Spelling fixes in diagnostics, mostly for "canceled" with one L.
119 * epg.el (epg-key-capability-alist): Rename from misspelled version.
120 All uses changed.
121 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
122
123 2014-01-06 Leo Liu <sdl.web@gmail.com>
124
125 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
126 to avoid shadowning global key. (Bug#16354)
127
128 2014-01-06 Daniel Colascione <dancol@dancol.org>
129
130 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
131 rst-mode.
132
133 2014-01-05 Martin Rudalics <rudalics@gmx.at>
134
135 * window.el (balance-windows): Add mising t to fix Bug#16351.
136
137 2014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
138
139 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
140 (bug#16285).
141 (shr-insert): If we have a word that's longer than `shr-width',
142 break after it anyway. Otherwise we'll do no breaking once we get
143 such a long word.
144
145 2014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
146
147 * net/eww.el (eww): Support single/double quote for search.
148 * net/eww.el (eww-list-histories,eww-history-browse): Fixup.
149 (eww-history-quit): Delete and use quit-window.
150 (eww-history-kill): Delete, because it doesn't work well and
151 not necessary.
152 (eww-history-mode-map): Delete some keys and add easy-menu.
153
154 2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
155
156 Fix misspelling of 'chinese' in rx (Bug#16237).
157 * emacs-lisp/rx.el (rx-categories): Correct spelling of
158 chinese-two-byte.
159
160 Change subword regexps back to vars (Bug#16296).
161 * progmodes/subword.el (subword-forward-regexp)
162 (subword-backward-regexp): Change these back to variables.
163
164 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
165
166 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
167 syntax-begin-function (bug#16247).
168
169 2014-01-03 Chong Yidong <cyd@gnu.org>
170
171 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
172 (advice--docstring): Delete variable.
173 (advice--make-1): Leave the docstring empty.
174 (advice-add): Use function-documentation for advised docstring.
175
176 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
177 Ignore function-documentation property when getting documentation.
178 (ad-activate-advised-definition): Use function-documentation
179 generate the docstring.
180 (ad-make-advised-definition): Don't call
181 ad-make-advised-definition-docstring.
182 (ad-make-advised-definition-docstring, ad-advised-definition-p):
183 Delete functions.
184
185 * progmodes/sql.el (sql-help): Use function-documentation instead
186 of dynamic-docstring-function property. No need to autoload now.
187 (sql--help-docstring): New variable.
188 (sql--make-help-docstring): Use it.
189
190 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
191
192 * ielm.el (ielm-tab): Retarget.
193 (ielm-map): Use ielm-tab for tab.
194 (ielm-complete-filename): Use comint-filename-completion.
195 (ielm-complete-symbol): Remove.
196 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
197 remove ielm-tab from completion-at-point-functions (bug#16224).
198
199 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
200 Beware signals raised by predicates (bug#16201).
201
202 2014-01-02 Richard Stallman <rms@gnu.org>
203
204 * dired-aux.el (dired-do-print): Handle printer-name.
205
206 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
207 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
208 (rmail-epa-decrypt): Turn off mime processing.
209
210 * mail/rmail.el (rmail-make-in-reply-to-field):
211 Add parens in message-id.
212
213 * mail/rmail.el (rmail-get-coding-function): Variable.
214 (rmail-get-coding-system): Use it.
215
216 2013-12-31 Eli Zaretskii <eliz@gnu.org>
217
218 * international/mule-conf.el: Unify the charset indian-is13194.
219 (indian-is13194): Specify unify-map.
220
221 2013-12-31 Leo Liu <sdl.web@gmail.com>
222
223 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
224
225 2013-12-30 Daniel Colascione <dancol@dancol.org>
226
227 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
228 of printing a useless when we resume from sleep.
229
230 * progmodes/sh-script.el
231 (sh-smie-sh-forward-token,sh-smie-rc-forward-token): Fix infloop
232 in indentation code. (Bug#16233)
233
234 2013-12-28 João Távora <joaotavora@gmail.com>
235
236 * elec-pair.el (electric-pair-post-self-insert-function):
237 Don't open extra newlines at beginning of buffer. (Bug#16272)
238
239 2013-12-28 Eli Zaretskii <eliz@gnu.org>
240
241 * frame.el (window-system-for-display): Don't allow to create a
242 GUI frame from a -nw session on MS-Windows. (Bug#14739)
243
244 2013-12-28 Glenn Morris <rgm@gnu.org>
245
246 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
247 Update callers.
248
249 * apropos.el (apropos-match-face):
250 * calculator.el (calculator-displayer):
251 * dabbrev.el (dabbrev-search-these-buffers-only):
252 * face-remap.el (buffer-face-mode-face):
253 * simple.el (yank-handled-properties):
254 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
255 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
256 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
257 (hashcash-double-spend-database):
258 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
259 (ruby-deep-indent-paren-style):
260 * textmodes/flyspell.el (flyspell-auto-correct-binding):
261 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
262 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
263 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
264 Specify custom types.
265
266 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
267 * bookmark.el (bookmark-bmenu-use-header-line):
268 * doc-view.el (doc-view-scale-internally):
269 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
270 * register.el (register-preview-delay):
271 * net/shr.el (shr-bullet):
272 * progmodes/cfengine.el (cfengine-cf-promises)
273 (cfengine-parameters-indent):
274 * progmodes/octave.el (inferior-octave-error-regexp-alist):
275 * textmodes/reftex-vars.el (reftex-label-regexps):
276 * vc/log-edit.el (log-edit-setup-add-author): Add version.
277
278 * net/tls.el (tls-certtool-program): Fix default value.
279
280 * desktop.el (desktop-restore-in-current-display):
281 * newcomment.el (comment-empty-lines):
282 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
283 (idlwave-pad-keyword):
284 * progmodes/tcl.el (tcl-tab-always-indent):
285 * textmodes/reftex-vars.el (reftex-index-default-tag):
286 * elec-pair.el (electric-pair-skip-whitespace):
287 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
288
289 * emacs-lisp/authors.el (authors-ignored-files)
290 (authors-valid-file-names, authors-renamed-files-alist): Additions.
291
292 2013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
293
294 * shell.el (shell-dynamic-complete-command): Doc fix.
295 (shell--command-completion-data): Shell completion now matches
296 executable filenames from the current buffer's directory, on
297 systems in which this behavior is the default (windows-nt, ms-dos).
298
299 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
300
301 * net/shr.el (shr-insert): Don't infloop if the width is zero.
302
303 2013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
304
305 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
306 (bug#16251).
307
308 * electric.el: Move all electric-pair-* to elec-pair.el.
309 * elec-pair.el: New file, split from electric.el.
310
311 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
312
313 * net/shr.el (shr-find-fill-point): Don't try to fill if the
314 indentation level is larger than the width, because that will
315 infloop.
316 (shr-insert): Fill repeatedly long texts, so that Japanese is
317 formatted correctly (bug#16263).
318 (shr-find-fill-point): Off by one error in comparison with the
319 indentation.
320
321 2013-12-26 João Távora <joaotavora@gmail.com>
322
323 * electric.el (electric-pair-mode): More flexible engine for skip-
324 and inhibit predicates, new options for pairing-related functionality.
325 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
326 if that keeps or improves their balance in buffers.
327 (electric-pair-delete-adjacent-pairs): Delete the pair when
328 backspacing over adjacent matched delimiters.
329 (electric-pair-open-extra-newline): Open extra newline when
330 inserting newlines between adjacent matched delimiters.
331 (electric--sort-post-self-insertion-hook):
332 Sort post-self-insert-hook according to priority values when
333 minor-modes are activated.
334 * simple.el (newline-and-indent): Call newline with interactive
335 set to t.
336 (blink-paren-post-self-insert-function): Set priority to 100.
337 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
338 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
339 comments. Locally set electric-pair-skip-whitespace to 'chomp and
340 electric-pair-open-newline-between-pairs to nil.
341
342 2013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
343
344 * progmodes/python.el: Use lexical-binding.
345 (python-nav-beginning-of-defun): Stop searching ASAP.
346
347 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
348
349 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
350 Fix interactive spec. Doc fix. (Bug#15754)
351
352 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
353
354 * emacs-lisp/byte-run.el (eval-when-compile):
355 * progmodes/cc-defs.el (cc-eval-when-compile):
356 Fix edebug spec (bug#16184).
357
358 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
359
360 * net/shr.el (shr-visit-file): Remove debugging function.
361 (shr-insert): Don't infloop if we can't find a good place to break
362 the line (bug#16256).
363
364 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
365
366 * progmodes/python.el:
367 (python-nav--lisp-forward-sexp): New function.
368 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
369 python-nav-lisp-forward-sexp-safe.
370 (python-nav--forward-sexp): New argument SAFE allows switching
371 forward sexp movement behavior for parens.
372 (python-nav-forward-sexp): Throw errors on unterminated parens
373 (Bug#16191).
374 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
375 (python-nav-backward-sexp-safe): New functions.
376 (python-shell-buffer-substring):
377 Use `python-nav-forward-sexp-safe'.
378
379 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
380
381 * net/shr.el (shr-find-fill-point): Don't break lines before a
382 quotation mark.
383 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
384 (shr-find-fill-point): Remove the special checks for the quotation
385 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
386
387 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
388
389 * net/eww.el (eww-form-textarea): Use a different face for
390 textareas than text input since they have different keymaps
391 (bug#16142).
392
393 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
394
395 * progmodes/python.el (python-nav-beginning-of-statement):
396 Speed up (Bug#15295).
397
398 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
399
400 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
401 the window configuration.
402
403 2013-12-24 Eli Zaretskii <eliz@gnu.org>
404
405 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
406 we run on MS-Windows or MS-DOS.
407
408 2013-12-24 Martin Rudalics <rudalics@gmx.at>
409
410 * window.el (balance-windows-area): Call window-size instead of
411 window-height and window-width. Bug#16241.
412
413 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
414
415 * net/eww.el (eww-bookmark-quit): Remove.
416 (eww-bookmark-browse): Restore the window configuration when you
417 choose a bookmark (bug#16144).
418
419 2013-12-24 Daniel Colascione <dancol@dancol.org>
420
421 * icomplete.el: Remove redundant :group arguments to `defcustom'
422 throughout.
423 (icomplete-show-matches-on-no-input): New customizable variable.
424 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
425 we have something to show.
426 (icomplete-exhibit): Compute completions even if we have no user input.
427
428 2013-12-23 Daniel Colascione <dancol@dancol.org>
429
430 * icomplete.el: Move `provide' to end of file.
431
432 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
433
434 * net/gnutls.el (gnutls-verify-error): Add version tag.
435
436 2013-12-23 Chong Yidong <cyd@gnu.org>
437
438 * subr.el (set-transient-map): Rename from
439 set-temporary-overlay-map. Doc fix.
440
441 * face-remap.el (text-scale-adjust):
442 * indent.el (indent-rigidly):
443 * kmacro.el (kmacro-call-macro):
444 * minibuffer.el (minibuffer-force-complete):
445 * repeat.el (repeat):
446 * simple.el (universal-argument--mode):
447 * calendar/todo-mode.el (todo-insert-item--next-param):
448 * progmodes/f90.el (f90-abbrev-start): Callers changed.
449
450 * indent.el (indent-rigidly): Use substitute-command-keys.
451
452 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
453
454 * net/eww.el (eww-tag-select): Add text-property to jump to next
455 select field.
456 (eww): Add non-supported ftp error.
457
458 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
459
460 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
461 comments. Handle electric indent after typing `?' and `!'.
462
463 2013-12-22 Chong Yidong <cyd@gnu.org>
464
465 * faces.el (face-spec-recalc): If the theme specs are not
466 applicable to a frame, fall back on the defface spec.
467 This prevents themes from obliterating faces on low-color terminals.
468
469 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
470
471 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
472 after `{'. We need it after block openers, and it doesn't seem
473 to hurt after hash openers.
474
475 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
476
477 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
478 extracted from `ruby-smie-rules'.
479 (ruby--electric-indent-chars): New variable.
480 (ruby--electric-indent-p): New function.
481 (ruby-mode): Use `electric-indent-functions' instead of
482 `electric-indent-chars'.
483
484 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
485
486 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
487 docstring.
488 (ruby-smie-rules): Indent plus one level after `=>'.
489
490 2013-12-21 Richard Stallman <rms@gnu.org>
491
492 * simple.el (newline): Doc fix.
493
494 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
495
496 * net/eww.el (eww-list-histories, eww-list-histories)
497 (eww-history-browse, eww-history-quit, eww-history-kill)
498 (eww-history-mode-map, eww-history-mode): New command and
499 functions to list browser histories.
500 (eww-form-text): Support text form with disabled
501 and readonly attributes.
502 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
503
504 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
505
506 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
507 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
508 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
509 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
510 Use `user-error'.
511 (eww-bookmark-mode-map): Add menu.
512 (eww-render, eww-mode): Use `setq-local'.
513 (eww-tool-bar-map): New variable.
514 (eww-mode): Set `tool-bar-map'.
515 (eww-view-source): Check for `html-mode' with `fboundp'.
516
517 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
518
519 * net/shr.el (shr--extract-best-source): Don't bug out on audio
520 elements with text inside. Also remove debugging.
521
522 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
523
524 * cus-start.el (all): Add ns-use-srgb-colorspace.
525
526 2013-12-21 Chong Yidong <cyd@gnu.org>
527
528 * custom.el (custom-theme-recalc-face): Do nothing if the face is
529 undefined. Thus, theme settings for undefined faces do not take
530 effect until the faces are defined with defface, the same as with
531 theme variables.
532
533 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
534 (face-spec-reset-face): Don't assign extra properties in temacs.
535 (face-spec-recalc): Apply X resources too.
536
537 2013-12-21 Chong Yidong <cyd@gnu.org>
538
539 * faces.el (face-spec-set):
540 * cus-face.el (custom-theme-set-faces, custom-set-faces):
541 * custom.el (defface): Doc fixes (Bug#16203).
542
543 * indent.el (indent-rigidly-map): Add docstring, and move commands
544 into named functions.
545 (indent-rigidly-left, indent-rigidly-right)
546 (indent-rigidly-left-to-tab-stop)
547 (indent-rigidly-right-to-tab-stop): New functions. Decide on
548 indentation direction based on bidi direction, and accumulate
549 sequential commands in a single undo boundary.
550 (indent-rigidly--pop-undo): New utility function.
551
552 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
553
554 * faces.el (read-face-name): Require crm.el when using crm-separator.
555
556 2013-12-20 Daniel Colascione <dancol@dancol.org>
557
558 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
559 so that we don't reflow comments into the shebang line.
560
561 2013-12-20 Juri Linkov <juri@jurta.org>
562
563 * saveplace.el (save-place-to-alist): Add `dired-filename' as
564 a position when `dired-directory' is non-nil. Check integer
565 positions with `integerp'.
566 (toggle-save-place, save-places-to-alist): Add check for
567 `dired-directory'.
568 (save-place-find-file-hook): Check integer positions with
569 `integerp'.
570 (save-place-dired-hook): Use `dired-goto-file' when
571 `dired-filename' is found in the assoc list. Check integer
572 positions with `integerp'.
573 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
574
575 * dired.el (dired-initial-position-hook): Rename back from
576 `dired-initial-point-hook'.
577 (dired-initial-position): Rename `dired-initial-point-hook' to
578 `dired-initial-position-hook'.
579 (dired-file-name-at-point): Doc fix. (Bug#15329)
580
581 2013-12-20 Juri Linkov <juri@jurta.org>
582
583 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
584 (read-regexp-suggestions): New function.
585 (read-regexp): Use `read-regexp-defaults-function' to get default values.
586 Use `read-regexp-suggestions'. Add non-empty default to history
587 for empty input.
588 (occur-read-regexp-defaults-function): Remove function.
589 (occur-read-primary-args): Use `regexp-history-last' instead of
590 `occur-read-regexp-defaults-function'.
591
592 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
593 (hi-lock-line-face-buffer, hi-lock-face-buffer)
594 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
595 `hi-lock-read-regexp-defaults-function'. Doc fix.
596 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
597 with `find-tag-default-as-symbol-regexp'. Doc fix.
598 (hi-lock-read-regexp-defaults): Remove function.
599 (hi-lock-regexp-okay): Add check for null.
600
601 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
602 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
603
604 * subr.el (find-tag-default-as-symbol-regexp): New function.
605 (find-tag-default-as-regexp): Move symbol regexp formatting to
606 `find-tag-default-as-symbol-regexp'.
607
608 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
609
610 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
611 (Bug#14179)
612
613 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
614
615 * calendar/todo-mode.el: New implementation of item insertion
616 commands and key bindings.
617 (todo-key-prompt): New face.
618 (todo-insert-item): New command.
619 (todo-insert-item--parameters): New defconst, replacing defvar
620 todo-insertion-commands-args-genlist.
621 (todo-insert-item--param-key-alist): New defconst, replacing
622 defvar todo-insertion-commands-arg-key-list.
623 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
624 (todo-insert-item--argsleft, todo-insert-item--apply-args)
625 (todo-insert-item--next-param): New functions.
626 (todo-insert-item--args, todo-insert-item--argleft)
627 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
628 New variables.
629 (todo-key-bindings-t): Change binding of "i" from
630 todo-insertion-map to todo-insert-item.
631 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
632 (todo-insertion-command-name, todo-insertion-commands-names)
633 (todo-define-insertion-command, todo-insertion-commands)
634 (todo-insertion-key-bindings, todo-insertion-map): Remove.
635
636 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
637
638 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
639 (todo-toggle-item-highlighting): Use eval-and-compile instead of
640 eval-when-compile.
641 (todo-move-category): Allow choosing a non-existing todo file to
642 move the category to, and create that file.
643 (todo-default-priority): New user option.
644 (todo-set-item-priority): Use it.
645 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
646 (desktop-restore-file-buffer): Declare.
647 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
648 (todo-modes-set-2): Locally set desktop-save-buffer to
649 todo-desktop-save-buffer.
650 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
651 (auto-mode-alist): Add autoload cookie.
652
653 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
654
655 * emacs-lisp/subr-x.el: Renamed from helpers.el.
656 helpers.el was a poor choice of name.
657 (string-remove-prefix): New function.
658 (string-remove-suffix): New function.
659
660 2013-12-20 Martin Rudalics <rudalics@gmx.at>
661
662 Fix assignment for new window total sizes.
663 * window.el (window--pixel-to-size): Remove function.
664 (window--pixel-to-total-1, window--pixel-to-total):
665 Fix calculation of new total sizes.
666
667 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
668
669 * comint.el (comint-output-filter): Fix rear-nonsticky property
670 placement (Bug#16010).
671
672 2013-12-20 Chong Yidong <cyd@gnu.org>
673
674 * faces.el (read-color): Minor fix for completion function.
675
676 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
677
678 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
679 New option. (Bug#16182)
680 (ruby-smie--indent-to-stmt-p): Use it.
681 (ruby-smie-rules): Revert the logic in the handling of `when'.
682 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
683 (ruby-deep-arglist, ruby-deep-indent-paren)
684 (ruby-deep-indent-paren-style): Update docstrings to note that the
685 vars don't have any effect with SMIE.
686
687 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
688
689 * calc/calc.el (calc-enter, calc-pop): Use the variable
690 `calc-context-sensitive-enter'.
691
692 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
693
694 * net/shr.el (shr-insert): Protect against infloops in degenerate
695 tables.
696
697 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
698
699 * progmodes/octave.el (octave): Add link to manual and octave
700 homepage.
701 (octave-mode-menu): Link to octave-mode manual.
702
703 2013-12-20 Leo Liu <sdl.web@gmail.com>
704
705 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
706 insertion using skeleton-end-newline. (Bug#16138)
707
708 2013-12-20 Juri Linkov <juri@jurta.org>
709
710 * replace.el (occur-engine): Use `add-face-text-property'
711 to add the face property to matches and titles. (Bug#14645)
712
713 * hi-lock.el (hi-green): Use lighter color "light green" closer to
714 the palette of other hi-lock colors.
715 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
716
717 2013-12-19 Juri Linkov <juri@jurta.org>
718
719 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
720 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
721 (minibuffer-history-symbol): Move variable declaration closer to
722 its usage.
723
724 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
725 (Bug#14785)
726
727 2013-12-19 Juri Linkov <juri@jurta.org>
728
729 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
730 New function.
731 (log-edit-hook): Add it to :options. (Bug#16170)
732
733 2013-12-19 Juri Linkov <juri@jurta.org>
734
735 * simple.el (eval-expression-print-format): Don't check for
736 command names and the last command. Always display additional
737 formats of the integer result in the echo area, and insert them
738 to the current buffer only with a zero prefix arg.
739 Display character when char-displayable-p is non-nil.
740 (eval-expression): With a zero prefix arg, set `print-length' and
741 `print-level' to nil, and insert the integer values from
742 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
743
744 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
745 `eval-last-sexp-arg-internal'. Doc fix.
746 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
747 `eval-last-sexp-print-value'. Doc fix.
748 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
749 Set `print-length' and `print-level' to nil when arg is zero.
750 (eval-last-sexp): Doc fix.
751 (eval-defun-2): Print the integer values from
752 `eval-expression-print-format' at the end.
753
754 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
755 values from `eval-expression-print-format' at the end.
756
757 * ielm.el (ielm-eval-input): Print the integer
758 values from `eval-expression-print-format' at the end.
759
760 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
761
762 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
763 2013-12-11T19:01:44Z!tzz@lifelogs.com.
764
765 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
766
767 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
768 (hl-line-highlight, global-hl-line-highlight): Use it.
769 (hl-line-overlay): Use defvar-local.
770
771 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
772
773 * term/ns-win.el: Require dnd.
774 (global-map): Remove drag items.
775 (ns-insert-text, ns-set-foreground-at-mouse)
776 (ns-set-background-at-mouse):
777 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
778 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
779 New functions.
780
781 2013-12-19 Glenn Morris <rgm@gnu.org>
782
783 * emacs-lisp/ert.el (ert-select-tests):
784 Fix string/symbol mixup. (Bug#16121)
785
786 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
787
788 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
789 keywords to their parent.
790
791 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
792
793 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
794 first arg to be a string (fixed dead code), or an operator symbol.
795 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
796 operator symbols.
797 (ruby-smie-rules): Remove parent token check in the `.' clause, it
798 did nothing. Don't respond to `(:after ".")', it will be called
799 with :before anyway. Remove the ` @ ' rule, it didn't seem to
800 change anything. Only return indentation for binary operators
801 when they are hanging. De-dent opening paren when its parent is
802 `.', otherwise it looks bad when the dot is not at bol or eol
803 (bug#16182).
804
805 2013-12-19 Juri Linkov <juri@jurta.org>
806
807 * replace.el (query-replace-read-args): Split a non-negative arg
808 and a negative arg into separate elements.
809 (query-replace, query-replace-regexp, replace-string)
810 (replace-regexp): Add arg `backward'. Doc fix.
811 (replace-match-maybe-edit): When new arg `backward' is non-nil,
812 move point to the beginning of the match.
813 (replace-search, replace-highlight): Use new arg `backward'
814 to set the value of `isearch-forward'.
815 (perform-replace): Add arg `backward' and use it to perform
816 replacement backward. (Bug#14979)
817
818 * isearch.el (isearch-query-replace): Use a negative prefix arg
819 to call `perform-replace' with a non-nil arg `backward'.
820
821 2013-12-18 Juri Linkov <juri@jurta.org>
822
823 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
824 to the default list. Move `log-edit-show-files' to the end.
825 Add more available functions to options.
826 (log-edit): Move default specific settings to
827 `log-edit-insert-message-template'. Don't move point.
828 (log-edit-insert-message-template): New function.
829 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
830 (Bug#16170)
831
832 2013-12-18 Juri Linkov <juri@jurta.org>
833
834 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
835 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
836
837 2013-12-18 Leo Liu <sdl.web@gmail.com>
838
839 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
840 (Bug#16186)
841
842 2013-12-18 Eli Zaretskii <eliz@gnu.org>
843
844 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
845 formats for displaying file sizes when the -s switch is given.
846 Instead, compute a separate format for displaying the size in
847 blocks, which is displayed in addition to the "regular" size.
848 When -h is given in addition to -s, produce size in blocks in
849 human-readable form as well. (Bug#16179)
850
851 2013-12-18 Tassilo Horn <tsdh@gnu.org>
852
853 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
854 Reference tables with ~\ref{...} instead of only \ref{...}.
855
856 2013-12-18 Chong Yidong <cyd@gnu.org>
857
858 * cus-edit.el (custom-magic-alist): Fix "themed" description
859 (Bug#14348).
860
861 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
862 is non-nil, do not create a new entry in the symbol's theme-value
863 or theme-face property; update theme-settings only (Bug#14664).
864 (custom-available-themes): Doc fix.
865
866 * cus-theme.el (custom-new-theme-mode-map): Add bindings
867 (Bug#15674).
868
869 * replace.el (occur-engine): Avoid infloop (Bug#7593).
870
871 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
872
873 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
874 (Bug#13914).
875
876 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
877
878 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
879
880 2013-12-18 Glenn Morris <rgm@gnu.org>
881
882 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
883 * cus-start.el (load-prefer-newer): New option.
884
885 2013-12-18 Le Wang <l26wang@gmail.com>
886
887 * comint.el (comint-previous-matching-input-from-input):
888 Retain point (Bug#13404).
889
890 2013-12-18 Chong Yidong <cyd@gnu.org>
891
892 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
893
894 2013-12-18 Glenn Morris <rgm@gnu.org>
895
896 * mail/emacsbug.el (report-emacs-bug):
897 Only mention enable-multibyte-characters if non-standard.
898
899 2013-12-17 Juri Linkov <juri@jurta.org>
900
901 * arc-mode.el (archive-extract-by-file): Check if directory exists
902 before deletion to not show irrelevant errors if it doesn't exist.
903
904 2013-12-17 Juri Linkov <juri@jurta.org>
905
906 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
907 (Bug#14751)
908
909 * net/eww.el (browse-web): Add alias to `eww'.
910 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
911 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
912
913 * net/browse-url.el (browse-url-browser-function): Move `eww'
914 closer to similar functions.
915
916 * startup.el (fancy-startup-screen, fancy-about-screen):
917 Set browse-url-browser-function to eww-browse-url locally.
918 (Bug#14751)
919
920 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
921
922 * window.el (window--pixel-to-total): Remove unused `mini' var.
923 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
924 (split-window): Remove unused `new' var.
925 (window--display-buffer): Remove unused `frame' and `delta' vars.
926 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
927 and display-width'.
928
929 2013-12-17 Martin Rudalics <rudalics@gmx.at>
930
931 * dired.el (dired-mark-pop-up):
932 * register.el (register-preview): Don't bind
933 split-height-threshold here since it's now done in
934 display-buffer-below-selected.
935
936 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
937
938 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
939 xterm-rgb-convert-to-16bit.
940 (rxvt-register-default-colors): Standardize with
941 xterm-register-default-colors (Bug#14078).
942
943 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
944
945 * simple.el (kill-region): Pass mark first, then point, so that
946 kill-append works right (Bug#12819).
947 (copy-region-as-kill, kill-ring-save): Likewise.
948
949 2013-12-17 Leo Liu <sdl.web@gmail.com>
950
951 * net/rcirc.el (rcirc-add-face):
952 * eshell/em-prompt.el (eshell-emit-prompt):
953 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
954 (Bug#16167)
955
956 2013-12-17 Chong Yidong <cyd@gnu.org>
957
958 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
959 Suggested by Xue Fuqiao.
960
961 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
962
963 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
964
965 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
966
967 * net/shr.el (shr-insert-document): Remove unused var
968 `shr-preliminary-table-render'.
969 (shr-rescale-image): Remove unused arg `force'.
970 (shr-put-image): Update calls accordingly.
971 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
972
973 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
974
975 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
976 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
977 :close-all, to see which indentation method to use (Bug#16116).
978 (smie-rules-function): Document the method :close-all.
979
980 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
981
982 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
983
984 * net/eww.el (eww-display-html): If we can't find the anchor we're
985 looking for, then go to point-min.
986
987 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
988
989 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
990 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
991 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
992 Expand dir too, in case it's relative.
993
994 2013-12-16 Juri Linkov <juri@jurta.org>
995
996 * desktop.el (desktop-auto-save-timeout): Change default to
997 `auto-save-timeout'. Doc fix.
998 (desktop-save): Skip the timestamp in desktop-saved-frameset
999 when checking for auto-save changes.
1000 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
1001 `desktop-auto-save' is called repeatedly by the idle timer.
1002 (desktop-auto-save-set-timer): Replace `run-with-timer' with
1003 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
1004 (Bug#15331)
1005
1006 2013-12-16 Juri Linkov <juri@jurta.org>
1007
1008 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
1009 (Bug#16035)
1010 (isearch-pre-command-hook): Check `this-command' for symbolp.
1011
1012 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
1013
1014 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
1015
1016 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
1017
1018 * progmodes/cfengine.el (cfengine3--current-word): Remove.
1019 (cfengine3--current-function): Bring in the current-function
1020 functionality from `cfengine3--current-word'.
1021 (cfengine3-completion-function): Bring in the
1022 bounds-of-current-word functionality from
1023 `cfengine3--current-word'.
1024
1025 2013-12-16 Martin Rudalics <rudalics@gmx.at>
1026
1027 * window.el (display-buffer-below-selected):
1028 Bind split-height-threshold to 0 as suggested by Juri Linkov.
1029
1030 2013-12-16 Leo Liu <sdl.web@gmail.com>
1031
1032 * progmodes/compile.el (compile-goto-error): Do not push-mark.
1033 Remove NOMSG arg and all uses changed.
1034
1035 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
1036
1037 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
1038 (cua--deactivate-rectangle): Don't deactivate the mark.
1039 (cua-set-rectangle-mark): Don't set mark-active since
1040 cua--activate-rectangle already does it for us.
1041 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
1042 non-rectangular region.
1043
1044 * emulation/cua-base.el (cua-repeat-replace-region):
1045 Use with-current-buffer.
1046
1047 * net/gnutls.el: Use cl-lib.
1048 (gnutls-negotiate): `mapcan' -> cl-mapcan.
1049
1050 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
1051
1052 * emacs-lisp/package.el (package-built-in-p): Support both
1053 built-in and the package.el converted package descriptions.
1054 (package-show-package-list): Allow keywords.
1055 (package-keyword-button-action): Use it instead of
1056 `finder-list-matches'.
1057 (package-menu-filter-interactive): Interactive filtering (by
1058 keyword) function.
1059 (package-menu--generate): Support keywords and change keymappings
1060 and headers when they are given.
1061 (package--has-keyword-p): Helper function.
1062 (package-menu--refresh): Use it.
1063 (package--mapc): Helper function.
1064 (package-all-keywords): Use it.
1065 (package-menu-mode-map): Set up menu items and keybindings to
1066 provide a filtering UI.
1067
1068 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
1069
1070 * net/gnutls.el (gnutls-verify-error): New defcustom to control
1071 the behavior when a certificate fails validation. Defaults to
1072 old behavior: never abort, just warn.
1073 (gnutls-negotiate): Use it.
1074
1075 2013-12-14 Martin Rudalics <rudalics@gmx.at>
1076
1077 * window.el (display-buffer-below-selected): Never split window
1078 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
1079
1080 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
1081
1082 * emacs-lisp/package.el (package--prepare-dependencies): New function.
1083 (package-buffer-info): Use it (bug#15108).
1084
1085 2013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
1086
1087 * icomplete.el (icomplete-completions): Make sure the prefix is already
1088 displayed elsewhere before hiding it (bug#16219).
1089
1090 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
1091
1092 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
1093 open-paren tokens when preceded by a open-paren, too.
1094 (ruby-smie-rules): Handle virtual indentation after open-paren
1095 tokens specially. If there is code between it and eol, return the
1096 column where is starts (Bug#16118).
1097
1098 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
1099
1100 * progmodes/cfengine.el: Fix `add-hook' doc.
1101 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
1102 (cfengine3--current-word): Fix parameters.
1103 (cfengine3-make-syntax-cache): Simplify further.
1104 (cfengine3-completion-function, cfengine3--current-function):
1105 Use `assq' for symbols.
1106 (cfengine3--current-function): Fix `cfengine3--current-word' call.
1107
1108 2013-12-13 Glenn Morris <rgm@gnu.org>
1109
1110 * loadup.el (load-path): Warn if site-load or site-init changes it.
1111 No more need to reset it when bootstrapping.
1112
1113 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
1114
1115 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
1116 locations for cf-promises.
1117 (cfengine-mode-syntax-functions-regex): New caching variable.
1118 (cfengine3-fallback-syntax): Fallback syntax for cases where
1119 cf-promises doesn't run.
1120 (cfengine3--current-word): Reimplement using
1121 `cfengine-mode-syntax-functions-regex'.
1122 (cfengine3-completion-function, cfengine3--current-function):
1123 Use `cfengine3-make-syntax-cache' directly.
1124 (cfengine3-clear-syntax-cache): New function.
1125 (cfengine3-make-syntax-cache): Simplify and create
1126 `cfengine-mode-syntax-functions-regex' on demand.
1127 (cfengine3-format-function-docstring): Don't call
1128 `cfengine3-make-syntax-cache' explicitly.
1129
1130 2013-12-13 Martin Rudalics <rudalics@gmx.at>
1131
1132 Fix windmove-find-other-window broken after pixelwise resizing
1133 (Bug#16017).
1134 * windmove.el (windmove-other-window-loc): Revert change from
1135 2013-12-04.
1136 (windmove-find-other-window): Call window-in-direction.
1137 * window.el (window-in-direction): New arguments SIGN, WRAP and
1138 MINI to emulate original windmove-find-other-window behavior.
1139
1140 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
1141
1142 * simple.el (blink-matching--overlay): New variable.
1143 (blink-matching-open): Instead of moving point, highlight the
1144 matching paren with an overlay
1145 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
1146
1147 * faces.el (paren-showing-faces, show-paren-match)
1148 (show-paren-mismatch): Move from paren.el.
1149
1150 2013-12-13 Leo Liu <sdl.web@gmail.com>
1151
1152 * indent.el (indent-region): Disable progress reporter in
1153 minibuffer. (Bug#16108)
1154
1155 * bindings.el (visual-order-cursor-movement): Fix version.
1156
1157 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
1158
1159 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
1160 Also match after beginning of line.
1161 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
1162 files. Thanks to Russell Sim. (Bug#15378)
1163
1164 2013-12-13 Juri Linkov <juri@jurta.org>
1165
1166 * simple.el <Keypad support>: Remove key bindings duplicated
1167 with bindings.el. (Bug#14397)
1168
1169 2013-12-13 Juri Linkov <juri@jurta.org>
1170
1171 * comint.el (comint-mode-map): Replace `delete-char' with
1172 `delete-forward-char'. (Bug#16109)
1173
1174 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
1175
1176 * progmodes/python.el (python-indent-calculate-indentation):
1177 Fix de-denters cornercase. (Bug#15731)
1178
1179 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
1180
1181 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
1182 (advice--make): Pay attention to `depth'.
1183 (advice--make-1): Don't autoload commands eagerly.
1184 * emacs-lisp/elp.el (elp-instrument-function):
1185 * emacs-lisp/trace.el (trace-function-internal):
1186 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
1187
1188 * iswitchb.el (iswitchb-mode): Don't belittle ido.
1189
1190 2013-12-12 Eli Zaretskii <eliz@gnu.org>
1191
1192 * term/w32-win.el (w32-handle-dropped-file):
1193 * startup.el (normal-top-level):
1194 * net/browse-url.el (browse-url-file-url):
1195 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
1196 decode file names using 'utf-8' rather than
1197 file-name-coding-system.
1198
1199 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
1200
1201 * progmodes/python.el (python-indent-context)
1202 (python-indent-calculate-indentation): Fix auto-identation
1203 behavior for comment blocks. (Bug#15916)
1204
1205 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
1206
1207 * progmodes/python.el (python-indent-calculate-indentation):
1208 When determining indentation, don't treat "return", "pass", etc., as
1209 operators when they are just string constituents. (Bug#15812)
1210
1211 2013-12-12 Juri Linkov <juri@jurta.org>
1212
1213 * uniquify.el (uniquify-buffer-name-style): Change default to
1214 `post-forward-angle-brackets'.
1215
1216 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
1217 `uniquify'. Change default to `post-forward-angle-brackets'.
1218
1219 2013-12-11 Glenn Morris <rgm@gnu.org>
1220
1221 * emacs-lisp/package.el (finder-list-matches):
1222 Autoload rather than falsely declaring.
1223
1224 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
1225
1226 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
1227 (eww-mode-map): Use them.
1228
1229 2013-12-11 Martin Rudalics <rudalics@gmx.at>
1230
1231 * window.el (display-buffer-in-side-window): Fix doc-string
1232 (Bug#16115).
1233
1234 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
1235
1236 * vc/vc-git.el: Silence byte-compiler warnings.
1237 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
1238 (log-edit-set-header): Declare.
1239
1240 2013-12-11 Eli Zaretskii <eliz@gnu.org>
1241
1242 * Makefile.in (custom-deps, finder-data): Run output file names
1243 through unmsys--file-name. (Bug#16099)
1244
1245 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
1246
1247 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
1248 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
1249
1250 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
1251 instead of deleting the selection "by hand" (bug#16098).
1252 Rely on insert-for-yank to yank rectangles.
1253 (cua-highlight-region-shift-only): Mark obsolete.
1254 (cua-mode): Don't enable/disable transient-mark-mode,
1255 shift-select-mode (cua-mode works both with and without them), and
1256 pc-selection-mode (obsolete).
1257 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
1258 (cua--deactivate-rectangle): Deactivate it.
1259
1260 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
1261 (delete-selection-helper): Make sure yank starts at the top of the
1262 deleted region.
1263 (minibuffer-keyboard-quit): Use region-active-p.
1264
1265 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
1266
1267 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
1268 to `delete' (bug#16109).
1269
1270 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1271
1272 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
1273 info manual and show keybindings and set `:group' keyword.
1274
1275 2013-12-11 Juri Linkov <juri@jurta.org>
1276
1277 * delsel.el (delete-active-region): Let-bind `this-command'
1278 to prevent `kill-region' from changing its original value.
1279 (delete-selection-helper): Handle `overwrite-mode' for the type
1280 `kill' exactly the same way as for the type `t'.
1281 (insert-char, quoted-insert, reindent-then-newline-and-indent):
1282 Support more commands. (Bug#13312)
1283
1284 2013-12-11 Juri Linkov <juri@jurta.org>
1285
1286 * bindings.el: Map kp keys to non-kp keys systematically
1287 with basic modifiers control, meta and shift. (Bug#14397)
1288
1289 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
1290
1291 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
1292 "Close browser" menu items. Fix wrong function of "List
1293 bookmarks".
1294
1295 2013-12-11 Juri Linkov <juri@jurta.org>
1296
1297 * misearch.el (multi-isearch-buffers): Set the value of
1298 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
1299 arg of isearch-forward to t.
1300 (multi-isearch-buffers-regexp): Set the value of
1301 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
1302 arg of isearch-forward-regexp to t.
1303 (multi-isearch-files): Set the value of
1304 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
1305 arg of isearch-forward to t.
1306 (multi-isearch-files-regexp): Set the value of
1307 `multi-isearch-file-list globally. Set NO-RECURSIVE-EDIT
1308 arg of isearch-forward-regexp to t. (Bug#16035)
1309
1310 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
1311 arg of isearch-forward to t.
1312 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
1313 arg of isearch-forward-regexp to t.
1314 (dired-isearch-filter-filenames): Remove unnecessary check for
1315 `dired-isearch-filenames'.
1316
1317 * comint.el (comint-history-isearch-backward):
1318 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
1319 (comint-history-isearch-backward-regexp):
1320 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
1321
1322 2013-12-10 Eli Zaretskii <eliz@gnu.org>
1323
1324 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
1325 unmsys--file-name. (Bug#16099)
1326
1327 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
1328
1329 * emacs-lisp/package.el (package-keyword-button-action):
1330 Remove finder.el require dependency.
1331
1332 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
1333
1334 * emacs-lisp/package.el: Require finder.el.
1335 (describe-package-1): Add keyword buttons.
1336 (package-make-button): New convenience function.
1337 (package-keyword-button-action): Keyword button action using
1338 `finder-list-matches'.
1339
1340 2013-12-09 Eli Zaretskii <eliz@gnu.org>
1341
1342 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
1343 last commit.
1344
1345 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
1346
1347 * autorevert.el (auto-revert-notify-add-watch): Do not handle
1348 symlinked files.
1349
1350 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
1351
1352 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
1353 after the end of a percent literal.
1354
1355 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
1356
1357 * progmodes/ruby-mode.el (ruby-forward-string): Document.
1358 Handle caret-delimited strings (Bug#16079).
1359
1360 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
1361
1362 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
1363 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
1364 `ruby-parse-partial' (Bug#16078).
1365
1366 2013-12-09 Leo Liu <sdl.web@gmail.com>
1367
1368 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
1369
1370 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
1371
1372 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
1373 (js-switch-indent-offset): New option.
1374 (js--proper-indentation): Use it. And handle the case when
1375 "default" is actually a key in an object literal.
1376 (js--same-line): New function.
1377 (js--multi-line-declaration-indentation): Use it.
1378 (js--indent-in-array-comp, js--array-comp-indentation):
1379 New functions.
1380 (js--proper-indentation): Use them, to handle array comprehension
1381 continuations.
1382
1383 2013-12-08 Leo Liu <sdl.web@gmail.com>
1384
1385 * progmodes/flymake.el (flymake-highlight-line): Re-write.
1386 (flymake-make-overlay): Remove arg MOUSE-FACE.
1387 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
1388
1389 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
1390
1391 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
1392 New function.
1393 (redisplay-highlight-region-function): Use it.
1394
1395 * emulation/cua-base.el (cua--explicit-region-start)
1396 (cua--last-region-shifted): Remove.
1397 (cua--deactivate): Use deactivate-mark.
1398 (cua--pre-command-handler-1): Don't handle shift-selection.
1399 (cua--post-command-handler-1): Don't change transient-mark-mode.
1400 (cua--select-keymaps): Use region-active-p rather than
1401 cua--explicit-region-start or cua--last-region-shifted.
1402 (cua-mode): Enable shift-select-mode.
1403
1404 2013-12-08 Leo Liu <sdl.web@gmail.com>
1405
1406 * progmodes/flymake.el (flymake-popup-current-error-menu):
1407 Rename from flymake-display-err-menu-for-current-line. Reimplement.
1408 (flymake-posn-at-point-as-event, flymake-popup-menu)
1409 (flymake-make-emacs-menu): Remove. (Bug#16077)
1410
1411 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
1412
1413 * rect.el (rectangle-mark-mode): Activate mark even if
1414 transient-mark-mode is off (bug#16066).
1415 (rectangle--highlight-for-redisplay): Fix boundary condition when point
1416 is > mark and at bolp.
1417
1418 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
1419 (region-extract-function): Use it.
1420 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
1421 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
1422 Delete functions.
1423 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
1424 kill-ring-save, kill-region, delete-char, delete-forward-char.
1425 Ignore self-insert-iso.
1426
1427 * emulation/cua-gmrk.el (cua--init-global-mark):
1428 Ignore `self-insert-iso'.
1429
1430 * emulation/cua-base.el (cua--prefix-copy-handler)
1431 (cua--prefix-cut-handler): Rely on region-extract-function rather than
1432 checking cua--rectangle.
1433 (cua-delete-region): Use region-extract-function.
1434 (cua-replace-region): Delete function.
1435 (cua-copy-region, cua-cut-region): Obey region-extract-function.
1436 (cua--pre-command-handler-1): Don't do the delete-selection thing.
1437 (cua--self-insert-char-p): Ignore `self-insert-iso'.
1438 (cua--init-keymaps): Don't remap delete-selection commands.
1439 (cua-mode): Use delete-selection-mode instead of rolling our own
1440 (bug#16085).
1441
1442 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
1443 Obey region-extract-function.
1444
1445 Make registers and delete-selection-mode work on rectangles.
1446 * register.el (describe-register-1): Don't modify the register's value.
1447 (copy-to-register): Obey region-extract-function.
1448 * delsel.el (delete-active-region): Obey region-extract-function.
1449
1450 2013-12-08 Leo Liu <sdl.web@gmail.com>
1451
1452 * progmodes/flymake.el (flymake, flymake-error-bitmap)
1453 (flymake-warning-bitmap, flymake-fringe-indicator-position)
1454 (flymake-compilation-prevents-syntax-check)
1455 (flymake-start-syntax-check-on-newline)
1456 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
1457 (flymake-start-syntax-check-on-find-file, flymake-log-level)
1458 (flymake-xml-program, flymake-master-file-dirs)
1459 (flymake-master-file-count-limit)
1460 (flymake-allowed-file-name-masks): Relocate.
1461 (flymake-makehash, flymake-float-time)
1462 (flymake-replace-regexp-in-string, flymake-split-string)
1463 (flymake-get-temp-dir): Remove.
1464 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
1465 (flymake-current-row, flymake-selected-frame)
1466 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
1467 related functions. (Bug#16077)
1468
1469 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
1470
1471 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
1472
1473 2013-12-07 Tassilo Horn <tsdh@gnu.org>
1474
1475 * help-fns.el (describe-function-1): Use new advice-* functions
1476 rather than old ad-* functions. Fix function type description and
1477 source links for advised functions and subrs.
1478
1479 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
1480
1481 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
1482
1483 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
1484
1485 * progmodes/compile.el (compilation-start):
1486 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
1487
1488 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1489 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
1490
1491 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
1492
1493 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1494 Touch up the last change.
1495
1496 2013-12-06 Leo Liu <sdl.web@gmail.com>
1497
1498 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
1499 (inferior-octave-startup): Always use "octave> " for prompt.
1500 (octave-goto-function-definition)
1501 (octave-sync-function-file-names)
1502 (octave-find-definition-default-filename): Remove redundant backquotes.
1503
1504 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
1505
1506 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
1507 syntax for `?'.
1508 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
1509 where appropriate already.
1510 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
1511 end of method names (Bug#15874).
1512
1513 2013-12-06 Juri Linkov <juri@jurta.org>
1514
1515 * isearch.el (isearch--saved-overriding-local-map):
1516 New internal variable.
1517 (isearch-mode): Set it to the initial value of
1518 `overriding-terminal-local-map'.
1519 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
1520 with `isearch--saved-overriding-local-map'. (Bug#16035)
1521
1522 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
1523
1524 * progmodes/octave.el (inferior-octave-completion-table):
1525 Turn back into function, use `completion-table-with-cache'
1526 (Bug#11906). Update all references.
1527
1528 * minibuffer.el (completion-table-with-cache): New function.
1529
1530 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
1531
1532 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
1533
1534 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
1535
1536 * net/eww.el (eww-current-source): New variable to store page
1537 source.
1538 (eww-display-html, eww-mode, eww-save-history)
1539 (eww-restore-history): Use it.
1540 (eww-view-source): New command to view page source.
1541 Opportunistically uses `html-mode' to highlight the buffer.
1542 (eww-mode-map): Install it.
1543
1544 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
1545
1546 * net/dbus.el (dbus-unregister-service)
1547 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
1548 Fix docstring.
1549 (dbus-unregister-service): Skip :serial entries in
1550 `dbus-registered-objects-table'.
1551 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
1552
1553 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
1554
1555 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
1556 around keywords with extra `split-string' argument.
1557
1558 2013-12-04 Martin Rudalics <rudalics@gmx.at>
1559
1560 * windmove.el (windmove-other-window-loc): Handle navigation
1561 between windows (excluding the minibuffer window - Bug#16017).
1562
1563 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
1564
1565 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
1566 in D-Bus type syntax.
1567 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
1568 preserve unibyte strings. (Bug#16048)
1569
1570 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
1571
1572 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
1573 Call force-mode-line-update is the proper buffer (bug#16042).
1574
1575 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
1576
1577 * vc/log-edit.el (log-edit-add-new-comment): Rename to
1578 `log-edit-remember-comment', make argument optional. Adjust all
1579 callers.
1580 (log-edit-mode): Add `log-edit-remember-comment' to
1581 `kill-buffer-hook' locally.
1582 (log-edit-kill-buffer): Don't remember comment explicitly since
1583 the buffer is killed anyway.
1584
1585 2013-12-04 Juri Linkov <juri@jurta.org>
1586
1587 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
1588 add-hook and remove-hook for multi-buffer search. (Bug#16035)
1589
1590 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
1591
1592 * notifications.el (notifications-close-notification): Call the
1593 D-Bus method with ID being a `:uint32'. (Bug#16030)
1594
1595 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
1596
1597 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
1598
1599 2013-12-03 Juri Linkov <juri@jurta.org>
1600
1601 * progmodes/compile.el (compilation-start): Rename window alist
1602 entry `no-display-ok' to `allow-no-window'.
1603
1604 * simple.el (shell-command): Add window alist entry
1605 `allow-no-window' to `display-buffer'.
1606 (async-shell-command): Doc fix.
1607
1608 * window.el (display-buffer-no-window): New action function.
1609 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
1610
1611 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
1612
1613 * vc/log-edit.el (log-edit-set-header): Extract from
1614 `log-edit-toggle-header'.
1615 (log-edit-extract-headers): Separate the summary, when extracted
1616 from header, from the rest of the message with an empty line.
1617
1618 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
1619 line, if present, to the Summary header.
1620
1621 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
1622
1623 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
1624 in current-buffer (bug#16029).
1625
1626 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
1627
1628 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
1629 (debugger-mode-map): Bind it.
1630 (debugger--backtrace-base): New function.
1631 (debugger-eval-expression): Use it.
1632 (debugger-frame-number): Skip local vars when present.
1633 (debugger--locals-visible-p, debugger--insert-locals)
1634 (debugger--show-locals, debugger--hide-locals): New functions.
1635
1636 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
1637
1638 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
1639 "LC_ALL".
1640 (tramp-get-remote-locale): New defun.
1641 (tramp-open-connection-setup-interactive-shell): Use it.
1642
1643 2013-12-02 Leo Liu <sdl.web@gmail.com>
1644
1645 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
1646
1647 * progmodes/sh-script.el (sh-shell-process):
1648 * progmodes/octave.el (inferior-octave-process-live-p):
1649 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
1650 (gdb-inferior-io-sentinel):
1651 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
1652
1653 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
1654
1655 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
1656 `save-selected-window' to `log-edit-hide-buf'. This makes
1657 `log-edit-show-files' idempotent.
1658 (log-edit-show-files): Mark the new window as dedicated.
1659
1660 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
1661
1662 * vc/log-edit.el (log-edit-mode-map): Add binding for
1663 `log-edit-kill-biffer'.
1664 (log-edit-hide-buf): Add a FIXME comment.
1665 (log-edit-add-new-comment): New function, extracted from
1666 `log-edit-done'.
1667 (log-edit-done, log-edit-add-to-changelog): Use it.
1668 (log-edit-kill-buffer): New command.
1669
1670 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
1671
1672 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
1673 instead of killing the buffer.
1674
1675 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
1676
1677 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
1678
1679 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1680
1681 * net/eww.el (eww-form-checkbox-selected-symbol)
1682 (eww-form-checkbox-symbol): New customizable variable.
1683 (eww-form-checkbox, eww-toggle-checkbox):
1684 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
1685
1686 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
1687 (shr--get-media-pref, shr--extract-best-source): New function.
1688 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
1689 no :src tag was specified.
1690
1691 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
1692 (eww-render): Handle `eww-use-external-browser-for-content-type'.
1693 Use \\` to match beginning of string instead of ^.
1694 (eww-browse-with-external-browser): Provide optional URL parameter.
1695 (eww-render): Set `eww-current-title' back to "".
1696
1697 * net/shr.el (shr-tag-video): Display content for video if no
1698 poster is available.
1699 (shr-tag-audio): Add support for <audio> tag.
1700
1701 * net/eww.el (eww-text-input-types): New const.
1702 (eww-process-text-input): Treat input types in
1703 `eww-text-input-types' as text.
1704
1705 * net/shr.el (shr-tag-table): Fix comment typo.
1706
1707 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
1708
1709 * net/eww.el (eww-follow-link): New command to avoid reloading
1710 pages when we follow #target links (bug#15243).
1711 (eww-quit): Special mode buffers shouldn't query before exiting.
1712
1713 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
1714
1715 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
1716 forms.
1717
1718 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
1719
1720 * net/eww.el (eww-restore-history): Update the window title after
1721 moving in the history.
1722 (eww-current-dom): New variable used to save the current DOM.
1723
1724 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
1725
1726 * vc/log-edit.el (log-edit-mode-map): Add binding for
1727 `log-edit-beginning-of-line'.
1728 (log-edit-setup-add-author): New user option.
1729 (log-edit-beginning-of-line): New command.
1730 (log-edit): Move major mode call above the contents setup so that
1731 the local variable values are already applied.
1732 (log-edit): Only insert "Author: " when
1733 `log-edit-setup-add-author' is non-nil.
1734 (log-edit): When SETUP is non-nil, position point after ": "
1735 instead of point-min.
1736
1737 2013-12-01 Glenn Morris <rgm@gnu.org>
1738
1739 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
1740
1741 2013-11-30 Eli Zaretskii <eliz@gnu.org>
1742
1743 * startup.el (fancy-splash-frame): On MS-Windows, trigger
1744 redisplay to make sure the initial frame gets a chance to become
1745 visible. (Bug#16014)
1746
1747 2013-11-30 Martin Rudalics <rudalics@gmx.at>
1748
1749 Support resizing frames and windows pixelwise.
1750 * cus-start.el (frame-resize-pixelwise)
1751 (window-resize-pixelwise): New entries.
1752 * emacs-lisp/debug.el (debug): Use window-total-height instead
1753 of window-total-size.
1754 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
1755 * help.el (describe-bindings-internal): Call help-buffer
1756 (temp-buffer-max-width): New option.
1757 (resize-temp-buffer-window, help-window-setup)
1758 (with-help-window): Rewrite.
1759 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
1760 dragging dividers.
1761 * window.el (frame-char-size, window-min-pixel-height)
1762 (window-safe-min-pixel-height, window-safe-min-pixel-width)
1763 (window-min-pixel-width, window-safe-min-pixel-size)
1764 (window-combination-p, window-safe-min-size)
1765 (window-resizable-p, window--size-to-pixel)
1766 (window--pixel-to-size, window--resize-apply-p): New functions.
1767 (window-safe-min-height): Fix doc-string.
1768 (window-size, window-min-size, window--min-size-1)
1769 (window-sizable, window-sizable-p, window--min-delta-1)
1770 (window-min-delta, window--max-delta-1, window-max-delta)
1771 (window--resizable, window--resizable-p, window-resizable)
1772 (window-full-height-p, window-full-width-p, window-at-side-p)
1773 (window--in-direction-2, window-in-direction)
1774 (window--resize-reset-1, window--resize-mini-window)
1775 (window-resize, window-resize-no-error)
1776 (window--resize-child-windows-normal)
1777 (window--resize-child-windows, window--resize-siblings)
1778 (window--resize-this-window, window--resize-root-window)
1779 (window--resize-root-window-vertically)
1780 (adjust-window-trailing-edge, enlarge-window, shrink-window)
1781 (maximize-window, minimize-window, delete-window)
1782 (quit-restore-window, window-split-min-size, split-window)
1783 (balance-windows-2, balance-windows)
1784 (balance-windows-area-adjust, balance-windows-area)
1785 (window--state-get-1, window-state-get, window--state-put-1)
1786 (window--state-put-2, window-state-put)
1787 (display-buffer-record-window, window--display-buffer):
1788 Make functions handle pixelwise sizing of windows.
1789 (display-buffer--action-function-custom-type)
1790 (display-buffer-fallback-action):
1791 Add display-buffer-in-previous-window.
1792 (display-buffer-use-some-window): Resize window to height it had
1793 before.
1794 (fit-window-to-buffer-horizontally): New option.
1795 (fit-frame-to-buffer): Describe new values.
1796 (fit-frame-to-buffer-bottom-margin): Replace with
1797 fit-frame-to-buffer-margins.
1798 (window--sanitize-margin): New function.
1799 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
1800 using window-text-pixel-size.
1801
1802 2013-11-30 Glenn Morris <rgm@gnu.org>
1803
1804 * emacs-lisp/bytecomp.el (byte-compile-form):
1805 Make the `interactive-only' warning like the `obsolete' one.
1806 * comint.el (comint-run):
1807 * files.el (insert-file-literally, insert-file):
1808 * replace.el (replace-string, replace-regexp):
1809 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
1810 (goto-line, insert-buffer, next-line, previous-line):
1811 Tweak `interactive-only' spec.
1812
1813 Stop keeping (most) generated cedet grammar files in the repository.
1814 * Makefile.in (semantic): New.
1815 (compile-main): Depend on semantic.
1816
1817 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
1818
1819 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
1820 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
1821
1822 * uniquify.el (uniquify-buffer-name-style): Change default.
1823
1824 * loadup.el: Preload "uniquify".
1825
1826 * time.el (display-time-update): Update all mode lines (bug#15999).
1827
1828 * electric.el (electric-indent-mode): Enable by default.
1829 * loadup.el: Preload "electric".
1830
1831 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
1832
1833 * emacs-lisp/helpers.el (string-empty-p): New function.
1834 (string-blank-p): New function.
1835
1836 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
1837
1838 * imenu.el (imenu--index-alist): Add missing dot to the docstring
1839 (Bug#14029).
1840
1841 2013-11-29 Andreas Politz <politza@fh-trier.de>
1842 * imenu.el (imenu--subalist-p): Don't error on non-conses and
1843 allow non-lambda lists as functions.
1844 (imenu--in-alist): Don't recurse into non-subalists.
1845 (imenu): Don't pass function itself as an argument (Bug#14029).
1846
1847 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
1848
1849 * progmodes/python.el (python-mode-map): Remove binding for ":".
1850 (python-indent-electric-colon): Remove command.
1851 (python-indent-post-self-insert-function): Integrate the previous code
1852 of python-indent-electric-colon. Make it conditional on
1853 electric-indent-mode.
1854 (python-mode): Add ?: to electric-indent-chars.
1855 Move python-indent-post-self-insert-function to the end of
1856 post-self-insert-hook.
1857
1858 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
1859
1860 * doc-view.el (doc-view-goto-page): Update mode-line.
1861
1862 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
1863
1864 2013-11-27 Glenn Morris <rgm@gnu.org>
1865
1866 * international/charprop.el, international/uni-bidi.el:
1867 * international/uni-category.el, international/uni-combining.el:
1868 * international/uni-comment.el, international/uni-decimal.el:
1869 * international/uni-decomposition.el, international/uni-digit.el:
1870 * international/uni-lowercase.el, international/uni-mirrored.el:
1871 * international/uni-name.el, international/uni-numeric.el:
1872 * international/uni-old-name.el, international/uni-titlecase.el:
1873 * international/uni-uppercase.el:
1874 Remove generated files from VCS repository.
1875
1876 2013-11-27 Eli Zaretskii <eliz@gnu.org>
1877
1878 * filenotify.el (file-notify-add-watch): Don't special-case
1879 w32notify when computing the directory to watch.
1880
1881 2013-11-27 Glenn Morris <rgm@gnu.org>
1882
1883 Make bootstrap without generated uni-*.el files possible again.
1884 * loadup.el: Update command-line-args checking for unidata-gen.
1885 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
1886 * composite.el, international/characters.el:
1887 Handle unicode tables being undefined.
1888
1889 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
1890 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
1891 (compile-main): Depend on leim rule.
1892 (leim): New rule.
1893 * loadup.el: Move leim-list.el to leim/ subdirectory.
1894 * startup.el (normal-top-level): No more leim directory.
1895 * international/ja-dic-cnv.el (skkdic-convert):
1896 Disable version-control and autoloads in output files.
1897 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
1898 Disable version-control and autoloads in output files.
1899 * leim/quail: Move here from ../leim.
1900 * leim/quail/hangul.el (hangul-input-method-activate):
1901 Add autoload cookie.
1902 (generated-autoload-load-name): Set file-local value.
1903 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
1904 (generated-autoload-load-name): Set file-local value.
1905
1906 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
1907
1908 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
1909 (eww-add-bookmark): Ask confirmation when add to bookmarks.
1910 (eww-quit): Ask confirmation before quitting eww.
1911
1912 2013-11-26 Eli Zaretskii <eliz@gnu.org>
1913
1914 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
1915 reading output from Diff on MS-Windows and MS-DOS.
1916
1917 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
1918
1919 * emacs-lisp/helpers.el (string-reverse): New function.
1920
1921 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
1922
1923 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
1924 names on MS Windows, like "/[::1]:".
1925
1926 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
1927 SWITCHES.
1928
1929 2013-11-26 Glenn Morris <rgm@gnu.org>
1930
1931 * progmodes/python.el (python-indent-guess-indent-offset):
1932 Avoid corner-case error. (Bug#15975)
1933
1934 Preload leim-list.el. (Bug#4789)
1935 * loadup.el: Load leim-list.el when found.
1936 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
1937
1938 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
1939
1940 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
1941
1942 * emacs-lisp/helpers.el (string-join): New function.
1943
1944 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
1945
1946 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
1947 Mark as obsolete and replace it with a symbol property.
1948 (byte-compile-form): Use new 'interactive-only property.
1949 * comint.el, files.el, replace.el, simple.el:
1950 Apply new 'interactive-only properly.
1951
1952 2013-11-25 Martin Rudalics <rudalics@gmx.at>
1953
1954 * window.el (display-buffer-at-bottom): Make sure that
1955 split-window-sensibly creates the new window on bottom
1956 (Bug#15961).
1957
1958 2013-11-23 David Kastrup <dak@gnu.org>
1959
1960 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
1961 on the conflict markers when available.
1962 (smerge--get-marker): New function.
1963 (smerge-end-re, smerge-base-re): Add subgroup.
1964
1965 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
1966
1967 * frame.el (handle-focus-in, handle-focus-out): Add missing
1968 interactive spec.
1969
1970 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
1971
1972 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
1973 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
1974
1975 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
1976
1977 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
1978 (gomoku--last-pos): New var.
1979 (gomoku--intangible-chars): New const.
1980 (gomoku--intangible): New function.
1981 (gomoku-mode): Use it. Derive from special-mode.
1982 (gomoku-move-up): Adjust line count.
1983 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
1984 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
1985 Simplify accordingly.
1986
1987 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
1988 Remove blink-cursor code.
1989 (blink-cursor-timer-function, blink-cursor-suspend):
1990 Don't special-case GUIs.
1991 (blink-cursor-mode): Use focus-in/out-hook.
1992
1993 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
1994
1995 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
1996 work when annotation is invisible (Bug#13886).
1997
1998 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
1999
2000 * json.el (json-alist-p): Only return non-nil if the alist has
2001 simple keys (Bug#13518).
2002
2003 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
2004
2005 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
2006 when control-statement is the first statement in a buffer (Bug#15956).
2007
2008 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
2009
2010 * imenu.el (imenu-generic-skip-comments-and-strings):
2011 New option (Bug#15560).
2012 (imenu--generic-function): Use it.
2013
2014 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
2015
2016 * minibuffer.el (completion--in-region-1): Scroll the correct window.
2017 (Bug#13898)
2018
2019 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
2020
2021 * emacs-lisp/helpers.el: Add some string helpers.
2022 (string-trim-left): Removes leading whitespace.
2023 (string-trim-right): Removes trailing whitespace.
2024 (string-trim): Removes leading and trailing whitespace.
2025
2026 * subr.el (string-suffix-p): New function.
2027
2028 2013-11-23 Glenn Morris <rgm@gnu.org>
2029
2030 * progmodes/python.el (python-shell-send-file):
2031 Add option to delete file when done. (Bug#15647)
2032 (python-shell-send-string, python-shell-send-region): Use it.
2033
2034 2013-11-23 Ivan Shmakov <ivan@siamics.net> (tiny change)
2035
2036 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
2037 to set buffer-read-only to t, never to nil. (Bug#15938)
2038
2039 * textmodes/tex-mode.el (latex-noindent-environments):
2040 Add safe-local-variable property. (Bug#15936)
2041
2042 2013-11-23 Glenn Morris <rgm@gnu.org>
2043
2044 * textmodes/enriched.el (enriched-mode): Doc fix.
2045 * emacs-lisp/authors.el (authors-renamed-files-alist):
2046 Add enriched.doc -> enriched.txt.
2047
2048 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
2049
2050 2013-11-22 Leo Liu <sdl.web@gmail.com>
2051
2052 * progmodes/octave.el (inferior-octave-startup): Spit out error
2053 message.
2054
2055 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
2056
2057 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
2058 Improve docstring.
2059 Add :version.
2060 (ruby-encoding-magic-comment-style): Add :version.
2061
2062 2013-11-22 Leo Liu <sdl.web@gmail.com>
2063
2064 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
2065 (Bug#15076)
2066 (octave-help-mode): Adapt to change to help-mode-finish to use
2067 derived-mode-p on 2013-09-17.
2068 (inferior-octave-prompt): Also match octave-gui.
2069 (octave-kill-process): Don't ask twice. (Bug#10564)
2070
2071 2013-11-22 Leo Liu <sdl.web@gmail.com>
2072
2073 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
2074 (inferior-octave-startup, inferior-octave-check-process)
2075 (inferior-octave-track-window-width-change)
2076 (octave-completion-at-point, octave-eldoc-function): Use it.
2077 (octave-kill-process): Provide confirmation. (Bug#10564)
2078
2079 2013-11-21 Leo Liu <sdl.web@gmail.com>
2080
2081 * progmodes/octave.el (octave-mode, inferior-octave-mode):
2082 Fix obsolete variable comment-use-global-state.
2083
2084 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2085
2086 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
2087 Add `octave-source-file'.
2088 (octave-source-file): New function. (Bug#15935)
2089
2090 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
2091
2092 * net/eww.el (eww-local-regex): New variable.
2093 (eww): Use it to detect localhost and similar.
2094
2095 2013-11-21 Leo Liu <sdl.web@gmail.com>
2096
2097 Add completion for command `ag'.
2098 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
2099 (pcomplete/ag): New function.
2100 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
2101
2102 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2103
2104 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
2105 (bug#14646).
2106 (make-obsolete): Remove interactive spec.
2107
2108 2013-11-21 Glenn Morris <rgm@gnu.org>
2109
2110 * startup.el (command-line-1): Use path-separator with -L.
2111
2112 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
2113
2114 * emacs-lisp/package.el (describe-package-1): Add package archive
2115 to shown fields.
2116
2117 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
2118
2119 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
2120 Change default to "# encoding: %s" to differentiate it from the
2121 default Ruby encoding comment template.
2122
2123 2013-11-20 era eriksson <era+emacsbugs@iki.fi>
2124
2125 * ses.el (ses-mode): Doc fix. (Bug#14748)
2126
2127 2013-11-20 Leo Liu <sdl.web@gmail.com>
2128
2129 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
2130
2131 2013-11-19 Dan Nicolaescu <dann@gnu.org>
2132
2133 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
2134 when rebase or bisect are in progress.
2135
2136 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
2137
2138 * filenotify.el (file-notify-add-watch): Doc fix.
2139
2140 2013-11-19 Leo Liu <sdl.web@gmail.com>
2141
2142 * obsolete/rcompile.el: Mark obsolete.
2143
2144 * progmodes/compile.el (compilation-start)
2145 (compilation-goto-locus, compilation-find-file):
2146 Pass no-display-ok and handle nil value from display-buffer.
2147 (Bug#13594)
2148
2149 * window.el (display-buffer-alist, display-buffer): Document the
2150 new parameter no-display-ok. Return either a window or nil
2151 but never a non-window value.
2152
2153 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2154
2155 * electric.el (electric-indent-mode-map): Remove.
2156 (electric-indent-mode): Change the global-map instead (bug#15915).
2157
2158 * textmodes/text-mode.el (paragraph-indent-minor-mode):
2159 Use add-function.
2160
2161 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
2162
2163 * emacs-lisp/nadvice.el (remove-function): Align with
2164 add-function's behavior.
2165
2166 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
2167 (gdb--string-regexp): New constant.
2168 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
2169 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
2170 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
2171 submatch 1.
2172 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
2173 Adjust use accordingly.
2174 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
2175
2176 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
2177
2178 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
2179 interpolation curlies (Bug#15914).
2180
2181 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
2182
2183 * calc/calc.el (calc-context-sensitive-enter): New variable.
2184 (calc-enter): Use `calc-context-sensitive-enter'.
2185
2186 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
2187
2188 * progmodes/cfengine.el: Version bump.
2189 (cfengine-cf-promises): New defcustom to locate cf-promises.
2190 (cfengine3-vartypes): Add new "data" type.
2191 (cfengine3--current-word): New function to get current name-like
2192 word or its bounds.
2193 (cfengine3--current-function): New function to look up a CFEngine
2194 function's definition.
2195 (cfengine3-format-function-docstring): New function.
2196 (cfengine3-make-syntax-cache): New function.
2197 (cfengine3-documentation-function): New function: ElDoc glue.
2198 (cfengine3-completion-function): New function: completion glue.
2199 (cfengine3-mode): Set `compile-command',
2200 `eldoc-documentation-function', and add to
2201 `completion-at-point-functions'.
2202
2203 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
2204
2205 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
2206 `tramp-current-connection'.
2207
2208 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
2209
2210 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
2211 nil/self/true/false with "end of symbol".
2212
2213 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
2214
2215 * subr.el (version-regexp-alist): Fix a typo.
2216
2217 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
2218
2219 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
2220 "en_US.utf8" and "LC_CTYPE" to "".
2221 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
2222 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
2223
2224 2013-11-15 Leo Liu <sdl.web@gmail.com>
2225
2226 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
2227
2228 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
2229
2230 * progmodes/gud.el (ctl-x-map):
2231 Remove C-x SPC binding. (Bug#12342)
2232 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
2233
2234 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
2235
2236 * subr.el (version-regexp-alist):
2237 Recognize hg, svn and darcs versions as snapshot versions.
2238
2239 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
2240 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
2241 (ruby--encoding-comment-required-p): Extract from
2242 `ruby-mode-set-encoding'.
2243 (ruby-mode-set-encoding): Add the ability to always insert an
2244 utf-8 encoding comment. Fix and simplify coding comment update
2245 logic.
2246
2247 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
2248
2249 * net/tramp-gvfs.el (top): Run init code only when
2250 `tramp-gvfs-enabled' is not nil.
2251 (tramp-gvfs-enabled): Check also :system bus.
2252
2253 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
2254
2255 Sync with upstream verilog-mode revision 78e66ba.
2256 * progmodes/verilog-mode.el (verilog-end-of-defun)
2257 (verilog-type-completion, verilog-get-list): Remove unused funcs.
2258 (verilog-get-end-of-defun): Remove unused argument.
2259 (verilog-comment-depth): Remove unused local `e'.
2260 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
2261 Don't pass arg to verilog-get-end-of-defun.
2262
2263 2013-11-14 Glenn Morris <rgm@gnu.org>
2264
2265 * obsolete/assoc.el (aget): Prefix dynamic variable.
2266
2267 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
2268
2269 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
2270
2271 * widget.el, hfy-cmap.el: Remove bogus package version number.
2272
2273 2013-11-13 Glenn Morris <rgm@gnu.org>
2274
2275 * replace.el (replace-eval-replacement):
2276 Try to give more helpful error message. (Bug#15836)
2277
2278 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
2279 (archive-7z-update): Avoid custom type mismatches.
2280
2281 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
2282
2283 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
2284
2285 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
2286 address can be empty.
2287
2288 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
2289 Accept nil SWITCHES.
2290 (tramp-gvfs-handle-write-region): Implement APPEND.
2291
2292 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
2293
2294 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
2295 binary "|" operator and closing block args delimiter.
2296 Remove FIXME comment referring to Ruby 1.8-only syntax.
2297 (ruby-smie--implicit-semi-p): Not after "|" operator.
2298 (ruby-smie--closing-pipe-p): New function.
2299 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
2300 (ruby-smie-rules): Indent after "|".
2301
2302 2013-11-12 Glenn Morris <rgm@gnu.org>
2303
2304 * ps-print.el (ps-face-attribute-list):
2305 Handle anonymous faces. (Bug#15827)
2306
2307 2013-11-12 Martin Rudalics <rudalics@gmx.at>
2308
2309 * window.el (display-buffer-other-frame): Fix doc-string.
2310 (Bug#15868)
2311
2312 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
2313
2314 * subr.el (force-mode-line-update): Delete, move to buffer.c.
2315
2316 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
2317
2318 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
2319 (tramp-sh-handle-file-local-copy): Don't write a message when
2320 saving temporary files.
2321
2322 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
2323 both directories are remote.
2324 (tramp-smb-handle-directory-files): Do not return double entries.
2325 Do not expand full file names.
2326 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
2327 (tramp-smb-handle-write-region): Implement APPEND.
2328 (tramp-smb-get-stat-capability): Fix a stupid bug.
2329
2330 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
2331
2332 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
2333
2334 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
2335
2336 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
2337 throwing error over malformed let/let* (bug#15814).
2338
2339 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
2340
2341 * iswitchb.el (iswitchb-mode): Mark obsolete.
2342
2343 2013-11-11 Glenn Morris <rgm@gnu.org>
2344
2345 * international/uni-bidi.el, international/uni-category.el:
2346 * international/uni-name.el, international/uni-numeric.el:
2347 Regenerate for Unicode 6.3.0.
2348
2349 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
2350
2351 * net/tramp.el (tramp-methods):
2352 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
2353 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
2354
2355 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
2356
2357 * progmodes/sh-script.el (sh-font-lock-keywords-var):
2358 Force highlighting text after Summary keyword in doc face for rpm.
2359
2360 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
2361
2362 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
2363 available and the word has no wildcards, append one to the grep pattern.
2364 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
2365 (ispell-complete-word): Call `ispell-lookup-words' with the value
2366 independent of `ispell-look-p'.
2367
2368 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
2369
2370 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
2371 Not after "||".
2372 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
2373 their parent.
2374
2375 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2376
2377 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
2378 (ruby-font-lock-keywords): Use backquote.
2379
2380 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
2381
2382 * progmodes/ruby-mode.el (ruby-smie--forward-token)
2383 (ruby-smie--backward-token): Only consider full-string matches.
2384
2385 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
2386
2387 * faces.el (describe-face): Add distant-foreground.
2388
2389 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
2390
2391 * progmodes/ruby-mode.el: Improve encoding comment handling.
2392 (ruby-encoding-magic-comment-style): New option.
2393 (ruby-custom-encoding-magic-comment-template): New option.
2394 (ruby--insert-coding-comment, ruby--detect-encoding):
2395 New functions extracted from `ruby-mode-set-encoding'.
2396 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
2397 to control the style of the auto-inserted encoding comment.
2398
2399 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
2400
2401 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
2402 Use `smie-backward-sexp' with token argument.
2403
2404 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
2405
2406 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
2407 Remove instrumentation code.
2408
2409 2013-11-08 Glenn Morris <rgm@gnu.org>
2410
2411 * progmodes/autoconf.el (autoconf-mode):
2412 Tweak comment-start-skip. (Bug#15822)
2413
2414 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2415
2416 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
2417 at bobp (bug#15826).
2418 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
2419
2420 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
2421
2422 * man.el (Man-start-calling): New macro, extracted from
2423 Man-getpage-in-background.
2424 (Man-getpage-in-background): Use it.
2425 (Man-update-manpage): New command.
2426 (Man-mode-map): Bind it.
2427
2428 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
2429
2430 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
2431 of "and", "or", "&&" and "||".
2432 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
2433 argument. Prohibit opening curly brace because it could only be a
2434 block opener in that position.
2435 (ruby-smie--forward-token, ruby-smie--backward-token):
2436 Separate "|" from "&" or "*" going after it. That can happen in block
2437 arguments.
2438 (ruby-smie--indent-to-stmt): New function, seeks the end of
2439 previous statement or beginning of buffer.
2440 (ruby-smie-rules): Use it.
2441 (ruby-smie-rules): Check if there's a ":" before a curly block
2442 opener candidate; if there is, it's a hash.
2443
2444 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
2445
2446 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
2447 (cl--block-wrapper): Fix last accidental change.
2448
2449 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
2450
2451 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
2452 Instrument, in order to hunt failure on hydra.
2453
2454 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
2455
2456 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
2457 malformed bindings form (bug#15814).
2458
2459 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
2460
2461 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
2462 "." compared to " @ ". This incidentally fixes some indentation
2463 examples with "do".
2464 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
2465 (ruby-smie-grammar): New tokens: "and" and "or".
2466 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
2467 Exclude "and" and "or". Remove "do" in order to work around token
2468 priorities.
2469 (ruby-smie-rules): Add all infix tokens. Handle the case of
2470 beginning-of-buffer.
2471
2472 2013-11-06 Glenn Morris <rgm@gnu.org>
2473
2474 * Makefile.in (setwins_almost, setwins_for_subdirs):
2475 Avoid accidental matches.
2476
2477 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
2478
2479 * menu-bar.el (popup-menu): Use key-binding.
2480
2481 2013-11-06 Eli Zaretskii <eliz@gnu.org>
2482
2483 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
2484 menus, support also the menus produced by minor modes.
2485 (Bug#15817)
2486
2487 2013-11-06 Leo Liu <sdl.web@gmail.com>
2488
2489 * thingatpt.el (thing-at-point-looking-at): Add optional arg
2490 DISTANCE to bound the search. All uses changed. (Bug#15808)
2491
2492 2013-11-06 Glenn Morris <rgm@gnu.org>
2493
2494 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
2495 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
2496 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
2497
2498 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
2499
2500 * electric.el (electric-indent-just-newline): New command.
2501 (electric-indent-mode-map): New keymap.
2502 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
2503 Re-add :group which weren't redundant.
2504
2505 * electric.el (electric-indent-local-mode): New minor mode.
2506 (electric-indent-functions-without-reindent): New var.
2507 (electric-indent-post-self-insert-function): Use it.
2508 * emacs-lisp/gv.el (buffer-local-value): Add setter.
2509
2510 2013-11-05 Eli Zaretskii <eliz@gnu.org>
2511
2512 * international/quail.el (quail-help): Be more explicit about the
2513 meaning of the labels shown on the keys. (Bug#15800)
2514
2515 * startup.el (normal-top-level): Load the subdirs.el files before
2516 setting the locale environment. (Bug#15805)
2517
2518 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
2519
2520 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
2521 via arguments so as to get the right ones (bug#15418).
2522
2523 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
2524
2525 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
2526
2527 Fix problems found while writing a test suite.
2528
2529 * net/tramp-compat.el (tramp-compat-load): New defun.
2530 * net/tramp.el (tramp-handle-load): Use it.
2531
2532 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
2533 "(numberp ok-if-already-exists)" correctly.
2534
2535 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
2536
2537 * international/characters.el (glyphless-char-display-control):
2538 Add usage note.
2539
2540 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
2541
2542 * progmodes/python.el (python-mode):
2543 * progmodes/scheme.el (scheme-mode):
2544 * progmodes/prolog.el (prolog-mode):
2545 * progmodes/ruby-mode.el (ruby-mode):
2546 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
2547 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
2548
2549 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
2550
2551 * rect.el (rectangle--highlight-for-redisplay):
2552 * emacs-lisp/smie.el (smie--next-indent-change):
2553 Use buffer-chars-modified-tick.
2554
2555 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
2556
2557 * electric.el (electric-indent-post-self-insert-function):
2558 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
2559
2560 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
2561
2562 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
2563
2564 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
2565
2566 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
2567 (bug#15786).
2568
2569 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
2570
2571 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
2572
2573 * progmodes/python.el: Fix up last change.
2574 (python-shell--save-temp-file): New function.
2575 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
2576 `string' comes from the current buffer.
2577 (python-shell-send-string-no-output): Remove `msg' arg.
2578 (python--use-fake-loc): New var.
2579 (python-shell-buffer-substring): Obey it. Try to compensate for the
2580 extra coding line added by python-shell--save-temp-file.
2581 (python-shell-send-region): Use python-shell--save-temp-file and
2582 python-shell-send-file directly. Add `nomain' argument.
2583 (python-shell-send-buffer): Use python-shell-send-region.
2584 (python-electric-pair-string-delimiter): New function.
2585 (python-mode): Use it.
2586
2587 2013-11-04 Eli Zaretskii <eliz@gnu.org>
2588
2589 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
2590 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
2591 environment and decoding all of the default-directory's to here
2592 from command-line.
2593 (command-line): Decode also argv[0].
2594
2595 * loadup.el: Error out if default-directory is a multibyte string
2596 when we are dumping.
2597
2598 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
2599
2600 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
2601
2602 * emacs-lisp/package.el (package-menu-mode)
2603 (package-menu--print-info, package-menu--archive-predicate):
2604 Add Archive column to package list.
2605
2606 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
2607
2608 Fix problems found while writing a test suite.
2609
2610 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
2611 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
2612 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
2613 to nil when running original file name handler. Otherwise,
2614 there are problems with constructs like "$$FOO".
2615
2616 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
2617 for `localname'.
2618
2619 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
2620
2621 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
2622
2623 * subr.el (version<, version<=, version=):
2624 Update docstrings with information for snapshot versions.
2625
2626 * helpers.el: New library for misc helper functions.
2627 (hash-table-keys): New function returning a list of hash keys.
2628 (hash-table-values): New function returning a list of hash values.
2629
2630 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
2631
2632 * progmodes/ruby-mode.el (ruby-smie--forward-token)
2633 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
2634
2635 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
2636
2637 * textmodes/fill.el (fill-single-char-nobreak-p): New function
2638 checking whether point is after a 1-letter word.
2639
2640 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
2641
2642 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
2643 Don't infloop when expanding region over `multiline' syntax-type that
2644 begins a line (bug#15778).
2645
2646 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
2647
2648 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
2649 Make it into a proper minor mode.
2650 (rectangle--region): (implicitly) rename to rectangle-mark-mode.
2651 (rectangle-mark-mode-map): New keymap.
2652 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
2653
2654 2013-11-04 Glenn Morris <rgm@gnu.org>
2655
2656 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
2657
2658 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
2659
2660 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
2661 (ruby-smie-rules): Use smie-rule-parent instead.
2662
2663 * emacs-lisp/smie.el (smie-rule-parent): Always call
2664 smie-indent-virtual rather than only for hanging tokens.
2665 (smie--next-indent-change): New helper command.
2666
2667 2013-11-03 Glenn Morris <rgm@gnu.org>
2668
2669 * Makefile.in (abs_srcdir): Remove.
2670 (emacs): Unset EMACSLOADPATH.
2671
2672 2013-11-02 Glenn Morris <rgm@gnu.org>
2673
2674 * Makefile.in (EMACS): Use a relative filename.
2675 (abs_top_builddir): Remove.
2676 (custom-deps, finder-data, autoloads): Use --chdir.
2677
2678 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
2679
2680 Use relative filenames in TAGS files.
2681 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
2682 (lisptagsfiles4, TAGS): Use relative file names.
2683 (TAGS-LISP): Remove.
2684 (maintainer-clean): No more TAGS-LISP file.
2685
2686 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
2687 (lisptagsfiles4): Use absolute filenames again.
2688 (TAGS, TAGS-LISP): Not everything needs to run in one line.
2689 Remove all *loaddefs files, not just the first. Remove esh-groups.
2690 (maintainer-clean): Delete TAGS, TAGS-LISP.
2691
2692 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
2693
2694 * emacs-lisp/package.el (package-version-join):
2695 Recognize snapshot versions.
2696
2697 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
2698
2699 * subr.el (version-regexp-alist): Add support for snapshot versions.
2700
2701 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
2702
2703 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
2704 New function, replacement for `smie-rule-parent' for when we want to
2705 skip over our direct parent if it's an assignment token..
2706 (ruby-smie-rules): Use it.
2707
2708 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
2709
2710 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
2711 unconditionally. Remove now unnecessary forward declarations.
2712 Remove XEmacs-specific setup.
2713 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
2714 (ruby-font-lock-syntactic-keywords)
2715 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
2716 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
2717 (ruby-here-doc-end-syntax): Remove.
2718 (ruby-mode): Don't check whether `syntax-propertize-rules' is
2719 defined as function.
2720
2721 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
2722
2723 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
2724
2725 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
2726
2727 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
2728 table and abbrev table, `define-derived-mode' does that for us
2729 anyway.
2730
2731 2013-11-01 Glenn Morris <rgm@gnu.org>
2732
2733 * Makefile.in: Remove manual mh-e dependencies (writing .elc
2734 files is atomic for some time, so no parallel compilation issues).
2735
2736 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
2737
2738 * faces.el (face-x-resources): Add :distant-foreground.
2739 (region): Use :distant-foreground for gtk and ns.
2740
2741 2013-11-01 Tassilo Horn <tsdh@gnu.org>
2742
2743 Allow multiple bibliographies when BibLaTeX is used rather than
2744 BibTeX.
2745 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
2746 (reftex-locate-bibliography-files): Us it.
2747
2748 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
2749
2750 * image.el (image-type-header-regexps): Fix the 'pbm' part to
2751 allow comments in pbm files.
2752
2753 * term/w32-win.el (dynamic-library-alist): Support newer versions
2754 of libjpeg starting with v7: look only for the DLL from the
2755 version against which Emacs was built.
2756 Support versions of libpng beyond 1.4.x.
2757 Support libtiff v4.x.
2758
2759 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
2760
2761 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
2762 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
2763 Add property :safe.
2764 (ruby-deep-arglist): Add property :type.
2765
2766 2013-10-31 Glenn Morris <rgm@gnu.org>
2767
2768 * Makefile.in (custom-deps, finder-data): No need to setq the target
2769 variables, we are in the right directory and the defaults work fine.
2770
2771 2013-10-30 Glenn Morris <rgm@gnu.org>
2772
2773 * Makefile.in (autoloads): Do not use abs_lisp.
2774
2775 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
2776 `newline' does not respect `standard-output', so use `princ'.
2777
2778 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
2779
2780 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
2781 * buff-menu.el (Buffer-menu--unmark): New function.
2782 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
2783
2784 2013-10-30 Glenn Morris <rgm@gnu.org>
2785
2786 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
2787
2788 * emacs-lisp/package.el (lm-homepage): Declare.
2789
2790 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
2791 Fix doc typos.
2792
2793 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
2794
2795 * Makefile.in (finder-data, autoloads, update-subdirs)
2796 (compile-main, compile-clean, compile-always, bootstrap-clean):
2797 Check return value of cd.
2798 (compile-calc): Remove.
2799
2800 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
2801
2802 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
2803
2804 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
2805 (byte-compile-and-folded): New function.
2806 (=, <, >, <=, >=): Use it.
2807
2808 * dos-w32.el (minibuffer-history-case-insensitive-variables)
2809 (path-separator, null-device, buffer-file-coding-system)
2810 (lpr-headers-switches): Check system-type before modifying them.
2811 (find-buffer-file-type-coding-system): Mark obsolete.
2812 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
2813 find-file-not-found-set-buffer-file-coding-system.
2814 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name):
2815 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
2816 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p):
2817 (w32-direct-print-region-helper, w32-direct-print-region-function)
2818 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
2819 * startup.el (normal-top-level-add-subdirs-to-load-path):
2820 * ps-print.el (ps-print-region-function):
2821 * lpr.el (print-region-function): Use new name.
2822
2823 * subr.el (custom-declare-variable-early): Remove function.
2824 (custom-declare-variable-list): Remove var.
2825 (error, user-error): Remove `while' loop.
2826 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
2827 (user-emacs-directory-warning, locate-user-emacs-file):
2828 Move to files.el.
2829 * simple.el (read-quoted-char-radix, read-quoted-char):
2830 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
2831 Move from subr.el.
2832 * custom.el (custom-declare-variable-list): Don't process
2833 custom-declare-variable-list.
2834
2835 * progmodes/python.el (python-shell-get-buffer): New function.
2836 (python-shell-get-process): Use it.
2837 (python-shell-send-string): Always use utf-8 and add a cookie to tell
2838 Python which encoding was used. Don't split-string since we only care
2839 about the first line. Return the temp-file, if applicable.
2840 (python-shell-send-region): Tell compile.el how to turn locations in
2841 the temp-file into locations in the source buffer.
2842
2843 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
2844
2845 * subr.el (undefined): Add missing behavior from the C code for
2846 unbound keys.
2847
2848 * rect.el: Use lexical-binding. Add new rectangular region support.
2849 (rectangle-mark): New command.
2850 (rectangle--region): New var.
2851 (deactivate-mark-hook): Reset rectangle--region.
2852 (rectangle--extract-region, rectangle--insert-for-yank)
2853 (rectangle--highlight-for-redisplay)
2854 (rectangle--unhighlight-for-redisplay): New functions.
2855 (region-extract-function, redisplay-unhighlight-region-function)
2856 (redisplay-highlight-region-function): Use them to handle
2857 rectangular region.
2858 * simple.el (region-extract-function): New var.
2859 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
2860 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
2861 (kill-region): Replace obsolete `yank-handler' arg with `region'.
2862 (copy-region-as-kill, kill-ring-save): Add `region' argument.
2863 (redisplay-unhighlight-region-function)
2864 (redisplay-highlight-region-function): New vars.
2865 (redisplay--update-region-highlight): New function.
2866 (pre-redisplay-function): Use it.
2867 (exchange-point-and-mark): Don't deactivate the mark before
2868 reactivate-it anyway.
2869 * comint.el (comint-kill-region): Remove yank-handler argument.
2870 * delsel.el (delete-backward-char, backward-delete-char-untabify)
2871 (delete-char): Remove property, since it's now part of their
2872 default behavior.
2873 (self-insert-iso): Remove property since this command doesn't exist.
2874
2875 * emacs-lisp/package.el (package--download-one-archive)
2876 (describe-package-1): Don't query the user about final newline.
2877
2878 2013-10-29 Daniel Colascione <dancol@dancol.org>
2879
2880 * net/tramp.el (tramp-methods): Document new functionality.
2881 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
2882 tramp-hostname-checker if method provides one instead of scanning
2883 argument list for "%h" to decide hostname acceptability.
2884
2885 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
2886
2887 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
2888 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
2889 Handle COPY-CONTENTS. (Bug#15737)
2890
2891 2013-10-28 Daiki Ueno <ueno@gnu.org>
2892
2893 * epa-file.el
2894 (epa-file-cache-passphrase-for-symmetric-encryption):
2895 Document that this option has no effect with GnuPG 2.0 (bug#15552).
2896
2897 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
2898
2899 * image.el (defimage):
2900 (image-load-path): Doc fixes.
2901
2902 2013-10-27 Alan Mackenzie <acm@muc.de>
2903
2904 Indent statements in macros following "##" correctly.
2905 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
2906 Modify the "#" arm of a cond form to handle "#" and "##" operators.
2907
2908 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
2909
2910 * linum.el (linum-update-window): Fix boundary test (bug#13446).
2911
2912 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
2913
2914 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
2915 after `=' is probably a new expression.
2916
2917 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2918
2919 * man.el (man-imenu-title): New option.
2920 (Man-mode-map): Add menu. (Bug#15722)
2921 (Man-mode): Add imenu to menu.
2922
2923 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
2924
2925 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
2926 specific in what the first arg can be: a non-keyword word,
2927 string/regexp/percent literal opener, opening paren, or unary
2928 operator followed directly by word.
2929
2930 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
2931
2932 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
2933 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
2934 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
2935 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
2936 Remove vars, they do not apply any more.
2937 (prolog-mode-abbrev-table): Remove redundant declaration.
2938 (prolog-upper-case-string, prolog-lower-case-string): Remove.
2939 (prolog-use-smie): Remove.
2940 (prolog-smie-rules): Add indentation rule for the if-then-else layout
2941 supported by prolog-electric-if-then-else-flag.
2942 (prolog-mode-variables, prolog-menu): Use setq-local.
2943 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
2944 Remove binding to `Backspace' since this key doesn't exist anyway.
2945 Remove bindings for electric self-inserting keys.
2946 (prog-mode): Assume it's defined.
2947 (prolog-post-self-insert): New function.
2948 (prolog-mode): Use it.
2949 (prolog-indent-line, prolog-indent-level)
2950 (prolog-find-indent-of-matching-paren)
2951 (prolog-indentation-level-of-line, prolog-goto-comment-column)
2952 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
2953 (prolog-goto-next-paren, prolog-in-string-or-comment)
2954 (prolog-tokenize, prolog-inside-mline-comment)
2955 (prolog-find-start-of-mline-comment): Remove functions.
2956 (prolog-find-unmatched-paren, prolog-clause-end)
2957 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
2958 (prolog-electric--if-then-else): Rename from
2959 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
2960 (prolog-tokenize-searchkey): Remove const.
2961 (prolog-clause-info): Use forward-sexp.
2962 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
2963 (prolog-electric-if-then-else): Remove commands.
2964 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
2965 for use in post-self-insert-hook.
2966 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
2967 for use in post-self-insert-hook.
2968 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
2969 for use in post-self-insert-hook.
2970 (prolog-electric--underscore): Rename from prolog-electric--underscore;
2971 adapt it for use in post-self-insert-hook.
2972
2973 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
2974
2975 * emacs-lisp/ert.el (ert-run-tests-interactively):
2976 Use `completing-read'. (Bug#9756)
2977
2978 2013-10-25 Eli Zaretskii <eliz@gnu.org>
2979
2980 * simple.el (line-move): Call line-move-1 instead of
2981 line-move-visual when the current window hscroll is zero, but
2982 temporary-goal-column indicates we will need to hscroll as result
2983 of the movement. (Bug#15712)
2984
2985 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
2986
2987 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
2988 capitalization. Use :visible instead of :active.
2989 Fix `ruby-indent-exp' reference. Add menu items for the generic
2990 commands that are used with SMIE.
2991 (ruby-do-end-to-brace): Insert space after `{'.
2992
2993 2013-10-25 John Anthony <john@jo.hnanthony.com>
2994
2995 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
2996
2997 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
2998
2999 2013-10-25 Glenn Morris <rgm@gnu.org>
3000
3001 * vc/vc.el (vc-print-log): Don't use a working revision unless
3002 one was explicitly specified. (Bug#15322)
3003
3004 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
3005
3006 * subr.el (add-to-list): Preserve return value in compiler-macro
3007 (bug#15692).
3008
3009 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3010
3011 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
3012 result. Ask user to retry using '-all' flag. (Bug#15701)
3013
3014 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
3015
3016 * emacs-lisp/smie.el: New smie-config system.
3017 (smie-config): New defcustom.
3018 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
3019 (smie-config-guess, smie-config-save): New commands.
3020 (smie-config--mode-local, smie-config--buffer-local)
3021 (smie-config--trace, smie-config--modefuns): New vars.
3022 (smie-config--advice, smie-config--mode-hook)
3023 (smie-config--setter, smie-config-local, smie-config--get-trace)
3024 (smie-config--guess-value, smie-config--guess): New functions.
3025 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
3026 text properties. Treat "string fence" syntax like string syntax.
3027
3028 * progmodes/sh-script.el (sh-use-smie): Change default.
3029 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
3030 (sh-var-value): Simplify by CSE.
3031 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
3032 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
3033 is used.
3034 (sh-guess-basic-offset): Use cl-incf.
3035 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
3036
3037 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
3038
3039 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
3040 (bug#15699).
3041
3042 2013-10-24 Glenn Morris <rgm@gnu.org>
3043
3044 * Makefile.in (abs_top_srcdir): Remove.
3045 (update-subdirs): Use relative path to update-subdirs.
3046
3047 2013-10-24 Eli Zaretskii <eliz@gnu.org>
3048
3049 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
3050 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
3051 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
3052 Call unmsys--file-name before expand-file-name, not after it.
3053
3054 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
3055
3056 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
3057 (ert-test-skipped): New error.
3058 (ert-skip, ert-stats-skipped): New defuns.
3059 (ert--skip-unless): New macro.
3060 (ert-test-skipped): New struct.
3061 (ert--run-test-debugger, ert-test-result-type-p)
3062 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
3063 (ert--stats-set-test-and-result, ert-char-for-test-result)
3064 (ert-string-for-test-result, ert-run-tests-batch)
3065 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
3066 Handle skipped tests. (Bug#9803)
3067
3068 2013-10-24 Glenn Morris <rgm@gnu.org>
3069
3070 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
3071
3072 * Makefile.in (abs_top_srcdir): New, set by configure.
3073 (update-subdirs): Correct build-aux location.
3074
3075 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
3076
3077 * vc/vc.el (vc-print-root-log): Always set `default-directory'
3078 value, whether we could auto-deduce `backend', or not.
3079
3080 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
3081 with parameters" example. Simplify the "is it block or is it
3082 hash" check, but also make it more thorough.
3083
3084 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
3085
3086 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
3087
3088 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3089
3090 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
3091 { if it is hanging.
3092
3093 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
3094 :before ";".
3095
3096 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
3097
3098 * progmodes/compile.el (compilation-directory-matcher)
3099 (compilation-page-delimiter):
3100 Support GNU Make-4.0 directory quoting. (Bug#15678)
3101
3102 2013-10-23 Leo Liu <sdl.web@gmail.com>
3103
3104 * ido.el (ido-tidy): Handle read-only text.
3105
3106 2013-10-23 Glenn Morris <rgm@gnu.org>
3107
3108 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
3109 (emacs, compile, compile-always):
3110 Quote entities that might contain whitespace.
3111 (custom-deps, finder-data, autoloads): Use abs_lisp.
3112 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
3113 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
3114 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
3115
3116 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
3117
3118 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
3119 Use `following-char'.
3120
3121 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
3122
3123 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
3124 * progmodes/ruby-mode.el (ruby-smie-rules):
3125 Remove corresponding workaround. Fix indentation rule of ";" so it
3126 also applies when ";" is the parent.
3127
3128 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
3129
3130 * frame.el (display-screens, display-pixel-height)
3131 (display-pixel-width, display-mm-width, display-backing-store)
3132 (display-save-under, display-planes, display-color-cells)
3133 (display-visual-class, display-monitor-attributes-list):
3134 Mention the optional ‘display’ argument in doc strings.
3135
3136 2013-10-22 Michael Gauland <mikelygee@amuri.net>
3137
3138 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
3139 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
3140
3141 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
3142
3143 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
3144 TODO. Add "." after " @ ".
3145 (ruby-smie--at-dot-call): New function. Checks if point at method
3146 call with explicit target.
3147 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
3148 to the method name tokens when it precedes them.
3149 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
3150 (ruby-smie-rules): Add rule for indentation before and after "."
3151 token.
3152
3153 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
3154
3155 * textmodes/remember.el (remember-diary-extract-entries):
3156 Avoid add-to-list.
3157
3158 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
3159 an instruction.
3160
3161 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
3162
3163 * progmodes/ruby-mode.el (ruby-smie-grammar):
3164 Add (almost) all infix operators.
3165 (ruby-smie--implicit-semi-p): Add new operator chars.
3166
3167 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
3168 `smie-down-list'.
3169 (ruby-smie--args-separator-p): Check that there's no newline
3170 between method call and its arguments.
3171
3172 2013-10-20 Alan Mackenzie <acm@muc.de>
3173
3174 Allow comma separated lists after Java "implements".
3175
3176 * progmodes/cc-engine.el (c-backward-over-enum-header):
3177 Parse commas.
3178 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
3179 from a "disallowed" list in enum fontification.
3180
3181 2013-10-20 Johan Bockgård <bojohan@gnu.org>
3182
3183 * startup.el (default-frame-background-mode): Remove unused defvar.
3184
3185 * progmodes/verilog-mode.el (verilog-mode): Don't set
3186 comment-indent-function globally.
3187
3188 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
3189
3190 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
3191 Move Info menu item creation to ns-win.el.
3192
3193 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
3194 in menu bar.
3195
3196 * menu-bar.el: Move GNUStep specific menus...
3197
3198 * term/ns-win.el (ns-initialize-window-system): ... to here.
3199
3200 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3201
3202 * simple.el (newline): Only run post-self-insert-hook when
3203 called interactively.
3204
3205 2013-10-19 Johan Bockgård <bojohan@gnu.org>
3206
3207 * icomplete.el (icomplete-with-completion-tables): Add :version.
3208
3209 2013-10-19 Alan Mackenzie <acm@muc.de>
3210
3211 Fix fontification bugs with constructors and const.
3212
3213 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
3214 CASE 2) Remove the check for the absence of a suffix construct
3215 after a function declaration with only types (no identifiers) in
3216 the parentheses. Also, accept a function declaration with just a
3217 type inside the parentheses, if this type can be positively
3218 recognised as such, or if a prefix keyword like "explicit" nails
3219 down the construct as a declaration.
3220
3221 2013-10-19 Eli Zaretskii <eliz@gnu.org>
3222
3223 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
3224 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
3225 the problem whereby selecting a menu item that leads to a
3226 minibuffer prompt moves the cursor out of the minibuffer window,
3227 making it hard to type at the prompt. Suggested by Stefan Monnier
3228 <monnier@iro.umontreal.ca>.
3229
3230 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
3231
3232 * menu-bar.el: Don't make Services menu.
3233
3234 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3235
3236 * ffap.el: Handle "/usr/include/c++/<version>" directories.
3237 (ffap-alist): Use ffap-c++-mode for c++-mode.
3238 (ffap-c++-path): New variable.
3239 (ffap-c++-mode): New function.
3240
3241 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
3242
3243 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
3244
3245 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
3246
3247 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
3248 introduced on 2013-09-08, which results in an infinite loop
3249 requesting a password.
3250
3251 2013-10-18 Glenn Morris <rgm@gnu.org>
3252
3253 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
3254
3255 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
3256
3257 Sync with upstream verilog-mode revision 1a6ecec7.
3258 * progmodes/verilog-mode.el (verilog-mode-version): Update.
3259 (verilog-mode-release-date): Remove.
3260 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
3261 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
3262 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
3263 (verilog-auto-tieoff-ignore-regexp)
3264 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
3265 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
3266 (verilog-signals-with, verilog-dir-cache-preserving)
3267 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
3268 Doc fixes.
3269 (verilog-case-fold): New option, to control case folding in
3270 regexp searches, bug597.
3271 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
3272 (verilog-string-match-fold, verilog-in-paren-count)
3273 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
3274 (verilog-at-close-struct-p): New functions.
3275 (verilog-beg-block-re-ordered, verilog-extended-case-re)
3276 (verilog-forward-sexp, verilog-set-auto-endcomments):
3277 (verilog-leap-to-case-head): Handle "unique0" case.
3278 (verilog-in-constraint-re): New constant.
3279 (verilog-keywords, verilog-type-font-keywords):
3280 Add some SystemVerilog 1800-2012 keywords.
3281 (verilog-label-be): Remove unimplemented argument, bug669.
3282 (verilog-batch-execute-func): When batch expanding clear
3283 create-lockfiles to prevent spurious user locks when a file ends
3284 up not changing.
3285 (verilog-calculate-indent, verilog-calc-1)
3286 (verilog-at-close-constraint-p, verilog-at-constraint-p)
3287 (verilog-do-indent): Fix indentation of nested constraints
3288 and structures.
3289 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
3290 (verilog-auto-inst-param): Use verilog-string-match-fold.
3291 (verilog-read-inst-module-matcher):
3292 Fix AUTOINST on gate primitives with #1.
3293 (verilog-read-decls): Fix double-declaring user-defined typed signals.
3294 Reads all user-defined typed variables.
3295 (verilog-read-defines): Fix reading definitions inside comments, bug647.
3296 (verilog-signals-matching-regexp)
3297 (verilog-signals-not-matching-regexp, verilog-auto):
3298 Respect verilog-case-fold.
3299 (verilog-diff-report): Fix line count.
3300 (verilog-auto-assign-modport): Remove unused local `modi'.
3301 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
3302 better handle multidimensional arrays.
3303 Fix packed array ports misadding bit index in AUTOINST, bug637.
3304 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
3305 to not double-declare existing outputs and inputs, respectively.
3306 (verilog-template-map): Bind U to verilog-sk-uvm-component.
3307 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
3308 (verilog-sk-uvm-component): New skeleton.
3309 (verilog-submit-bug-report): Add verilog-case-fold,
3310 remove verilog-mode-release-date.
3311
3312 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
3313
3314 * lisp/subr.el (sit-for): Call (input-pending-p t) so as to behave
3315 as before.
3316
3317 2013-10-18 Reuben Thomas <rrt@sc3d.org>
3318
3319 * textmodes/remember.el (remember): Set buffer-offer-save in
3320 remember buffers (bug#13566).
3321
3322 2013-10-18 Daniel Colascione <dancol@dancol.org>
3323
3324 When evaluating forms in ielm, direct standard output to ielm
3325 buffer. Add new ielm-return-for-effect command. Remove trailing
3326 whitespace throughout.
3327
3328 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
3329 (ielm-return-for-effect): New command.
3330 (ielm-send-input): Accept optional `for-effect' parameter.
3331 (ielm-eval-input): Accept optional `for-effect' parameter.
3332 Bind `standard-output' to stream we create using
3333 `ielm-standard-output-impl'. Suppress printing result when
3334 `for-effect'.
3335 (ielm-standard-output-impl): New function.
3336 (inferior-emacs-lisp-mode): Explain new features in documentation.
3337
3338 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
3339
3340 Code cleanup.
3341
3342 * net/tramp.el (tramp-debug-message): Do not check for connection
3343 buffer.
3344 (tramp-message): Use "vector" connection property.
3345
3346 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
3347 (tramp-equal-remote, tramp-eshell-directory-change)
3348 * net/tramp-adb.el (tramp-adb-handle-copy-file)
3349 (tramp-adb-handle-rename-file)
3350 * net/tramp-cmds.el (tramp-list-remote-buffers)
3351 (tramp-cleanup-connection, tramp-cleanup-this-connection)
3352 * net/tramp-compat.el (tramp-compat-process-running-p)
3353 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
3354 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
3355 (tramp-gvfs-handle-rename-file)
3356 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
3357 (tramp-set-file-uid-gid)
3358 * net/tramp-smb.el (tramp-smb-handle-copy-file)
3359 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
3360 of `file-remote-p'.
3361
3362 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
3363 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
3364 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
3365 (tramp-gw-open-network-stream): Suppress unrelated traces.
3366
3367 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
3368 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
3369 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
3370 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
3371 connection property.
3372
3373 * net/tramp-cache.el (top): Suppress traces when reading
3374 persistency file.
3375
3376 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
3377 Refactor common code. Improve debug message.
3378 (tramp-maybe-open-connection)
3379 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
3380 connection buffer too early.
3381
3382 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
3383 from `tramp-smb-actions-with-acl'.
3384 (tramp-smb-actions-set-acl): New defconst.
3385 (tramp-smb-handle-copy-directory)
3386 (tramp-smb-action-get-acl): New defun, renamed from
3387 `tramp-smb-action-with-acl'.
3388 (tramp-smb-action-set-acl): New defun.
3389 (tramp-smb-handle-set-file-acl): Rewrite.
3390
3391 2013-10-17 Glenn Morris <rgm@gnu.org>
3392
3393 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
3394
3395 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
3396
3397 * skeleton.el (skeleton-newline): Remove.
3398 (skeleton-internal-1): Use (insert "\n") instead.
3399
3400 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
3401 let-bindings.
3402
3403 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
3404 forward-sexp-function while we redo its job (bug#15613).
3405
3406 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
3407
3408 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
3409 represented by lists.
3410
3411 2013-10-16 Glenn Morris <rgm@gnu.org>
3412
3413 * tmm.el (tmm--history): New dynamic variable.
3414 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
3415
3416 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
3417
3418 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
3419 (tramp-smb-errors): Add error messages.
3420 (tramp-smb-actions-with-acl): New defconst.
3421 (tramp-smb-file-name-handler-alist) [set-file-acl]: Add handler.
3422 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
3423 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
3424 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
3425 (tramp-smb-get-stat-capability): Fix tests.
3426
3427 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
3428
3429 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
3430 (bug#15580).
3431
3432 2013-10-16 Glenn Morris <rgm@gnu.org>
3433
3434 * ansi-color.el (ansi-color-drop-regexp):
3435 Add 1J, 1K, 2K. (Bug#15617)
3436
3437 * files.el (hack-local-variables--warned-lexical): New.
3438 (hack-local-variables):
3439 Warn about misplaced lexical-binding. (Bug#15616)
3440
3441 * net/eww.el (eww-render): Always set eww-current-url,
3442 and update header line. (Bug#15622)
3443 (eww-display-html): ... Rather than just doing it here.
3444
3445 2013-10-15 Eli Zaretskii <eliz@gnu.org>
3446
3447 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
3448 menu navigations commands.
3449
3450 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
3451
3452 * progmodes/subword.el (subword-capitalize): Be careful when
3453 the search for [[:alpha:]] fails (bug#15580).
3454
3455 2013-10-14 Eli Zaretskii <eliz@gnu.org>
3456
3457 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
3458 to commands that scroll the menu.
3459
3460 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
3461
3462 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
3463 Handle methods ending with `?' and `!'.
3464
3465 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
3466
3467 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
3468 `japanese-cp932' to `cp932' to fix the problem where saving a
3469 source file written in Shift_JIS twice would end up having
3470 `coding: japanese-cp932' which Ruby could not recognize.
3471 (ruby-mode-set-encoding): Add support for encodings mapped to nil
3472 in `ruby-encoding-map'.
3473 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
3474 doesn't need to be explicitly declared in magic comment.
3475 (ruby-encoding-map): Add type declaration for better customize UI.
3476
3477 2013-10-13 Glenn Morris <rgm@gnu.org>
3478
3479 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
3480 Occur buffers are read-only. http://bugs.debian.org/720775
3481
3482 * emacs-lisp/authors.el (authors-fixed-entries):
3483 Comment out old alpha stuff.
3484
3485 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
3486
3487 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
3488 to `after-save-hook' instead of `before-save-hook'.
3489 (ruby-mode-set-encoding): Use the value of coding system used to
3490 write the file. Call `basic-save-buffer-1' after modifying the
3491 buffer.
3492
3493 2013-10-13 Alan Mackenzie <acm@muc.de>
3494
3495 Fix indentation/fontification of Java enum with
3496 "implements"/generic.
3497
3498 * progmodes/cc-engine.el (c-backward-over-enum-header):
3499 Extracted from the three other places and enhanced to handle generics.
3500 (c-inside-bracelist-p): Uses new function above.
3501 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
3502 function above.
3503 (c-font-lock-enum-tail): Uses new function above.
3504
3505 2013-10-13 Kenichi Handa <handa@gnu.org>
3506
3507 * international/mule-cmds.el (select-safe-coding-system): Remove a
3508 superfluous condition in chekcing whether a coding system is safe
3509 or not.
3510
3511 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
3512
3513 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
3514
3515 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
3516
3517 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
3518
3519 2013-10-13 Glenn Morris <rgm@gnu.org>
3520
3521 * menu-bar.el (menu-bar-update-buffers):
3522 Unify Buffers menu prompt string. (Bug#15576)
3523
3524 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
3525
3526 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
3527 Add some entries.
3528 (authors-fixed-entries): Use accented form of name.
3529
3530 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
3531
3532 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
3533 method calls (bug#15594).
3534 (ruby-smie--args-separator-p): New function.
3535 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
3536 recognize paren-free method calls.
3537
3538 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
3539 internals of universal-argument.
3540
3541 2013-10-11 Eli Zaretskii <eliz@gnu.org>
3542
3543 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
3544 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
3545 dropped menu on second mouse click on the menu bar.
3546
3547 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
3548
3549 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
3550 (explicit-shell-file-name): Declare.
3551 (sh--vars-before-point, sh--cmd-completion-table): New functions.
3552 (sh-completion-at-point-function): New function.
3553 (sh-mode): Use it.
3554 (sh-smie--keyword-p): Remove unused argument.
3555 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
3556 vars.
3557 (sh-set-shell): Always setup SMIE, even if we use the
3558 old indentation code.
3559
3560 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
3561
3562 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
3563 cases of ? and =.
3564 (ruby-smie-rules): Simplify the "do" rule. The cases when the
3565 predicate would return nil are almost non-existent.
3566 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
3567
3568 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
3569 cache also after commands that modify the buffer but don't move
3570 point.
3571
3572 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
3573
3574 * env.el (substitute-env-in-file-name): New function.
3575 (substitute-env-vars): Extend the meaning of the optional arg.
3576
3577 2013-10-10 Eli Zaretskii <eliz@gnu.org>
3578
3579 * term/w32-win.el (dynamic-library-alist): Define separate lists
3580 of GIF DLLs for versions before and after 5.0.0 of giflib.
3581 (Bug#15531)
3582
3583 2013-10-10 João Távora <joaotavora@gmail.com>
3584
3585 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
3586 not locked, use last revision and current source as
3587 defaults. (Bug#15569)
3588
3589 2013-10-10 Masatake YAMATO <yamato@redhat.com>
3590
3591 * menu-bar.el (menu-bar-open): Don't use popup-menu if
3592 menu-bar is hidden.
3593
3594 2013-10-10 Martin Rudalics <rudalics@gmx.at>
3595
3596 * window.el (pop-to-buffer-same-window): Fix doc-string.
3597 (Bug#15492)
3598
3599 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
3600
3601 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
3602
3603 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
3604
3605 * calendar/icalendar.el (icalendar-import-file):
3606 Fix interactive spec. (Bug#15482)
3607
3608 2013-10-10 Glenn Morris <rgm@gnu.org>
3609
3610 * desktop.el (desktop-save): Default to saving in .emacs.d,
3611 since PWD is no longer in desktop-path by default. (Bug#15319)
3612
3613 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
3614 now that text mode has a menu with the same entry.
3615 (menu-bar-text-mode-auto-fill): Remove now unused func.
3616 * textmodes/text-mode.el (text-mode-map):
3617 Use auto-fill help text from menu-bar.el.
3618
3619 2013-10-10 John Anthony <john@jo.hnanthony.com>
3620
3621 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
3622
3623 2013-10-09 Juri Linkov <juri@jurta.org>
3624
3625 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
3626 instead of this-command-keys. Add universal-argument-more and
3627 universal-argument-minus to the list of prefix commands. (Bug#15568)
3628
3629 2013-10-09 Glenn Morris <rgm@gnu.org>
3630
3631 * vc/vc-svn.el (vc-svn-create-repo):
3632 Expand paths in file://... url. (Bug#15446)
3633
3634 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
3635 Add some entries.
3636 (authors): Remove unused local variables.
3637
3638 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
3639
3640 * profiler.el: Create a more coherent calltree from partial backtraces.
3641 (profiler-format): Hide the tail with `invisible' so that C-s can still
3642 find the hidden elements.
3643 (profiler-calltree-depth): Don't recurse so enthusiastically.
3644 (profiler-function-equal): New hash-table-test.
3645 (profiler-calltree-build-unified): New function.
3646 (profiler-calltree-build): Use it.
3647 (profiler-report-make-name-part): Indent the calltree less.
3648 (profiler-report-mode): Add visibility specs for profiler-format.
3649 (profiler-report-expand-entry, profiler-report-toggle-entry):
3650 Expand the whole subtree when provided with a prefix arg.
3651
3652 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
3653
3654 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
3655 iuwu-mod token.
3656 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
3657 hanging iuwu-mod token.
3658 (ruby-smie--forward-token): Do not include a dot after a token in
3659 that token.
3660 (ruby-smie--backward-token): Likewise.
3661
3662 2013-10-08 Juri Linkov <juri@jurta.org>
3663
3664 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
3665 to isearch-other-control-char.
3666 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
3667 and isearch-post-command-hook to post-command-hook.
3668 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
3669 and isearch-post-command-hook from post-command-hook.
3670 (isearch-unread-key-sequence)
3671 (isearch-reread-key-sequence-naturally)
3672 (isearch-lookup-scroll-key, isearch-other-control-char)
3673 (isearch-other-meta-char): Remove functions.
3674 (isearch-pre-command-hook, isearch-post-command-hook):
3675 New functions based on isearch-other-meta-char rewritten
3676 relying on the new behavior of overriding-terminal-local-map
3677 that does not replace the local keymaps any more. (Bug#15200)
3678
3679 2013-10-08 Eli Zaretskii <eliz@gnu.org>
3680
3681 Support menus on text-mode terminals.
3682 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
3683 functionality.
3684
3685 * tooltip.el (tooltip-mode): Don't error out on TTYs.
3686
3687 * menu-bar.el (popup-menu, popup-menu-normalize-position):
3688 Move here from mouse.el.
3689 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
3690 and arrow keys.
3691 (tty-menu-navigation-map): New map for TTY menu navigation.
3692
3693 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
3694
3695 * frame.el (display-mouse-p): Report text-mode mouse as available
3696 on w32.
3697 (display-popup-menus-p): Report availability if mouse is
3698 available; don't condition on window-system.
3699
3700 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
3701 (tty-menu-selected-face): New faces.
3702
3703 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
3704
3705 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
3706 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
3707 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
3708 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
3709 New constants.
3710 (lisp-mode-variables): New `elisp' argument.
3711 (emacs-lisp-mode): Use it.
3712 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
3713 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
3714
3715 * indent.el: Use lexical-binding.
3716 (indent-region): Add progress reporter.
3717 (tab-stop-list): Make it implicitly extend to infinity by repeating the
3718 last step.
3719 (indent--next-tab-stop): New function to implement this behavior.
3720 (tab-to-tab-stop, move-to-tab-stop): Use it.
3721
3722 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
3723
3724 * indent.el (indent-rigidly--current-indentation): New function.
3725 (indent-rigidly-map): New var.
3726 (indent-rigidly): Use it to provide interactive mode (bug#8196).
3727
3728 2013-10-08 Bastien Guerry <bzg@gnu.org>
3729
3730 * register.el (insert-register): Fix 2013-10-07T01:28:34Z!sdl.web@gmail.com.
3731
3732 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
3733
3734 * progmodes/perl-mode.el: Use lexical-binding.
3735 Remove redundant :group args.
3736 (perl-nochange): Change default to be closer to other major modes's
3737 standard behavior.
3738 (perl-indent-line): Don't consider text on current line as a
3739 valid beginning of function from which to indent.
3740
3741 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
3742 with more than one argument (bug#15538).
3743
3744 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
3745
3746 * vc/pcvs.el: Use lexical-binding.
3747 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
3748 environment of `eval'.
3749 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
3750 than a list of expressions. Adjust callers.
3751 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
3752
3753 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
3754
3755 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
3756 case of the dot in a chained method call being on the following line.
3757
3758 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
3759
3760 * electric.el (electric-indent-inhibit): New var.
3761 (electric-indent-post-self-insert-function): Use it.
3762 * progmodes/python.el (python-mode): Set it.
3763
3764 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
3765 open braces.
3766
3767 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
3768
3769 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
3770 (css-mode): Use electric-indent-chars.
3771
3772 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
3773 (font-lock-beg, font-lock-end): Move before first use.
3774 (nxml-mode): Use syntax-propertize-function.
3775 (nxml-after-change, nxml-after-change1): Adjust accordingly.
3776 (nxml-extend-after-change-region): Remove.
3777 * nxml/xmltok.el: Use lexical-binding.
3778 (xmltok-save): Use `declare'.
3779 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
3780 * nxml/nxml-util.el: Use lexical-binding.
3781 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
3782 Use `declare'.
3783 * nxml/nxml-ns.el: Use lexical-binding.
3784 (nxml-ns-save): Use `declare'.
3785 (nxml-ns-prefixes-for): Avoid add-to-list.
3786 * nxml/rng-match.el: Use lexical-binding.
3787 (rng--ipattern): Use cl-defstruct.
3788 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
3789 (rng-cons-group-after, rng-subst-group-after)
3790 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
3791 Use closures instead of `(lambda...).
3792
3793 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
3794
3795 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
3796 of BEG and END.
3797
3798 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3799 Use `tramp-handle-insert-file-contents'.
3800 (tramp-gvfs-handle-insert-file-contents): Remove function.
3801
3802 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
3803 Use `save-restriction' in order to keep markers.
3804
3805 * net/trampver.el: Update release number.
3806
3807 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
3808
3809 * progmodes/compile.el (compilation-parse-errors):
3810 Use compilation--put-prop.
3811 (compilation--ensure-parse): Check compilation-multiline.
3812
3813 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
3814
3815 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
3816 lexical-binding.
3817
3818 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
3819
3820 * progmodes/ruby-mode.el: Fix recently added tests.
3821 (ruby-smie-grammar): Add - and +.
3822 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
3823 (ruby-smie--backward-id): New functions.
3824 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
3825 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
3826 any more.
3827
3828 2013-10-07 Leo Liu <sdl.web@gmail.com>
3829
3830 * register.el (register-preview-delay)
3831 (register-preview-functions): New variables.
3832 (register-read-with-preview, register-preview)
3833 (register-describe-oneline): New functions.
3834 (point-to-register, window-configuration-to-register)
3835 (frame-configuration-to-register, jump-to-register)
3836 (number-to-register, view-register, insert-register)
3837 (copy-to-register, append-to-register, prepend-to-register)
3838 (copy-rectangle-to-register): Use register-read-with-preview to
3839 read register. (Bug#15525)
3840
3841 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
3842
3843 * net/network-stream.el (network-stream-open-starttls): Don't add
3844 --insecure if it's already present, because that gnutls-cli
3845 rejects getting that parameter twice.
3846
3847 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
3848
3849 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
3850 keyword, too.
3851
3852 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
3853
3854 * newcomment.el (comment-use-global-state): Change default value
3855 to t, mark obsolete (Bug#15251).
3856 (comment-beginning): In addition to `comment-to-syntax', check the
3857 value of `comment-use-global-state'.
3858
3859 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
3860
3861 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
3862 (ruby-comment-column): Follow the global default, by default.
3863 (ruby-smie-grammar): Add assignment syntax.
3864 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
3865 open-paren, a comma, or a \.
3866 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
3867 and line continuations.
3868 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
3869 followed by implicit semi-colons. Add rule for string concatenation
3870 and for indentation at BOB.
3871 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
3872
3873 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
3874 calling next-sexp, since next-token may have skipped chars which
3875 next-sexp doesn't know should be skipped!
3876
3877 2013-10-05 Leo Liu <sdl.web@gmail.com>
3878
3879 * progmodes/octave.el (octave-send-region):
3880 Call compilation-forget-errors.
3881
3882 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
3883
3884 * vc/vc-svn.el (vc-svn-find-admin-dir):
3885 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
3886 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
3887 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
3888 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
3889
3890 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
3891
3892 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
3893
3894 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
3895
3896 * subr.el (read-passwd): Hide chars even when called within a context
3897 where after-change-functions is disabled (bug#15501).
3898 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
3899 until we removed ourself from overriding-terminal-local-map.
3900
3901 2013-10-04 Leo Liu <sdl.web@gmail.com>
3902
3903 * progmodes/octave.el (inferior-octave-mode):
3904 Call compilation-forget-errors.
3905
3906 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
3907
3908 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
3909
3910 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
3911
3912 * net/secrets.el (secrets-create-collection): Add optional
3913 argument ALIAS. Use proper Label keyword. Append ALIAS as
3914 dbus-call-method argument. (Bug#15516)
3915
3916 2013-10-04 Leo Liu <sdl.web@gmail.com>
3917
3918 * progmodes/octave.el (inferior-octave-error-regexp-alist)
3919 (inferior-octave-compilation-font-lock-keywords): New variables.
3920 (compilation-error-regexp-alist)
3921 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
3922 (inferior-octave-mode): Use compilation-shell-minor-mode.
3923
3924 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
3925
3926 * minibuffer.el (completion--replace): Be careful that `end' might be
3927 a marker.
3928
3929 2013-10-03 Daiki Ueno <ueno@gnu.org>
3930
3931 Add support for package signature checking.
3932 * emacs-lisp/package.el (url-http-file-exists-p)
3933 (epg-make-context, epg-context-set-home-directory)
3934 (epg-verify-string, epg-context-result-for)
3935 (epg-signature-status, epg-signature-to-string)
3936 (epg-check-configuration, epg-configuration)
3937 (epg-import-keys-from-file): Declare.
3938 (package-check-signature): New user option.
3939 (package-unsigned-archives): New user option.
3940 (package-desc): Add `signed' field.
3941 (package-load-descriptor): Set `signed' field if .signed file exists.
3942 (package--archive-file-exists-p): New function.
3943 (package--check-signature): New function.
3944 (package-install-from-archive): Check package signature.
3945 (package--download-one-archive): Check archive signature.
3946 (package-delete): Remove .signed file.
3947 (package-import-keyring): New command.
3948 (package-refresh-contents): Import default keyring.
3949 (package-desc-status): Add "unsigned" status.
3950 (describe-package-1, package-menu--print-info)
3951 (package-menu-mark-delete, package-menu--find-upgrades)
3952 (package-menu--status-predicate): Support "unsigned" status.
3953
3954 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
3955
3956 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
3957 the new compilation scheme using the new byte-codes.
3958
3959 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
3960 (byte-pophandler): New byte codes.
3961 (byte-goto-ops): Adjust accordingly.
3962 (byte-compile--use-old-handlers): New var.
3963 (byte-compile-catch): Use new byte codes depending on
3964 byte-compile--use-old-handlers.
3965 (byte-compile-condition-case--old): Rename from
3966 byte-compile-condition-case.
3967 (byte-compile-condition-case--new): New function.
3968 (byte-compile-condition-case): New function that dispatches depending
3969 on byte-compile--use-old-handlers.
3970 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
3971 when we can.
3972
3973 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
3974 Optimize under `condition-case' and `catch' if
3975 byte-compile--use-old-handlers is nil.
3976 (disassemble-offset): Handle new bytecodes.
3977
3978 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
3979
3980 * subr.el (error): Use `declare'.
3981 (decode-char, encode-char): Use advertised-calling-convention instead
3982 of the docstring to discourage use of the `restriction' arg.
3983
3984 2013-10-03 Daiki Ueno <ueno@gnu.org>
3985
3986 * epg.el (epg-verify-file): Add a comment saying that it does not
3987 notify verification error as a return value nor a signal.
3988 (epg-verify-string): Ditto.
3989
3990 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
3991
3992 * progmodes/compile.el (compilation-start): Try globbing the arg to
3993 `cd' (bug#15417).
3994
3995 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
3996
3997 Sync with Tramp 2.2.8.
3998
3999 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
4000 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
4001 * net/trampver.el: Update release number.
4002
4003 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
4004
4005 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
4006 and default-process-coding-system for darwin only.
4007
4008 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4009
4010 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
4011
4012 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
4013
4014 * vc/vc-git.el (vc-git-grep): Disable pager.
4015
4016 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
4017
4018 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
4019 Use :url instead of :homepage, as per
4020 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
4021
4022 * newcomment.el (comment-beginning): When `comment-use-syntax' is
4023 non-nil, use `syntax-ppss' (Bug#15251).
4024
4025 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4026
4027 * progmodes/octave.el (inferior-octave-startup-file):
4028 Prefer ~/.emacs.d/init_octave.m.
4029
4030 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
4031
4032 * emacs-lisp/package.el (package-desc-from-define):
4033 Accept additional arguments as plist, convert them to an alist and store
4034 them in the `extras' slot.
4035 (package-generate-description-file): Convert extras alist back to
4036 plist and append to the `define-package' form arguments.
4037 (package--alist-to-plist): New function.
4038 (package--ac-desc): Add `extras' slot.
4039 (package--add-to-archive-contents): Check if the archive-contents
4040 vector is long enough, and if it is, pass its `extras' slot value
4041 to `package-desc-create'.
4042 (package-buffer-info): Call `lm-homepage', pass the returned value
4043 to `package-desc-from-define'.
4044 (describe-package-1): Render the homepage button (Bug#13291).
4045
4046 * emacs-lisp/package-x.el (package-upload-buffer-internal):
4047 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
4048
4049 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
4050
4051 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
4052 and default-process-coding-system to utf-8-unix (Bug#15402).
4053
4054 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
4055
4056 * subr.el (looking-back): Do not recommend using looking-back.
4057
4058 2013-09-28 Alan Mackenzie <acm@muc.de>
4059
4060 Fix indentation/fontification of Java enum with "implements".
4061
4062 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
4063 regexp which matches "implements", etc., in Java.
4064 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
4065 specifier clauses coming after "enum".
4066 * progmodes/cc-fonts.el (c-font-lock-declarations)
4067 (c-font-lock-enum-tail): Check for extra specifier clauses coming
4068 after "enum".
4069
4070 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
4071
4072 * faces.el (region): Change ns_selection_color to
4073 ns_selection_fg_color, add ns_selection_bg_color.
4074
4075 2013-09-28 Leo Liu <sdl.web@gmail.com>
4076
4077 * progmodes/octave.el (inferior-octave-completion-table)
4078 (inferior-octave-completion-at-point): Minor tweaks.
4079
4080 * textmodes/ispell.el (ispell-lookup-words): Rename from
4081 lookup-words. (Bug#15460)
4082 (lookup-words): Obsolete.
4083 (ispell-complete-word, ispell-command-loop): All uses changed.
4084
4085 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4086
4087 * lisp/progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
4088 (octave-mode-menu): Add octave-send-buffer.
4089 (octave-send-buffer): New function.
4090
4091 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4092
4093 * lisp/progmodes/octave.el (octave-mode-map): Add key binding for
4094 octave-lookfor.
4095 (octave-mode-menu): Add octave-lookfor.
4096 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
4097 octave-lookfor.
4098 (octave-lookfor): New function.
4099
4100 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
4101
4102 * emacs-lisp/cl-macs.el:
4103 (cl--loop-destr-temps): Remove.
4104 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
4105 its convention.
4106 (cl--loop-set-iterator-function): New function.
4107 (cl-loop): Adjust accordingly, so as not to use cl-subst.
4108 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
4109 Bind `it' with `let' instead of substituting it with `cl-subst'.
4110 (cl--unused-var-p): New function.
4111 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
4112 Eliminate some unused variable warnings (bug#15326).
4113
4114 2013-09-27 Tassilo Horn <tsdh@gnu.org>
4115
4116 * doc-view.el (doc-view-scale-reset): Rename from
4117 `doc-view-reset-zoom-level'.
4118 (doc-view-scale-adjust): New command.
4119 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
4120 `doc-view-scale-adjust'.
4121
4122 2013-09-26 Tassilo Horn <tsdh@gnu.org>
4123
4124 * doc-view.el (doc-view-reset-zoom-level): New command.
4125 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
4126 zoom commands (bug#15466).
4127
4128 2013-09-26 Kenichi Handa <handa@gnu.org>
4129
4130 * international/quail.el (quail-help): Make it not a command.
4131
4132 2013-09-26 Leo Liu <sdl.web@gmail.com>
4133
4134 * minibuffer.el (completion-all-sorted-completions): Make args
4135 optional as they are.
4136
4137 2013-09-25 Daniel Colascione <dancol@dancol.org>
4138
4139 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
4140 specs are and that they're not evaluated.
4141
4142 2013-09-24 Sam Steingold <sds@gnu.org>
4143
4144 * midnight.el (clean-buffer-list-kill-regexps)
4145 (clean-buffer-list-kill-buffer-names): Update for the new Man
4146 buffer naming which includes the object name.
4147
4148 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
4149
4150 * eshell/esh-cmd.el (eshell--sep-terms): New var.
4151 (eshell-parse-command, eshell-parse-pipeline): Use it since
4152 eshell-separate-commands requires a dynamic scoped var.
4153 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
4154
4155 2013-09-23 Leo Liu <sdl.web@gmail.com>
4156
4157 * autoinsert.el (auto-insert-alist): Make the value of
4158 lexical-binding match its file setting.
4159
4160 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
4161
4162 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
4163
4164 * autoarg.el (autoarg-kp-digit-argument):
4165 * electric.el (Electric-command-loop):
4166 * kmacro.el (kmacro-step-edit-insert):
4167 Do not set universal-argument-num-events.
4168
4169 2013-09-22 Leo Liu <sdl.web@gmail.com>
4170
4171 * files.el (interpreter-mode-alist): Add octave.
4172
4173 2013-09-21 Alan Mackenzie <acm@muc.de>
4174
4175 C++: fontify identifier in declaration following "public:" correctly.
4176 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
4177 to match "public", etc.
4178 (c-decl-prefix-re): Add ":" into the C++ value.
4179 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
4180 bit. Add a check for a ":" preceded by "public", etc.
4181
4182 2013-09-21 Eli Zaretskii <eliz@gnu.org>
4183
4184 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
4185 recognized by GDB 7.5 and later.
4186
4187 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
4188
4189 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
4190
4191 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
4192
4193 * subr.el (internal--call-interactively): New const.
4194 (called-interactively-p): Use it (bug#3984).
4195
4196 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
4197
4198 * vc/pcvs.el (cvs-mode-ignore):
4199 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
4200 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
4201
4202 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
4203
4204 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
4205 (eshell-ls-orig-insert-directory): Remove.
4206 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
4207 (eshell-ls-use-in-dired): Use advice-add/remove.
4208 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
4209 Add `orig-fun' arg for use in :around advice.
4210 Make it check (redundantly) eshell-ls-use-in-dired.
4211
4212 2013-09-19 Glenn Morris <rgm@gnu.org>
4213
4214 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
4215
4216 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
4217
4218 * emacs-lisp/eieio.el (class-parent): Undo previous change.
4219
4220 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
4221
4222 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
4223 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
4224 (tramp-get-remote-python): New defuns.
4225 (tramp-get-remote-uid-with-perl)
4226 (tramp-get-remote-gid-with-perl): New defuns. Perl code
4227 contributed by yary <not.com@gmail.com> (tiny change).
4228 (tramp-get-remote-uid-with-python)
4229 (tramp-get-remote-gid-with-python): New defuns. Python code
4230 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
4231 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
4232
4233 2013-09-19 Glenn Morris <rgm@gnu.org>
4234
4235 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
4236
4237 * eshell/em-unix.el (eshell-remove-entries):
4238 Rename argument to avoid name-clash with global `top-level'.
4239
4240 * eshell/esh-proc.el (eshell-kill-process-function):
4241 Remove eshell-reset-after-proc from eshell-kill-hook if present.
4242 (eshell-reset-after-proc): Remove unused arg `proc'.
4243
4244 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
4245 (directory-files-and-attributes): Mark unused arg.
4246
4247 * eshell/em-unix.el (eshell-remove-entries):
4248 Remove unused arg `path'. Update callers.
4249
4250 * eshell/em-hist.el (eshell-hist-parse-arguments):
4251 Remove unused arg `silent'. Update callers.
4252
4253 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
4254 Fix (f)boundp mix-up.
4255
4256 * eshell/em-smart.el (eshell-smart-scroll-window)
4257 (eshell-disable-after-change):
4258 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
4259
4260 2013-09-18 Alan Mackenzie <acm@muc.de>
4261
4262 Fix fontification of type when followed by "const".
4263 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
4264 "known" types from fontification.
4265
4266 2013-09-18 Glenn Morris <rgm@gnu.org>
4267
4268 * emacs-lisp/chart.el (x-display-color-cells): Declare.
4269 (chart-face-list): Drop Emacsen without display-color-p.
4270
4271 * net/eww.el (libxml-parse-html-region): Declare.
4272 (eww-display-html): Explicit error if no libxml2 support.
4273
4274 * doc-view.el (doc-view-mode): Silence --without-x compilation.
4275
4276 * image.el (image-type-from-buffer, image-multi-frame-p):
4277 Remove --without-x warning/error.
4278
4279 * mouse.el (mouse-yank-primary):
4280 * term.el (term-mouse-paste):
4281 Reorder to silence --without-x compilation.
4282
4283 * mpc.el (doc-view-mode): Silence --without-x compilation.
4284
4285 * mail/rmailmm.el (rmail-mime-set-bulk-data):
4286 Silence --without-x compilation.
4287
4288 * progmodes/gud.el (gud-find-file, gud-mode):
4289 Silence --without-x compilation.
4290 (tooltip-mode): Declare.
4291
4292 * wdired.el (dired-backup-overwrite): Remove declaration.
4293 (wdired-mode-map): Add doc string.
4294
4295 * custom.el (x-get-resource): Declare.
4296
4297 * eshell/em-glob.el (ange-cache):
4298 * eshell/em-unix.el (ange-cache): Declare.
4299
4300 * faces.el (x-display-list, x-open-connection, x-get-resource):
4301 Declare.
4302
4303 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
4304 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
4305 Declare.
4306
4307 * frame.el (x-display-grayscale-p, x-display-name): Declare.
4308
4309 * net/gnutls.el (gnutls-log-level): Declare.
4310
4311 * net/shr.el (image-size, image-animate): Declare.
4312
4313 * simple.el (font-info): Declare.
4314
4315 * subr.el (x-popup-dialog): Declare.
4316
4317 * term/common-win.el (x-select-enable-primary)
4318 (x-last-selected-text-primary, x-last-selected-text-clipboard):
4319 Declare.
4320
4321 * term/ns-win.el (x-handle-args): Declare.
4322
4323 * term/x-win.el (x-select-enable-clipboard): Declare.
4324
4325 * term/w32-win.el (create-default-fontset): Declare.
4326
4327 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
4328 Declare.
4329
4330 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
4331 (fit-frame-to-buffer): Explicit error if --without-x.
4332 (mouse-autoselect-window-select): Silence compiler.
4333
4334 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
4335
4336 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
4337 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
4338 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
4339 * eshell/esh-util.el (eshell-sublist):
4340 Remove unused local variables.
4341
4342 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
4343
4344 * textmodes/two-column.el: Make 2C-split work for --without-x.
4345 (scroll-bar-columns): Autoload.
4346 (top-level): Require fringe when compiling.
4347
4348 2013-09-18 Leo Liu <sdl.web@gmail.com>
4349
4350 * subr.el (add-hook): Robustify to handle closure as well.
4351
4352 2013-09-17 Glenn Morris <rgm@gnu.org>
4353
4354 * simple.el (messages-buffer-mode-map): Unbind "g".
4355
4356 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4357
4358 * help-mode.el (help-mode-finish): Use derived-mode-p.
4359 Remove obsolete highlighting.
4360
4361 * play/life.el (life-mode): Use define-derived-mode. Derive from
4362 special-mode.
4363 (life): Let-bind inhibit-read-only.
4364 (life-setup): Avoid `setq'. Use `life-mode'.
4365
4366 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
4367 which should not be needed any more.
4368 (package-menu-refresh, package-menu-describe-package): Use user-error.
4369
4370 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
4371 (eshell-post-rewrite-command-hook): Make obsolete.
4372 (eshell-parse-command): Simplify.
4373 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
4374 (eshell--cmd): Declare.
4375 (eshell-parse-pipeline): Remove unused var `final-p'.
4376 Pass a dynvar to eshell-post-rewrite-command-hook.
4377 Implement the new eshell-post-rewrite-command-function.
4378 (eshell-invoke-directly): Remove unused arg `input'.
4379 * eshell/esh-io.el (eshell-io-initialize):
4380 Use eshell-post-rewrite-command-function (bug#15399).
4381 (eshell--apply-redirections): Rename from eshell-apply-redirections;
4382 adjust to new calling convention.
4383 (eshell-create-handles): Rename args to avoid clashing with dynvar
4384 `standard-output'.
4385
4386 2013-09-17 Glenn Morris <rgm@gnu.org>
4387
4388 * simple.el (messages-buffer-mode): New major mode.
4389 (messages-buffer): New function.
4390 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
4391 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
4392 (ert-run-test): Use `messages-buffer' function.
4393 (ert--force-message-log-buffer-truncation): Ignore read-only.
4394 * help.el (view-echo-area-messages): Use `messages-buffer' function.
4395 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
4396
4397 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4398
4399 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
4400
4401 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
4402
4403 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
4404
4405 * icomplete.el (icomplete-in-buffer): New var.
4406 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
4407 vars and replace them with functions.
4408 (icomplete-minibuffer-setup): Adjust accordingly.
4409 (icomplete--completion-table, icomplete--completion-predicate)
4410 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
4411 New functions.
4412 (icomplete-forward-completions, icomplete-backward-completions)
4413 (icomplete-simple-completing-p, icomplete-exhibit)
4414 (icomplete-completions): Use them.
4415 (icomplete--in-region-buffer): New var.
4416 (icomplete--in-region-setup): New function.
4417 (icomplete-mode): Use it.
4418
4419 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
4420 (bug#15379).
4421 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
4422 return args and options.
4423 (eshell-eval-using-options): Use the new return value of
4424 eshell--do-opts to set the options's vars in their scope.
4425 (eshell--set-option): Rename from eshell-set-option.
4426 Add arg `opt-vals'.
4427 (eshell--process-option): Rename from eshell-process-option.
4428 Add arg `opt-vals'.
4429 (eshell--process-args): Use an `opt-vals' alist to store the options's
4430 values during their processing and return them additionally to the
4431 remaining args.
4432
4433 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
4434
4435 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
4436 continuation character an operator, as far as indentation is
4437 concerned (Bug#15369).
4438
4439 2013-09-15 Martin Rudalics <rudalics@gmx.at>
4440
4441 * window.el (window--state-put-2): Don't process buffer state
4442 when buffer doesn't exist any more (Bug#15382).
4443
4444 2013-09-15 Glenn Morris <rgm@gnu.org>
4445
4446 * eshell/em-unix.el (eshell/rm):
4447 Make -f ignore missing files. (Bug#15373)
4448
4449 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
4450 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
4451 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
4452
4453 2013-09-14 Glenn Morris <rgm@gnu.org>
4454
4455 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
4456
4457 2013-09-13 Glenn Morris <rgm@gnu.org>
4458
4459 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
4460 (dired-guess-default): Make `file' available in the env. (Bug#15363)
4461
4462 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
4463
4464 * frame.el (x-focus-frame): Mark as declared in frame.c.
4465
4466 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
4467
4468 * ls-lisp.el: Use advice-add.
4469 (original-insert-directory): Remove.
4470 (ls-lisp--insert-directory): Rename from insert-directory; add
4471 `orig-fun' argument.
4472 (insert-directory): Advise.
4473
4474 2013-09-13 Eli Zaretskii <eliz@gnu.org>
4475
4476 * term.el (term-emulate-terminal): Decode the command string
4477 before passing it to term-command-hook. (Bug#15337)
4478
4479 2013-09-13 Glenn Morris <rgm@gnu.org>
4480
4481 * eshell/esh-util.el (ange-cache): Move declaration earlier.
4482
4483 * eshell/esh-ext.el (eshell-search-path): Declare.
4484
4485 * eshell/em-prompt.el (eshell/pwd): Autoload it.
4486 Otherwise an error occurs if eshell-dirs module not loaded.
4487
4488 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
4489
4490 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
4491
4492 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
4493 `tramp-check-proper-host'. Check for a valid method name.
4494
4495 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
4496 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4497 * net/tramp-sh.el (tramp-maybe-open-connection):
4498 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
4499
4500 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
4501 also for hash values.
4502
4503 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4504
4505 * term/ns-win.el (parameters): Don't declare as dynamic.
4506 (before-make-frame-hook): Don't add ineffective function.
4507
4508 * eshell/*.el: Use lexical-binding (bug#15231).
4509
4510 2013-09-12 Kenichi Handa <handa@gnu.org>
4511
4512 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
4513
4514 2013-09-12 Glenn Morris <rgm@gnu.org>
4515
4516 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
4517 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
4518
4519 * subr.el (do-after-load-evaluation): Also give compiler warnings
4520 when obsolete files are used (except by obsolete files).
4521
4522 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
4523 in the status output, assume `filename' is the first. (Bug#15322)
4524
4525 * vc/vc.el (vc-deduce-fileset): Doc fix.
4526
4527 * calc/calc-help.el (Info-goto-node):
4528 * progmodes/cperl-mode.el (Info-find-node):
4529 * vc/ediff.el (Info-goto-node): Update declarations.
4530
4531 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
4532
4533 * vc/vc-bzr.el (vc-compilation-mode): Declare.
4534 (vc-bzr-pull): Require vc-dispatcher.
4535 * vc/vc-git.el (vc-compilation-mode): Declare.
4536 (vc-git-pull): Require vc-dispatcher.
4537
4538 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
4539
4540 * progmodes/octave.el (help-button-action): Declare.
4541
4542 * shell.el (shell-directory-tracker): Output error as a message
4543 rather than just returning it as a string.
4544 (shell-process-pushd): Remove useless use of message.
4545
4546 * dframe.el (dframe-timer-fn):
4547 * files.el (dir-locals-read-from-file):
4548 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
4549 (mpc-format):
4550 * reveal.el (reveal-post-command):
4551 * saveplace.el (load-save-place-alist-from-file):
4552 * shell.el (shell-resync-dirs):
4553 * w32-common-fns.el (x-get-selection-value):
4554 * emacs-lisp/copyright.el (copyright-find-copyright):
4555 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
4556 * emulation/tpu-edt.el (tpu-copy-keyfile):
4557 * play/bubbles.el (bubbles--mark-neighbourhood):
4558 * progmodes/executable.el
4559 (executable-make-buffer-file-executable-if-script-p):
4560 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
4561
4562 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4563
4564 Cleanup Eshell to rely less on dynamic scoping.
4565 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
4566 last-value, and ext-command here. Bind `args' closer to `body'.
4567 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
4568 (eshell--args): Declare new dynamic var.
4569 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
4570 last-value, and ext-command. Pass `args' to `body'.
4571 (eshell-process-args): Bind eshell--args.
4572 (eshell-set-option): Use eshell--args.
4573 * eshell/eshell.el (eshell): Use derived-mode-p.
4574 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
4575 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
4576 (eshell-glob-function): Declare.
4577 * eshell/esh-util.el: Require cl-lib.
4578 (eshell-read-hosts-file): Avoid add-to-list.
4579 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
4580 `err'.
4581 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
4582 Declare.
4583 (eshell/diff): Remove unused var `err'.
4584 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
4585 `killflag'.
4586 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
4587 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
4588 first use.
4589 * eshell/em-glob.el (eshell-glob-matches, message-shown):
4590 Move declaration before first use.
4591 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
4592 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
4593 rely on cl-return.
4594
4595 2013-09-12 Glenn Morris <rgm@gnu.org>
4596
4597 * term/ns-win.el (global-map): Remove binding for ispell-next,
4598 deleted 1999-05-29. (Bug#15357)
4599
4600 2013-09-11 Glenn Morris <rgm@gnu.org>
4601
4602 * echistory.el (electric-command-history): Remove call to deleted func.
4603
4604 * play/landmark.el (landmark-mode): Fix typos.
4605
4606 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
4607 Check cvs-sort-ignore-file is bound.
4608
4609 * savehist.el: No need for cl when compiling on Emacs.
4610
4611 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
4612
4613 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
4614 (bug#15338).
4615 (eshell-self-insert-command, eshell-send-invisible):
4616 Remove unused argument.
4617 (eshell-handle-control-codes): Remove unused var `orig'.
4618 Avoid delete-backward-char.
4619
4620 * files.el (set-auto-mode): Simplify a bit further.
4621
4622 2013-09-11 Glenn Morris <rgm@gnu.org>
4623
4624 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
4625 (set-auto-mode): Don't regexp-quote elements.
4626 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
4627 * progmodes/cc-mode.el (interpreter-mode-alist):
4628 * progmodes/ruby-mode.el (interpreter-mode-alist):
4629 Revert previous change.
4630
4631 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
4632
4633 * play/snake.el (snake-mode):
4634 * play/mpuz.el (mpuz-mode):
4635 * play/landmark.el (lm-mode):
4636 * play/blackbox.el (blackbox-mode):
4637 * play/5x5.el (5x5-mode):
4638 * obsolete/options.el (Edit-options-mode):
4639 * net/quickurl.el (quickurl-list-mode):
4640 * net/newst-treeview.el (newsticker-treeview-mode):
4641 * mail/rmailsum.el (rmail-summary-mode):
4642 * mail/mspools.el (mspools-mode):
4643 * locate.el (locate-mode):
4644 * ibuffer.el (ibuffer-mode):
4645 * emulation/ws-mode.el (wordstar-mode):
4646 * emacs-lisp/debug.el (debugger-mode):
4647 * array.el (array-mode):
4648 * net/eudc.el (eudc-mode): Use define-derived-mode.
4649 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
4650 Move initialization into declaration.
4651 (mairix-searches-mode): Use define-derived-mode.
4652 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
4653 (eudc-edit-hotlist): Use dolist.
4654 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
4655 (Man-mode): Use define-derived-mode.
4656 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
4657 (Info-edit-mode): Use define-derived-mode.
4658 (Info-cease-edit): Use Info-mode.
4659 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
4660 into declaration.
4661 (eshell-mode): Use define-derived-mode.
4662 * chistory.el (command-history-mode-map): Rename from
4663 command-history-map.
4664 (command-history-mode): Use define-derived-mode.
4665 (Command-history-setup): Remove function.
4666 * calc/calc.el (calc-trail-mode-map): New var.
4667 (calc-trail-mode): Use define-derived-mode.
4668 (calc-trail-buffer): Set calc-main-buffer manually.
4669 * bookmark.el (bookmark-insert-annotation): New function.
4670 (bookmark-edit-annotation): Use it.
4671 (bookmark-edit-annotation-mode): Make it a proper major mode.
4672 (bookmark-send-edited-annotation): Use derived-mode-p.
4673 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
4674 closer to its ideal place. Use \' to match EOS.
4675
4676 * profiler.el (profiler-calltree-find): Use function-equal.
4677
4678 2013-09-10 Glenn Morris <rgm@gnu.org>
4679
4680 * files.el (interpreter-mode-alist): Convert to regexps.
4681 (set-auto-mode): Adapt for this. (Bug#15306)
4682 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
4683 Comment out unused variable.
4684 * progmodes/cc-mode.el (interpreter-mode-alist):
4685 * progmodes/python.el (interpreter-mode-alist):
4686 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
4687 * progmodes/sh-script.el (sh-set-shell):
4688 No longer use interpreter-mode-alist to get list of shells.
4689
4690 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
4691
4692 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
4693
4694 * simple.el: Use set-temporary-overlay-map for universal-argument.
4695 (universal-argument-map): Don't use default-bindings (bug#15317).
4696 Bind switch-frame explicitly. Replace universal-argument-minus with
4697 a conditional binding.
4698 (universal-argument-num-events, saved-overriding-map): Remove.
4699 (restore-overriding-map): Remove.
4700 (universal-argument--mode): Rename from save&set-overriding-map,
4701 and rewrite.
4702 (universal-argument, universal-argument-more, negative-argument)
4703 (digit-argument): Adjust accordingly.
4704 (universal-argument-minus): Remove.
4705 (universal-argument-other-key): Remove.
4706
4707 * subr.el (with-demoted-errors): Add `format' argument.
4708
4709 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
4710
4711 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
4712 `tramp-cleanup-connection'.
4713
4714 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
4715 parameters KEEP-DEBUG and KEEP-PASSWORD.
4716
4717 * net/tramp.el (tramp-file-name-handler):
4718 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
4719 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
4720 (tramp-maybe-open-connection):
4721 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
4722 Use `tramp-cleanup-connection'.
4723
4724 * net/tramp-sh.el (tramp-maybe-open-connection):
4725 Catch 'uname-changed inside the progress reporter.
4726
4727 2013-09-10 Glenn Morris <rgm@gnu.org>
4728
4729 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
4730
4731 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
4732 returns "alternate access method" in mode (eg "-rw-r--r--.").
4733
4734 2013-09-08 Glenn Morris <rgm@gnu.org>
4735
4736 * saveplace.el (load-save-place-alist-from-file):
4737 Demote errors. (Bug#15305)
4738
4739 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
4740
4741 Improve compatibility with older Emacsen, and XEmacs.
4742
4743 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
4744 only if it is bound. It isn't for XEmacs.
4745 (with-tramp-progress-reporter): Do not let-bind `result'.
4746 This yields to scoping errors in XEmacs.
4747 (tramp-handle-make-auto-save-file-name): New function, moved from
4748 tramp-sh.el.
4749
4750 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
4751 for `make-auto-save-file-name'.
4752 (tramp-adb--gnu-switches-to-ash):
4753 Use `tramp-compat-replace-regexp-in-string'.
4754
4755 * net/tramp-cache.el (tramp-cache-print): Call
4756 `substring-no-properties' only if it is bound. It isn't for XEmacs.
4757
4758 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
4759 bound. It isn't for XEmacs.
4760
4761 * net/tramp-compat.el (tramp-compat-copy-file):
4762 Catch `wrong-number-of-arguments' error.
4763 (tramp-compat-replace-regexp-in-string): New defun.
4764
4765 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
4766 for `make-auto-save-file-name'.
4767 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
4768 `copy-file'.
4769 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
4770 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
4771 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
4772
4773 * net/tramp-gw.el (tramp-gw-open-network-stream):
4774 Use `tramp-compat-replace-regexp-in-string'.
4775
4776 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
4777 Call `tramp-handle-make-auto-save-file-name'.
4778 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
4779 (tramp-sh-file-gvfs-monitor-dir-process-filter)
4780 (tramp-sh-file-inotifywait-process-filter):
4781 Use `tramp-compat-replace-regexp-in-string'.
4782 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
4783
4784 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
4785 for `make-auto-save-file-name'.
4786 (tramp-smb-handle-copy-directory):
4787 Call `tramp-compat-replace-regexp-in-string'.
4788 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
4789 (tramp-smb-handle-copy-file): Improve error message.
4790 (tramp-smb-handle-rename-file): Rename directly only in case
4791 `newname' does not exist yet. This is a restriction of smbclient.
4792 (tramp-smb-maybe-open-connection): Rerun the function only when
4793 `auth-sources' is non-nil.
4794
4795 2013-09-08 Kenichi Handa <handa@gnu.org>
4796
4797 * international/characters.el: Set category "^" (Combining) for
4798 more characters.
4799
4800 2013-09-07 Alan Mackenzie <acm@muc.de>
4801
4802 Correctly fontify Java class constructors.
4803 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
4804 in Java Mode.
4805 (c-recognize-typeless-decls): Set the Java value to t.
4806 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
4807 While handling a "(", add a check for, effectively, Java, and handle a
4808 "typeless" declaration there.
4809
4810 2013-09-07 Roland Winkler <winkler@gnu.org>
4811
4812 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
4813 field subtitle for entry type book.
4814
4815 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
4816
4817 * minibuffer.el: Make minibuffer-complete call completion-in-region
4818 rather than other way around.
4819 (completion--some, completion-pcm--find-all-completions):
4820 Don't delay signals when debugging.
4821 (minibuffer-completion-contents): Beware fields within the
4822 minibuffer contents.
4823 (completion-all-sorted-completions): Use defvar-local.
4824 (completion--do-completion, completion--cache-all-sorted-completions)
4825 (completion-all-sorted-completions, minibuffer-force-complete):
4826 Add args `beg' and `end'.
4827 (completion--in-region-1): New fun, extracted from minibuffer-complete.
4828 (minibuffer-complete): Use completion-in-region.
4829 (completion-complete-and-exit): New fun, extracted from
4830 minibuffer-complete-and-exit.
4831 (minibuffer-complete-and-exit): Use it.
4832 (completion--complete-and-exit): Rename from
4833 minibuffer--complete-and-exit.
4834 (completion-in-region--single-word): New function, extracted from
4835 minibuffer-complete-word.
4836 (minibuffer-complete-word): Use it.
4837 (display-completion-list): Make `common-substring' argument obsolete.
4838 (completion--in-region): Call completion--in-region-1 instead of
4839 minibuffer-complete.
4840 (completion-help-at-point): Pass boundaries to
4841 minibuffer-completion-help as args rather than via an overlay.
4842 (completion-pcm--string->pattern): Use `any-delim'.
4843 (completion-pcm--optimize-pattern): New function.
4844 (completion-pcm--pattern->regex): Handle `any-delim'.
4845 * icomplete.el (icomplete-forward-completions)
4846 (icomplete-backward-completions, icomplete-completions):
4847 Adjust calls to completion-all-sorted-completions and
4848 completion--cache-all-sorted-completions.
4849 (icomplete-with-completion-tables): Default to t.
4850 * emacs-lisp/crm.el (crm--current-element): Rename from
4851 crm--select-current-element. Don't put an overlay but return the
4852 boundaries instead.
4853 (crm--completion-command): Take two new args to bind to the boundaries.
4854 (crm-completion-help): Adjust accordingly.
4855 (crm-complete): Use completion-in-region.
4856 (crm-complete-word): Use completion-in-region--single-word.
4857 (crm-complete-and-exit): Use completion-complete-and-exit.
4858
4859 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
4860
4861 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
4862 than dynamically.
4863
4864 2013-09-06 Juri Linkov <juri@jurta.org>
4865
4866 * info.el (Info-display-images-node): When image file doesn't exist
4867 display text version of the image if it's provided in the Info file.
4868 Otherwise, display the location of missing image from SRC attribute.
4869 Add help-echo text property from ALT attribute. (Bug#15279)
4870
4871 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
4872
4873 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
4874 (edit-abbrevs-mode): Use define-derived-mode.
4875
4876 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
4877 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
4878 that it's defined.
4879 (epa-key-list-mode, epa-key-mode, epa-info-mode):
4880 Use define-derived-mode.
4881
4882 * epg.el (epg-start-encrypt): Minor CSE simplification.
4883
4884 2013-09-06 William Xu <william.xwl@gmail.com>
4885
4886 * arc-mode.el: Add support for 7za (bug#15264).
4887 (archive-7z-program): New var.
4888 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
4889 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
4890 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
4891
4892 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
4893
4894 Remove URL syntax.
4895
4896 * net/tramp.el (tramp-syntax, tramp-prefix-format)
4897 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
4898 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
4899 (tramp-postfix-host-format, tramp-file-name-regexp)
4900 (tramp-completion-file-name-regexp)
4901 (tramp-completion-dissect-file-name)
4902 (tramp-handle-substitute-in-file-name): Remove 'url case.
4903 (tramp-file-name-regexp-url)
4904 (tramp-completion-file-name-regexp-url): Remove constants.
4905
4906 2013-09-06 Glenn Morris <rgm@gnu.org>
4907
4908 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
4909
4910 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
4911
4912 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
4913 keywords" below "here-doc beginnings" (Bug#15270).
4914
4915 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
4916
4917 * subr.el (pop): Use `car-safe'.
4918 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
4919 to detect unused `pop' return value.
4920
4921 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
4922 var `block-regexp'.
4923 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
4924 (python-fill-string): Remove unused var `marker'.
4925 (python-skeleton-add-menu-items): Remove unused var `items'.
4926
4927 * international/mule-cmds.el: Require CL.
4928 (find-coding-systems-for-charsets): Avoid add-to-list.
4929 (sanitize-coding-system-list): New function, extracted from
4930 select-safe-coding-system-interactively.
4931 (select-safe-coding-system-interactively): Use it.
4932 (read-input-method-name): Accept symbols for `default'.
4933
4934 * emacs-lisp/advice.el (defadvice): Add indent rule.
4935
4936 2013-09-05 Daniel Hackney <dan@haxney.org>
4937
4938 * dired-x.el:
4939 * net/ange-ftp.el:
4940 * net/browse-url.el:
4941 * net/dbus.el:
4942 * net/eudc.el:
4943 * net/eudcb-ldap.el:
4944 * net/eww.el:
4945 * net/imap.el:
4946 * printing.el:
4947 * vc/ediff-diff.el:
4948 * vc/ediff-init.el:
4949 * vc/ediff-merg.el:
4950 * vc/ediff-mult.el:
4951 * vc/ediff-util.el:
4952 * vc/ediff-wind.el:
4953 * vc/ediff.el:
4954 * vc/emerge.el:
4955 * vc/pcvs.el:
4956 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
4957 byte compiler. Remove some unused let-bound variables.
4958
4959 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
4960
4961 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
4962 a "ref-cell", since it gets better optimized (bug#14883).
4963
4964 2013-09-05 Glenn Morris <rgm@gnu.org>
4965
4966 * progmodes/cc-awk.el (c-forward-sws): Declare.
4967
4968 2013-09-04 Glenn Morris <rgm@gnu.org>
4969
4970 * generic-x.el [rul-generic-mode]: Require cc-mode.
4971 (c++-mode-syntax-table): Declare.
4972 (rul-generic-mode-syntax-table): Init in the defvar.
4973
4974 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
4975
4976 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
4977 (vc-do-command, vc-set-async-update):
4978 * vc/vc-mtn.el (vc-mtn-dir-status):
4979 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
4980 (vc-hg-pull, vc-hg-merge-branch):
4981 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
4982 (vc-git-merge-branch):
4983 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
4984 (vc-cvs-dir-status-files):
4985 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
4986 (vc-bzr-dir-status-files):
4987 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
4988 * vc/vc-annotate.el: Use lexical-binding.
4989 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
4990 (vc-sentinel-movepoint): Declare.
4991 (vc-annotate): Don't use `goto-line'.
4992 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
4993 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
4994 (vc-sentinel-movepoint): Declare.
4995 * vc/vc-svn.el: Use lexical-binding.
4996 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
4997 * vc/vc-sccs.el:
4998 * vc/vc-rcs.el: Use lexical-binding.
4999
5000 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
5001 `deleted'. Don't drop errors silently.
5002
5003 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
5004
5005 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
5006
5007 * vc/vc.el (vc-ignore): Rewrite.
5008 (vc-default-ignore): New function.
5009 (vc-default-ignore-completion-table): Use find-ignore-file.
5010
5011 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
5012 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
5013 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
5014 Remove. Most code moved to vc.el.
5015
5016 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
5017
5018 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
5019 * net/tramp-smb.el (tramp-smb-get-file-entries):
5020 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
5021 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
5022
5023 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
5024 Update call to it.
5025 (eww-change-select): Remove unused var `properties'.
5026 (eww-make-unique-file-name): Remove unused var `base'.
5027
5028 * finder.el (finder-compile-keywords): Don't mess with windows.
5029
5030 * calculator.el (calculator-funcall): Fix typo in last change.
5031
5032 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
5033
5034 * emacs-lisp/package.el (package-activate-1): Don't let a missing
5035 <pkg>-autoloads.el file stop us.
5036
5037 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
5038 warnings, and factor out common code.
5039
5040 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
5041
5042 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
5043 two-character operators and whether the character preceding them
5044 changes their meaning (Bug#15208).
5045
5046 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
5047
5048 Format code sent to Python shell for robustness.
5049 * progmodes/python.el (python-shell-buffer-substring):
5050 New function.
5051 (python-shell-send-region, python-shell-send-buffer): Use it.
5052
5053 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
5054
5055 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
5056 * net/tramp.el (tramp-user-error): ... here.
5057 (tramp-find-method, tramp-check-proper-host)
5058 (tramp-dissect-file-name, tramp-debug-message)
5059 (tramp-handle-shell-command):
5060 * net/tramp-adb.el (tramp-adb-handle-shell-command):
5061 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
5062
5063 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
5064
5065 2013-09-02 Martin Rudalics <rudalics@gmx.at>
5066
5067 * avoid.el (mouse-avoidance-point-position)
5068 (mouse-avoidance-too-close-p): Handle case where posn-at-point
5069 returns nil.
5070
5071 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
5072
5073 * progmodes/python.el (python-shell-completion-get-completions):
5074 Drop use of deleted `comint-last-prompt-overlay'.
5075 (python-nav-if-name-main): New command.
5076
5077 2013-09-01 Glenn Morris <rgm@gnu.org>
5078
5079 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
5080 Avoid leading space in $wins. Otherwise the sed command used by
5081 eg compile-main ends up containing "/*.el". (Bug#15170)
5082
5083 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
5084
5085 2013-08-30 Glenn Morris <rgm@gnu.org>
5086
5087 * emacs-lisp/bytecomp.el (byte-recompile-directory):
5088 Fix is-this-a-directory logic. (Bug#15220)
5089
5090 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
5091
5092 * textmodes/css-mode.el: Use SMIE.
5093 (css-smie-grammar): New var.
5094 (css-smie--forward-token, css-smie--backward-token)
5095 (css-smie-rules): New functions.
5096 (css-mode): Use them.
5097 (css-navigation-syntax-table): Remove var.
5098 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
5099 (css-indent-calculate, css-indent-line): Remove functions.
5100
5101 Misc changes to reduce use of `(lambda...); and other cleanups.
5102 * cus-edit.el: Use lexical-binding.
5103 (customize-push-and-save, customize-apropos)
5104 (custom-buffer-create-internal): Use closures.
5105 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
5106 * progmodes/ada-xref.el: Use setq.
5107 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
5108 * dframe.el: Use lexical-binding.
5109 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
5110 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
5111 * descr-text.el: Use lexical-binding.
5112 (describe-text-widget, describe-text-sexp, describe-property-list):
5113 Use closures.
5114 * comint.el (comint-history-isearch-push-state): Use a closure.
5115 * calculator.el: Use lexical-binding.
5116 (calculator-number-to-string): Make it work with lexical-binding.
5117 (calculator-funcall): Same and use cl-letf.
5118
5119 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
5120 (lisp--company-doc-string, lisp--company-location): New functions.
5121 (lisp-completion-at-point): Use them to improve Company support.
5122
5123 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
5124 params of lambda expressions.
5125 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
5126 (ruby-smie--opening-pipe-p): New function.
5127 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
5128 symbols and matched |...| for formal params.
5129 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
5130 from being treated as hanging. Handle "rescue".
5131
5132 2013-08-29 Glenn Morris <rgm@gnu.org>
5133
5134 * progmodes/cc-engine.el (c-pull-open-brace):
5135 Move definition before use.
5136
5137 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
5138
5139 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
5140 are immutable. Don't use `unsafe' any more.
5141 (cl--defsubst-expand): Don't substitute at the same time as keeping
5142 a residual unused let-binding. Don't use `unsafe' any more.
5143
5144 2013-08-29 Glenn Morris <rgm@gnu.org>
5145
5146 * calendar/cal-china.el (calendar-chinese-year-cache):
5147 Recenter on 2015.
5148
5149 * nxml/nxml-util.el (nxml-debug-clear-inside):
5150 Use cl-loop rather than loop.
5151
5152 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
5153
5154 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
5155
5156 2013-08-28 Glenn Morris <rgm@gnu.org>
5157
5158 * progmodes/antlr-mode.el: No need to require cc-mode twice.
5159
5160 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
5161
5162 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
5163
5164 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
5165
5166 * simple.el (repeat-complex-command--called-interactively-skip):
5167 New function.
5168 (repeat-complex-command): Use it (bug#14136).
5169
5170 * progmodes/cc-mode.el: Minor cleanup of var declarations.
5171 (c-define-abbrev-table): Add `doc' argument.
5172 (c-mode-abbrev-table, c++-mode-abbrev-table)
5173 (objc-mode-abbrev-table, java-mode-abbrev-table)
5174 (idl-mode-abbrev-table, pike-mode-abbrev-table)
5175 (awk-mode-abbrev-table): Use it.
5176 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
5177 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
5178 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
5179 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
5180 Move initialization into the declaration; and remove any
5181 autoload cookie.
5182
5183 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
5184 and dynamic let binding.
5185
5186 * vc/smerge-mode.el: Remove redundant :group args.
5187
5188 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
5189 to load-path.
5190
5191 2013-08-28 Juri Linkov <juri@jurta.org>
5192
5193 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
5194 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
5195 (isearch-other-meta-char): Handle an undefined shifted printing
5196 character by downshifting it. (Bug#15200)
5197
5198 2013-08-28 Juri Linkov <juri@jurta.org>
5199
5200 * isearch.el (isearch-search): Change regexp error message for
5201 non-regexp searches. (Bug#15166)
5202
5203 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
5204
5205 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
5206 for portability to hosts where /bin/sh has problems.
5207
5208 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
5209
5210 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
5211
5212 2013-08-27 Juri Linkov <juri@jurta.org>
5213
5214 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
5215 in the keyboard macro. (Bug#15126)
5216
5217 2013-08-27 Juri Linkov <juri@jurta.org>
5218
5219 * isearch.el (isearch-quote-char): Comment out converting unibyte
5220 to multibyte, thus syncing with its `quoted-insert' counterpart.
5221 (Bug#15166)
5222
5223 2013-08-27 Martin Rudalics <rudalics@gmx.at>
5224
5225 * window.el (display-buffer-use-some-window): Add missing
5226 argument in call of get-largest-window (Bug#15185).
5227 Reported by Stephen Leake.
5228
5229 2013-08-27 Glenn Morris <rgm@gnu.org>
5230
5231 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
5232
5233 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
5234
5235 * progmodes/python.el (python-font-lock-keywords): Don't return nil
5236 from a matcher-function unless there's no more matches (bug#15161).
5237
5238 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
5239
5240 * minibuffer.el: Revert change from 2013-08-20.
5241
5242 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
5243 with text property `tramp-default', if appropriate.
5244 (tramp-check-proper-host): New defun.
5245 (tramp-dissect-file-name): Do not check hostname. Revert change
5246 of 2013-03-18.
5247 (tramp-backtrace): Make VEC-OR-PROC optional.
5248
5249 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
5250 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
5251 * net/tramp-sh.el (tramp-maybe-open-connection):
5252 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
5253 Apply `tramp-check-proper-host'.
5254
5255 2013-08-26 Tassilo Horn <tsdh@gnu.org>
5256
5257 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
5258 lambda expression in order to have `describe-variable' display it.
5259
5260 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
5261
5262 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
5263 BUF can be optional. (Bug#15186)
5264
5265 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
5266
5267 * progmodes/flymake.el (flymake-get-real-file-name-function):
5268 Fix broken customization. (Bug#15184)
5269
5270 2013-08-25 Alan Mackenzie <acm@muc.de>
5271
5272 Improve indentation of bracelists defined by macros (without "=").
5273
5274 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
5275 expansion begins with "{", regard it as bracelist when it doesn't
5276 contain a ";".
5277
5278 Parse C++ inher-intro when there's a template split over 2 lines.
5279
5280 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
5281 rigorously the search for "class" etc. followed by ":".
5282
5283 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
5284 random languages a regexp which never matches rather than nil.
5285
5286 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
5287
5288 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
5289 (c-awk-regexp-one-line-possibly-open-char-list-re)
5290 (c-awk-one-line-possibly-open-regexp-re)
5291 (c-awk-one-line-non-syn-ws*-re): Remove.
5292 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
5293 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
5294 (c-awk-space*-unclosed-regexp-/-re): New constants.
5295 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
5296 aren't regexp delimiters.
5297
5298 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
5299 handling for a rare situation in AWK Mode involving unterminated
5300 strings/regexps.
5301
5302 2013-08-23 Glenn Morris <rgm@gnu.org>
5303
5304 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
5305
5306 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
5307
5308 * files.el (create-file-buffer): If the result would begin with
5309 spaces, prepend a "|" instead of removing them. (Bug#15162)
5310
5311 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
5312
5313 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
5314 text-properties (bug#15155).
5315
5316 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
5317 exist any more.
5318 (calc-keypad-redraw): Remove unused var `pad'.
5319 (calc-keypad-press): Remove unused var `menu'.
5320
5321 2013-08-23 Martin Rudalics <rudalics@gmx.at>
5322
5323 * window.el (display-buffer-pop-up-frame):
5324 Call pop-up-frame-function with BUFFER current so `make-frame' will
5325 use it as the new frame's buffer (Bug#15133).
5326
5327 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
5328
5329 * calendar/timeclock.el: Minor cleanups.
5330 (timeclock-ask-before-exiting, timeclock-use-display-time):
5331 Use `symbol'.
5332 (timeclock-modeline-display): Define as alias before the
5333 actual definition.
5334 (timeclock-mode-line-display): Use define-minor-mode.
5335 (timeclock-day-list-template): Make it a function, add an argument.
5336 (timeclock-day-list-required, timeclock-day-list-length)
5337 (timeclock-day-list-debt, timeclock-day-list-span)
5338 (timeclock-day-list-break): Adjust calls accordingly.
5339
5340 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
5341
5342 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
5343 Use read--expression so that completion works again.
5344
5345 2013-08-21 Sam Steingold <sds@gnu.org>
5346
5347 Add rudimentary inferior shell interaction
5348 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
5349 (sh-set-shell): Reset it.
5350 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
5351 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
5352
5353 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
5354
5355 * align.el: Use lexical-binding.
5356 (align-region): Simplify accordingly.
5357
5358 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
5359
5360 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
5361
5362 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
5363 `non-essential' up.
5364
5365 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
5366
5367 * net/tramp.el:
5368 * net/tramp-adb.el:
5369 * net/tramp-cmds.el:
5370 * net/tramp-ftp.el:
5371 * net/tramp-gvfs.el:
5372 * net/tramp-gw.el:
5373 * net/tramp-sh.el: Don't wrap external variable declarations by
5374 `eval-when-compile'.
5375
5376 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
5377
5378 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
5379 now that Emacs supports ImageMagick animations.
5380
5381 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
5382
5383 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
5384 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
5385
5386 2013-08-16 Martin Rudalics <rudalics@gmx.at>
5387
5388 * window.el (mouse-autoselect-window-select): Do autoselect when
5389 mouse pointer is on margin.
5390
5391 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
5392
5393 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
5394
5395 2013-08-16 Glenn Morris <rgm@gnu.org>
5396
5397 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
5398 Handle "Remote Directory" response of some clients. (Bug#15058)
5399
5400 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
5401 Tweak warning. (Bug#14926)
5402
5403 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
5404 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
5405
5406 * image-mode.el (image-mode-map): Add menu items to reverse,
5407 increase, decrease, reset animation speed.
5408 (image--set-speed, image-increase-speed, image-decrease-speed)
5409 (image-reverse-speed, image-reset-speed): New functions.
5410 (image-mode-map): Add bindings for speed commands.
5411
5412 * image.el (image-animate-get-speed, image-animate-set-speed):
5413 New functions.
5414 (image-animate-timeout): Respect image :speed property.
5415
5416 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
5417
5418 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
5419 previous line (bug#15101).
5420 (debugger-eval-expression, debugger-record-expression):
5421 Use read--expression (bug#15102).
5422
5423 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
5424
5425 Remove byte compiler warnings, visible when compiling with
5426 `byte-compile-force-lexical-warnings' set to t.
5427
5428 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
5429 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
5430 (tramp-handle-unhandled-file-name-directory)
5431 (tramp-handle-file-notify-add-watch, tramp-action-login)
5432 (tramp-action-succeed, tramp-action-permission-denied)
5433 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
5434 arguments with "_".
5435
5436 * net/tramp-adb.el (tramp-adb-parse-device-names)
5437 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
5438 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
5439 (tramp-adb-handle-file-truename): Remove unused arguments.
5440
5441 * net/tramp-cache.el (tramp-flush-directory-property)
5442 (tramp-flush-connection-property, tramp-list-connections)
5443 (tramp-parse-connection-properties): Prefix unused arguments with "_".
5444
5445 * net/tramp-compat.el (tramp-compat-make-temp-file):
5446 Rename FILENAME to F.
5447
5448 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
5449 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
5450 (tramp-zeroconf-parse-workstation-device-names)
5451 (tramp-zeroconf-parse-webdav-device-names)
5452 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
5453
5454 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
5455 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
5456
5457 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
5458 arguments.
5459 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
5460 (tramp-sh-handle-insert-file-contents-literally)
5461 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
5462 with "_".
5463 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
5464 Remove unused variables.
5465
5466 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
5467 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
5468 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
5469
5470 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
5471 Make them a defconst.
5472 (tramp-uuencode-region): Remove unused variable.
5473
5474 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
5475
5476 * frameset.el (frameset--prop-setter): New function.
5477 (frameset-prop): Add gv-setter declaration.
5478 (frameset-filter-minibuffer): Deal with the case that the minibuffer
5479 parameter was already set in FILTERED. Doc fix.
5480 (frameset--record-minibuffer-relationships): Allow saving a
5481 minibufferless frame without its corresponding minibuffer frame.
5482 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
5483 frame, if the frame id matches.
5484 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
5485 frames before orphaned ones.
5486 (frameset-restore): Warn about orphaned windows, instead of error out.
5487
5488 2013-08-14 Martin Rudalics <rudalics@gmx.at>
5489
5490 * window.el (window-make-atom): Don't overwrite parameter
5491 already present.
5492 (display-buffer-in-atom-window): Handle special case where we
5493 split an already atomic window.
5494 (window--major-non-side-window, display-buffer-in-side-window)
5495 (window--side-check): Ignore minibuffer window when walking
5496 window tree.
5497 (window-deletable-p): Return 'frame only if no other frame uses
5498 our minibuffer window.
5499 (record-window-buffer): Run buffer-list-update-hook.
5500 (split-window): Make sure window--check-frame won't destroy an
5501 existing atomic window in case the new window gets nested
5502 inside.
5503 (display-buffer-at-bottom): Ignore minibuffer window when
5504 walking window tree. Don't split a side window.
5505 (pop-to-buffer): Don't set-buffer here, the select-window call
5506 should do that.
5507 (mouse-autoselect-window-select): Autoselect only if we are in the
5508 text portion of the window.
5509
5510 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
5511
5512 * net/shr.el (shr-parse-image-data): New function to grab both the
5513 data itself and the Content-Type.
5514 (shr-put-image): Use it.
5515
5516 * net/eww.el (eww-display-image): Ditto.
5517
5518 * image.el (image-content-type-suffixes): New variable.
5519
5520 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
5521
5522 * progmodes/python.el (python-imenu--build-tree)
5523 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
5524
5525 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
5526
5527 * simple.el (backward-word): Mention the optional argument.
5528
5529 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
5530
5531 * frameset.el (frameset--make): Rename constructor from make-frameset.
5532 (frameset-p, frameset-valid-p): Don't autoload.
5533 (frameset-valid-p): Use normal accessors.
5534
5535 2013-08-13 Glenn Morris <rgm@gnu.org>
5536
5537 * progmodes/compile.el (compile-command): Tweak example in doc.
5538 * obsolete/scribe.el (scribe-mode):
5539 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
5540
5541 * mail/feedmail.el (feedmail-confirm-outgoing)
5542 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
5543
5544 * cus-start.el (truncate-partial-width-windows): Fix type.
5545
5546 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
5547
5548 * net/shr.el (shr-table-horizontal-line): Fix custom type.
5549
5550 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
5551
5552 * emacs-lisp/timer.el (timer--time-setter): New function.
5553 (timer--time): Use it as gv-setter.
5554
5555 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
5556 setter is not a symbol.
5557
5558 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
5559
5560 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
5561 if sending fails. This makes debugging easier.
5562
5563 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
5564
5565 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
5566 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
5567 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
5568
5569 2013-08-12 Eli Zaretskii <eliz@gnu.org>
5570
5571 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
5572
5573 2013-08-12 Glenn Morris <rgm@gnu.org>
5574
5575 * format.el (format-annotate-function):
5576 Handle read-only text properties in the source. (Bug#14887)
5577
5578 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
5579
5580 * net/eww.el (eww-display-html): Ignore coding system errors.
5581 One web site uses "utf-8lias" as the coding system.
5582
5583 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
5584
5585 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
5586
5587 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
5588
5589 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
5590 (tutorial--detailed-help): Remove unused local variables.
5591 (tutorial--save-tutorial-to): Use ignore-errors.
5592 (help-with-tutorial): Use looking-at-p.
5593
5594 * view.el (view-buffer-other-window, view-buffer-other-frame):
5595 Mark unused arguments.
5596
5597 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
5598 (woman-select-symbol-fonts, woman, woman-find-file)
5599 (woman-insert-file-contents, woman-non-underline-faces):
5600 Use string-match-p.
5601 (woman1-unquote): Move declaration.
5602
5603 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
5604 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
5605 argument. Remove unused local variable.
5606 (xml-parse-elem-type): Use string-match-p.
5607 (xml-substitute-numeric-entities): Use ignore-errors.
5608
5609 * calculator.el (calculator): Mark unused argument.
5610 (calculator-paste, calculator-quit, calculator-integer-p):
5611 Use ignore-errors.
5612 (calculator-string-to-number, calculator-decimal, calculator-exp)
5613 (calculator-op-or-exp): Use string-match-p.
5614
5615 * dired.el (dired-buffer-more-recently-used-p): Declare.
5616 (dired-insert-set-properties, dired-insert-old-subdirs):
5617 Use ignore-errors.
5618
5619 * dired-aux.el (dired-compress): Use ignore-errors.
5620 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
5621 (dired-do-async-shell-command, dired-do-shell-command)
5622 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
5623 (dired-insert-subdir-validate): Use string-match-p.
5624 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
5625 (dired-add-entry): Use string-match-p, looking-at-p.
5626 (dired-insert-subdir-newpos): Remove unused local variable.
5627
5628 * filenotify.el (file-notify-callback): Remove unused local variable.
5629
5630 * filesets.el (filesets-error): Mark unused argument.
5631 (filesets-which-command-p, filesets-filter-dir-names)
5632 (filesets-directory-files, filesets-get-external-viewer)
5633 (filesets-ingroup-get-data): Use string-match-p.
5634
5635 * find-file.el (ff-other-file-name, ff-other-file-name)
5636 (ff-find-the-other-file, ff-cc-hh-converter):
5637 Remove unused local variables.
5638 (ff-get-file-name): Use string-match-p.
5639 (ff-all-dirs-under): Use ignore-errors.
5640
5641 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
5642 (follow-select-if-visible): Remove unused local variable.
5643
5644 * forms.el (read-file-filter): Move declaration.
5645 (forms--make-format, forms--make-parser, forms-insert-record):
5646 Quote function with #'.
5647 (forms--update): Use string-match-p. Quote function with #'.
5648
5649 * help-mode.el (help-dir-local-var-def): Mark unused argument.
5650 (help-make-xrefs): Use looking-at-p.
5651 (help-xref-on-pp): Use looking-at-p, ignore-errors.
5652
5653 * ibuffer.el (ibuffer-ext-visible-p): Declare.
5654 (ibuffer-confirm-operation-on): Use string-match-p.
5655
5656 * msb.el (msb-item-handler, msb-dired-item-handler):
5657 Mark unused arguments.
5658
5659 * ses.el (ses-decode-cell-symbol)
5660 (ses-kill-override): Remove unused local variable.
5661 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
5662 (ses-load): Use ignore-errors, looking-at-p.
5663 (ses-jump-safe): Use ignore-errors.
5664 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
5665
5666 * tabify.el (untabify, tabify): Mark unused arguments.
5667
5668 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
5669 Mark unused argument.
5670 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
5671 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
5672
5673 * emacs-lisp/timer.el (timer--time): Define setter with
5674 gv-define-setter to avoid deprecation warning.
5675
5676 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
5677 (*record-cmpl-statistics-p*): Remove (was commented out).
5678 (cmpl-statistics-block): Remove (body was commented out).
5679 All callers changed.
5680 (add-completions-from-buffer, load-completions-from-file):
5681 Remove unused variables.
5682
5683 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
5684
5685 * filecache.el (file-cache-delete-file-list):
5686 Print message only when told so.
5687 (file-cache-files-matching): Use #' in mapconcat argument.
5688
5689 * ffap.el (ffap-url-at-point): Fix reference to variable
5690 thing-at-point-default-mail-uri-scheme.
5691
5692 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
5693
5694 * subr.el (define-error): New function.
5695 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
5696 error-file-not-found and define with define-error.
5697 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
5698 and define with define-error.
5699 * userlock.el (file-locked, file-supersession):
5700 * simple.el (mark-inactive):
5701 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
5702 * progmodes/ada-mode.el (ada-mode-errors):
5703 * play/life.el (life-extinct):
5704 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
5705 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
5706 * nxml/rng-util.el (rng-error):
5707 * nxml/rng-uri.el (rng-uri-error):
5708 * nxml/rng-match.el (rng-compile-error):
5709 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
5710 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
5711 * nxml/nxml-rap.el (nxml-scan-error):
5712 * nxml/nxml-outln.el (nxml-outline-error):
5713 * net/soap-client.el (soap-error):
5714 * net/gnutls.el (gnutls-error):
5715 * net/ange-ftp.el (ftp-error):
5716 * mpc.el (mpc-proc-error):
5717 * json.el (json-error, json-readtable-error, json-unknown-keyword)
5718 (json-number-format, json-string-escape, json-string-format)
5719 (json-key-format, json-object-format):
5720 * jka-compr.el (compression-error):
5721 * international/quail.el (quail-error):
5722 * international/kkc.el (kkc-error):
5723 * emacs-lisp/ert.el (ert-test-failed):
5724 * calc/calc.el (calc-error, inexact-result, math-overflow)
5725 (math-underflow):
5726 * bookmark.el (bookmark-error-no-filename):
5727 * epg.el (epg-error): Define with define-error.
5728
5729 * time.el (display-time-event-handler)
5730 (display-time-next-load-average): Don't call sit-for since it seems
5731 unnecessary (bug#15045).
5732
5733 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
5734 Use #' instead of ' to quote functions.
5735 (checkdoc-output-mode): Use setq-local.
5736 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
5737 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
5738 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
5739 (checkdoc-ispell, checkdoc-ispell-current-buffer)
5740 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
5741 (checkdoc-ispell-message-text, checkdoc-ispell-start)
5742 (checkdoc-ispell-continue, checkdoc-ispell-comments)
5743 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
5744
5745 * ido.el (ido-completion-help): Fix up compiler warning.
5746
5747 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
5748
5749 * frameset.el (frameset-p): Add autoload cookie.
5750 (frameset--jump-to-register): New function, based on code moved from
5751 register.el.
5752 (frameset-to-register): Move from register.el. Adapt to `registerv'.
5753
5754 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
5755 (frameset-restore, frameset-save, frameset-session-filter-alist):
5756 Remove declarations.
5757 (register-alist): Doc fix.
5758 (frameset-to-register): Move to frameset.el.
5759 (jump-to-register, describe-register-1): Remove frameset-specific code.
5760
5761 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
5762
5763 * allout-widgets.el (allout-widgets-pre-command-business)
5764 (allout-widgets-post-command-business)
5765 (allout-widgets-after-change-handler)
5766 (allout-decorate-item-and-context, allout-set-boundary-marker)
5767 (allout-body-modification-handler)
5768 (allout-graphics-modification-handler): Mark ignored arguments.
5769 (allout-widgets-post-command-business)
5770 (allout-widgets-exposure-change-processor)
5771 (allout-widgets-exposure-undo-processor)
5772 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
5773 (allout-parse-item-at-point, allout-decorate-item-guides)
5774 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
5775 * allout.el (epa-passphrase-callback-function): Declare.
5776 (allout-overlay-insert-in-front-handler)
5777 (allout-overlay-interior-modification-handler)
5778 (allout-isearch-end-handler, allout-chart-siblings)
5779 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
5780 (allout-yank-processing, allout-process-exposed)
5781 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
5782 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
5783 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
5784 (lisp-indent-defform): Mark ignored arguments.
5785 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
5786 (calculate-lisp-indent): Remove unused variables.
5787 * international/characters.el (indian-2-column, arabic-2-column)
5788 (tibetan): Mark ignored arguments.
5789 (use-cjk-char-width-table): Mark ignored arguments.
5790 Remove unused variables.
5791 * international/fontset.el (build-default-fontset-data)
5792 (x-compose-font-name, create-fontset-from-fontset-spec):
5793 Mark ignored arguments.
5794 (fontset-plain-name): Remove unused variables.
5795 * international/mule.el (charset-id, charset-bytes, generic-char-p)
5796 (keyboard-coding-system): Mark ignored arguments.
5797 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
5798 * help.el (resize-temp-buffer-window):
5799 * window.el (display-buffer-in-major-side-window)
5800 (display-buffer-in-side-window, display-buffer-in-previous-window):
5801 Remove unused variables.
5802 * isearch.el (isearch-forward-symbol):
5803 * version.el (emacs-bzr-version-bzr):
5804 * international/mule-cmds.el (current-language-environment):
5805 * term/common-win.el (x-handle-iconic, x-handle-geometry)
5806 (x-handle-display):
5807 * term/pc-win.el (x-list-fonts, x-display-planes)
5808 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
5809 (x-server-version, x-display-screens, x-display-mm-height)
5810 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
5811 (x-selection-owner-p, x-own-selection-internal)
5812 (x-disown-selection-internal, x-get-selection-internal)
5813 (msdos-initialize-window-system):
5814 * term/tty-colors.el (tty-color-alist, tty-color-clear):
5815 * term/x-win.el (x-handle-no-bitmap-icon):
5816 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
5817 (vc-default-find-file-hook, vc-default-extra-menu):
5818 Mark ignored arguments.
5819
5820 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
5821
5822 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
5823 break-condition in the context of the debugged code (bug#12685).
5824
5825 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
5826
5827 * comint.el:
5828 Do not use an overlay to highlight the last prompt. (Bug#14744)
5829 (comint-mode): Make comint-last-prompt buffer local.
5830 (comint-last-prompt): New variable.
5831 (comint-last-prompt-overlay): Remove. Superseded by
5832 comint-last-prompt.
5833 (comint-snapshot-last-prompt, comint-output-filter):
5834 Use comint-last-prompt.
5835
5836 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
5837
5838 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
5839 (frameset-save): Check validity of the resulting frameset.
5840
5841 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
5842
5843 * ido.el (ido-record-command): Add doc string.
5844
5845 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
5846
5847 * frameset.el (frameset): Do not disable creation of the default
5848 frameset-p predicate. Doc fix.
5849 (frameset-valid-p): New function, copied from the old predicate-p.
5850 Add additional checks.
5851 (frameset-restore): Check with frameset-valid-p.
5852 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
5853 (frameset-name, frameset-description, frameset-properties)
5854 (frameset-states): Add docstring.
5855 (frameset-session-filter-alist, frameset-persistent-filter-alist)
5856 (frameset-filter-alist): Doc fixes.
5857
5858 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
5859
5860 * frameset.el (frameset-p, frameset-prop): Doc fixes.
5861
5862 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
5863
5864 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
5865 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
5866 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
5867 (byte-compile-normal-call): Remove obsolescence check.
5868
5869 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
5870
5871 * frameset.el (frameset-restore): Doc fix.
5872
5873 * register.el (frameset-frame-id, frameset-frame-with-id)
5874 (frameset-p, frameset-restore, frameset-save): Declare.
5875 (register-alist): Document framesets.
5876 (frameset-session-filter-alist): Declare.
5877 (frameset-to-register): New function.
5878 (jump-to-register): Implement jumping to framesets. Doc fix.
5879 (describe-register-1): Describe framesets.
5880
5881 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
5882
5883 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
5884
5885 * desktop.el (desktop-save-frameset): Use new frameset-save args.
5886 Use lexical-binding.
5887
5888 * frameset.el (frameset): Use type vector, not list (incompatible
5889 change). Do not declare a new constructor, use the default one.
5890 Upgrade suggested properties `app', `name' and `desc' to slots `app',
5891 `name' and `description', respectively, and add read-only slot
5892 `timestamp'. Doc fixes.
5893 (frameset-copy, frameset-persistent-filter-alist)
5894 (frameset-filter-alist, frameset-switch-to-gui-p)
5895 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
5896 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
5897 (frameset-filter-iconified, frameset-keep-original-display-p):
5898 Doc fixes.
5899 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
5900 Rename from frameset-filter-(save|restore)-param. All callers changed.
5901 Doc fix.
5902 (frameset-p): Adapt to change to vector and be more thorough.
5903 Change arg name to OBJECT. Doc fix.
5904 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
5905 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
5906 All callers changed.
5907 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
5908 All callers changed.
5909 (frameset--record-minibuffer-relationships): Rename from
5910 frameset--process-minibuffer-frames. All callers changed.
5911 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
5912 Use new default constructor (again). Doc fix.
5913 (frameset--find-frame-if): Rename from `frameset--find-frame.
5914 All callers changed.
5915 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
5916 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
5917 Doc fix.
5918 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
5919 PARAMETERS and WINDOW-STATE, respectively.
5920 (frameset-restore): Add new keyword argument PREDICATE.
5921 Reset frameset--target-display to nil. Doc fix.
5922
5923 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
5924
5925 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
5926 (bat-mode): Use it.
5927 (bat-mode-syntax-table): Mark \n as end-of-comment.
5928 (bat-font-lock-keywords): Remove comment rule.
5929
5930 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
5931 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
5932
5933 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
5934 (byte-compile-callargs-warn): Use `push'.
5935 (byte-compile-arglist-warn): Ignore higher-order "calls".
5936 (byte-compile-file-form-autoload): Use `pcase'.
5937 (byte-compile-function-form): If quoting a symbol, check that it exists.
5938
5939 2013-08-07 Eli Zaretskii <eliz@gnu.org>
5940
5941 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
5942 and add a few popular commands found in batch files.
5943 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
5944 (dos-mode): Doc fixes.
5945
5946 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
5947
5948 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
5949 (dos-mode): Use setq-local. Add space after "rem".
5950 (dos-mode-syntax-table): Don't use "w" for symbol chars.
5951 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
5952
5953 2013-08-07 Arni Magnusson <arnima@hafro.is>
5954
5955 * progmodes/dos.el: New file.
5956 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
5957 dos-mode.
5958
5959 2013-08-06 Glenn Morris <rgm@gnu.org>
5960
5961 * calendar/calendar.el: Add new faces, and day-header-array.
5962 (calendar-weekday-header, calendar-weekend-header)
5963 (calendar-month-header): New faces.
5964 (calendar-day-header-construct): New function.
5965 (calendar-day-header-width): Also :set calendar-day-header-array.
5966 (calendar-american-month-header, calendar-european-month-header)
5967 (calendar-iso-month-header): Use calendar- faces.
5968 (calendar-generate-month):
5969 Use calendar-day-header-array for day headers; apply faces to them.
5970 (calendar-mode): Check calendar-font-lock-keywords non-nil.
5971 (calendar-abbrev-construct): Add optional maxlen argument.
5972 (calendar-day-name-array): Doc fix.
5973 (calendar-day-name-array, calendar-abbrev-length)
5974 (calendar-day-abbrev-array):
5975 Also :set calendar-day-header-array, and maybe redraw.
5976 (calendar-day-header-array): New option. (Bug#15007)
5977 (calendar-font-lock-keywords): Set to nil and make obsolete.
5978 (calendar-day-name): Add option to use header array.
5979
5980 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
5981
5982 * net/shr.el (shr-render-td): Remove debugging.
5983 (shr-render-td): Make width computation consistent by defaulting
5984 all zero-width columns to 10 characters. This may not be optimal,
5985 but it's at least consistent.
5986 (shr-make-table-1): Redo last change to fix the real problem in
5987 colspan handling.
5988
5989 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5990
5991 * files.el (cache-long-line-scans):
5992 Make obsolete alias to `cache-long-scans'.
5993
5994 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
5995
5996 * frameset.el (frameset, frameset-filter-alist)
5997 (frameset-filter-params, frameset-save, frameset--reuse-frame)
5998 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
5999 (frameset-compute-pos): Rename from frameset--compute-pos,
6000 and add docstring.
6001 (frameset-move-onscreen): Use frameset-compute-pos.
6002 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
6003
6004 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
6005 Fix typos in docstrings.
6006
6007 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
6008
6009 * frame.el (get-other-frame): Tiny cleanup.
6010
6011 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
6012
6013 * vc/vc.el (vc-default-ignore-completion-table):
6014 Silence byte-compiler warning.
6015
6016 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
6017 slot , which can indeed be nil.
6018 (frameset-live-filter-alist, frameset-persistent-filter-alist):
6019 Move entry for `left' from persistent to live filter alist.
6020 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
6021 Doc fixes.
6022 (frameset-filter-params): When restoring a frame, copy items added to
6023 `filtered', to avoid unwittingly modifying the original parameters.
6024 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
6025 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
6026
6027 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
6028 to use looking-at-p instead of looking-at. (Bug#15028)
6029
6030 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
6031
6032 Revert introduction of isearch-filter-predicates (bug#14714).
6033 Rely on add-function instead.
6034 * isearch.el (isearch-filter-predicates): Rename it back to
6035 isearch-filter-predicate.
6036 (isearch-message-prefix): Use advice-function-mapc and advice
6037 properties to get the isearch-message-prefix.
6038 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
6039 instead of run-hook-with-args-until-failure.
6040 (isearch-filter-visible): Not obsolete any more.
6041 * loadup.el: Preload nadvice.
6042 * replace.el (perform-replace): Revert to funcall
6043 instead of run-hook-with-args-until-failure.
6044 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
6045 * dired-aux.el (dired-isearch-filenames-mode): Rename from
6046 dired-isearch-filenames-toggle; make it into a proper minor mode.
6047 Use add/remove-function.
6048 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
6049 Call the minor-mode rather than add/remove-hook.
6050 (dired-isearch-filter-filenames):
6051 Remove isearch-message-prefix property.
6052 * info.el (Info--search-loop): New function, extracted from Info-search.
6053 Funcall isearch-filter-predicate instead of
6054 run-hook-with-args-until-failure isearch-filter-predicates.
6055 (Info-search): Use it.
6056 (Info-mode): Use isearch-filter-predicate instead of
6057 isearch-filter-predicates.
6058
6059 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
6060
6061 Do not call to `selected-window' where it is assumed by default.
6062 Affected functions are `window-minibuffer-p', `window-dedicated-p',
6063 `window-hscroll', `window-width', `window-height', `window-buffer',
6064 `window-frame', `window-start', `window-point', `next-window'
6065 and `window-display-table'.
6066 * abbrev.el (abbrev--default-expand):
6067 * bs.el (bs--show-with-configuration):
6068 * buff-menu.el (Buffer-menu-mouse-select):
6069 * calc/calc.el (calc):
6070 * calendar/calendar.el (calendar-generate-window):
6071 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
6072 (diary-make-entry):
6073 * comint.el (send-invisible, comint-dynamic-complete-filename)
6074 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
6075 * completion.el (complete):
6076 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
6077 * disp-table.el (describe-current-display-table):
6078 * doc-view.el (doc-view-insert-image):
6079 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
6080 * ehelp.el (with-electric-help):
6081 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
6082 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
6083 * emacs-lisp/helper.el (Helper-help-scroller):
6084 * emulation/cua-base.el (cua--post-command-handler-1):
6085 * eshell/esh-mode.el (eshell-output-filter):
6086 * ffap.el (ffap-gnus-wrapper):
6087 * help-macro.el (make-help-screen):
6088 * hilit-chg.el (highlight-compare-buffers):
6089 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
6090 * hl-line.el (global-hl-line-highlight):
6091 * icomplete.el (icomplete-simple-completing-p):
6092 * isearch.el (isearch-done):
6093 * jit-lock.el (jit-lock-stealth-fontify):
6094 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
6095 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
6096 * mpc.el (mpc-tagbrowser, mpc):
6097 * net/rcirc.el (rcirc-any-buffer):
6098 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
6099 * play/landmark.el (landmark-max-width, landmark-max-height):
6100 * play/zone.el (zone):
6101 * progmodes/compile.el (compilation-goto-locus):
6102 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
6103 * progmodes/etags.el (find-tag-other-window):
6104 * progmodes/fortran.el (fortran-column-ruler):
6105 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
6106 * progmodes/verilog-mode.el (verilog-point-text):
6107 * reposition.el (reposition-window):
6108 * rot13.el (toggle-rot13-mode):
6109 * server.el (server-switch-buffer):
6110 * shell.el (shell-dynamic-complete-command)
6111 (shell-dynamic-complete-environment-variable):
6112 * simple.el (insert-buffer, set-selective-display)
6113 (delete-completion-window):
6114 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
6115 (speedbar-recenter):
6116 * startup.el (fancy-splash-head):
6117 * textmodes/ispell.el (ispell-command-loop):
6118 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
6119 * tutorial.el (help-with-tutorial):
6120 * vc/add-log.el (add-change-log-entry):
6121 * vc/compare-w.el (compare-windows):
6122 * vc/ediff-help.el (ediff-indent-help-message):
6123 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
6124 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
6125 (ediff-setup-control-frame):
6126 * vc/emerge.el (emerge-position-region):
6127 * vc/pcvs-util.el (cvs-bury-buffer):
6128 * window.el (walk-windows, mouse-autoselect-window-select):
6129 * winner.el (winner-set-conf, winner-undo): Related users changed.
6130
6131 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
6132
6133 * frameset.el (frameset--set-id): Doc fix.
6134 (frameset-frame-id, frameset-frame-id-equal-p)
6135 (frameset-locate-frame-id): New functions.
6136 (frameset--process-minibuffer-frames, frameset--reuse-frame)
6137 (frameset-restore): Use them.
6138
6139 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
6140
6141 Do not call to `selected-frame' where it is assumed by default.
6142 Affected functions are `raise-frame', `redraw-frame',
6143 `frame-first-window', `frame-terminal' and `delete-frame'.
6144 * calendar/appt.el (appt-disp-window):
6145 * epg.el (epg-wait-for-completion):
6146 * follow.el (follow-delete-other-windows-and-split)
6147 (follow-avoid-tail-recenter):
6148 * international/mule.el (set-terminal-coding-system):
6149 * mail/rmail.el (rmail-mail-return):
6150 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
6151 * progmodes/f90.el (f90-add-imenu-menu):
6152 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
6153 * server.el (server-switch-buffer):
6154 * simple.el (delete-completion-window):
6155 * talk.el (talk):
6156 * term/xterm.el (terminal-init-xterm-modify-other-keys)
6157 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
6158 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
6159 * vc/ediff.el (ediff-documentation): Related users changed.
6160 * frame.el (selected-terminal): Remove the leftover.
6161
6162 2013-08-05 Glenn Morris <rgm@gnu.org>
6163
6164 * calendar/calendar.el (calendar-generate-month):
6165 Fix for calendar-column-width != 1 + calendar-day-digit-width.
6166 (calendar-generate-month, calendar-font-lock-keywords):
6167 Fix for calendar-day-header-width > length of any day name.
6168
6169 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
6170
6171 * desktop.el (desktop-clear): Use new name of sort predicate.
6172
6173 * frameset.el (frameset): Add docstring. Move :version property to its
6174 own `version' slot.
6175 (frameset-copy): Rename from copy-frameset.
6176 (frameset-p): Check more thoroughly.
6177 (frameset-prop): Do not check for :version, which is no longer a prop.
6178 (frameset-live-filter-alist, frameset-persistent-filter-alist):
6179 Use new :never value instead of t.
6180 (frameset-filter-alist): Expand and clarify docstring.
6181 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
6182 (frameset-filter-minibuffer, frameset-filter-save-param)
6183 (frameset-filter-restore-param, frameset-filter-iconified):
6184 Add pointer to docstring of frameset-filter-alist.
6185 (frameset-filter-params): Rename filter values to be more meaningful:
6186 :never instead of t, and reverse the meanings of :save and :restore.
6187 (frameset--process-minibuffer-frames): Clarify error message.
6188 (frameset-save): Avoid unnecessary and confusing call to framep.
6189 Use new BOA constructor for framesets.
6190 (frameset--reuse-list): Doc fix.
6191 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
6192 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
6193 (frameset-minibufferless-first-p): Doc fix.
6194 Rename from frameset-sort-frames-for-deletion.
6195 (frameset-restore): Doc fixes. Use new function names.
6196 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
6197
6198 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
6199
6200 * desktop.el (desktop-restore-forces-onscreen)
6201 (desktop-restore-reuses-frames): Document :keyword constant values.
6202 (desktop-filter-parameters-alist): Remove, now identical to
6203 frameset-filter-alist.
6204 (desktop--filter-tty*): Remove, moved to frameset.el.
6205 (desktop-save-frameset, desktop-restore-frameset):
6206 Do not pass :filters argument.
6207
6208 * frameset.el (frameset-live-filter-alist)
6209 (frameset-persistent-filter-alist): New variables.
6210 (frameset-filter-alist): Use them. Add autoload cookie.
6211 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
6212 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
6213 `frameset--id' (it's supposed to be internal to frameset.el).
6214 (frameset--process-minibuffer-frames): Ditto. Doc fix.
6215 (frameset--initial-params): New function.
6216 (frameset--get-frame): Use it. Doc fix.
6217 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
6218 Accept :all, not 'all.
6219 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
6220 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
6221 with fbound symbols. Fix frame id matching, and remove matching ids if
6222 the frame being restored is deleted. Obey :delete.
6223
6224 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
6225
6226 * subr.el (macrop): New function.
6227 (text-clone--maintaining): New var.
6228 (text-clone--maintain): Rename from text-clone-maintain. Use it
6229 instead of inhibit-modification-hooks.
6230
6231 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
6232 a proxy, so as handle autoloads and redefinitions of the target.
6233 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
6234
6235 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
6236 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
6237 (pcase--mutually-exclusive-p): New function.
6238 (pcase--split-consp): Use it.
6239 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
6240 mutually exclusive with the current predicate.
6241
6242 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
6243 (edebug-macrop): Remove. Use `macrop' instead.
6244 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
6245 (ad-macro-p):
6246 * eshell/esh-cmd.el (eshell-macrop):
6247 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
6248
6249 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
6250
6251 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
6252 (advice-mapc): New function, using it.
6253 (advice-function-member-p): New function.
6254 (advice--normalize): Store the cdr in advice--saved-rewrite since
6255 that's the part that will be changed.
6256 (advice--symbol-function): New function.
6257 (advice-remove): Handle removal before the function is defined.
6258 Adjust to new advice--saved-rewrite.
6259 (advice-member-p): Use advice-function-member-p and
6260 advice--symbol-function.
6261
6262 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
6263
6264 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
6265 (frameset-filter-minibuffer): Doc fix.
6266 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
6267 (frameset--set-id, frameset--process-minibuffer-frames)
6268 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
6269 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
6270
6271 * desktop.el (desktop-clear): Only delete frames when called
6272 interactively and desktop-restore-frames is non-nil. Doc fix.
6273 (desktop-read): Set desktop-saved-frameset to nil.
6274
6275 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
6276
6277 * vc/vc.el (vc-ignore): Rewrite.
6278 (vc-default-ignore-completion-table):
6279 (vc--read-lines):
6280 (vc--add-line, vc--remove-regexp): New functions.
6281
6282 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
6283 (vc-svn-ignore-completion-table): New function.
6284
6285 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
6286 (vc-hg-ignore-completion-table):
6287 (vc-hg-find-ignore-file): New functions.
6288
6289 * vc/vc-git.el (vc-git-ignore): Rewrite.
6290 (vc-git-ignore-completion-table):
6291 (vc-git-find-ignore-file): New functions.
6292
6293 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
6294
6295 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
6296 (vc-bzr-ignore-completion-table):
6297 (vc-bzr-find-ignore-file): New functions.
6298
6299 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
6300
6301 * frameset.el (frameset-prop): New function and setter.
6302 (frameset-save): Do not modify frame list passed by the caller.
6303
6304 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
6305
6306 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
6307
6308 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
6309
6310 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
6311 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
6312
6313 * custom.el (custom-initialize-default, custom-initialize-set)
6314 (custom-initialize-reset, custom-initialize-changed): Affect the
6315 toplevel-default-value (bug#6275, bug#14586).
6316 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
6317 for bug#6275.
6318
6319 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
6320
6321 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
6322 Add cl-def* expressions.
6323
6324 * frameset.el (frameset-filter-params): Fix order of arguments.
6325
6326 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
6327
6328 Move code related to saving frames to frameset.el.
6329 * desktop.el: Require frameset.
6330 (desktop-restore-frames): Doc fix.
6331 (desktop-restore-reuses-frames): Rename from
6332 desktop-restoring-reuses-frames.
6333 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
6334 (desktop-clear): Clear frames too.
6335 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
6336 (desktop--filter-tty*, desktop-save, desktop-read):
6337 Use frameset functions.
6338 (desktop-before-saving-frames-functions, desktop--filter-*-color)
6339 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
6340 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
6341 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
6342 (desktop--process-minibuffer-frames, desktop-save-frames)
6343 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
6344 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
6345 (desktop--sort-states, desktop-restoring-frames-p)
6346 (desktop-restore-frames): Remove. Most code moved to frameset.el.
6347 (desktop-restoring-frameset-p, desktop-restore-frameset)
6348 (desktop--check-dont-save, desktop-save-frameset): New functions.
6349 (desktop--app-id): New constant.
6350 (desktop-first-buffer, desktop-buffer-ok-count)
6351 (desktop-buffer-fail-count): Move before first use.
6352 * frameset.el: New file.
6353
6354 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
6355
6356 * files.el: Use lexical-binding.
6357 (dir-locals-read-from-file): Remove unused `err' variable.
6358 (hack-dir-local-variables--warned-coding): New var.
6359 (hack-dir-local-variables): Use it to avoid repeated warnings.
6360 (make-backup-file-name--default-function): New function.
6361 (make-backup-file-name-function): Use it as default.
6362 (buffer-stale--default-function): New function.
6363 (buffer-stale-function): Use it as default.
6364 (revert-buffer-insert-file-contents--default-function): New function.
6365 (revert-buffer-insert-file-contents-function): Use it as default.
6366 (insert-directory): Avoid add-to-list.
6367
6368 * autorevert.el (auto-revert-handler): Simplify.
6369 Use buffer-stale--default-function.
6370
6371 2013-08-01 Tassilo Horn <tsdh@gnu.org>
6372
6373 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
6374
6375 * whitespace.el (whitespace-ensure-local-variables): New function.
6376 (whitespace-cleanup-region): Call it.
6377 (whitespace-turn-on): Call it.
6378
6379 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
6380
6381 Complete file name handlers.
6382
6383 * net/tramp.el (tramp-handle-set-visited-file-modtime)
6384 (tramp-handle-verify-visited-file-modtime)
6385 (tramp-handle-file-notify-rm-watch): New functions.
6386 (tramp-call-process): Do not bind `default-directory'.
6387
6388 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
6389 Order alphabetically.
6390 [access-file, add-name-to-file, dired-call-process]:
6391 [dired-compress-file, file-acl, file-notify-rm-watch]:
6392 [file-ownership-preserved-p, file-selinux-context]:
6393 [make-directory-internal, make-symbolic-link, set-file-acl]:
6394 [set-file-selinux-context, set-visited-file-modtime]:
6395 [verify-visited-file-modtime]: Add handler.
6396 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
6397
6398 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
6399 [file-notify-add-watch, file-notify-rm-watch]:
6400 [set-file-times, set-visited-file-modtime]:
6401 [verify-visited-file-modtime]: Add handler.
6402 (with-tramp-gvfs-error-message)
6403 (tramp-gvfs-handle-set-visited-file-modtime)
6404 (tramp-gvfs-fuse-file-name): Remove.
6405 (tramp-gvfs-handle-file-notify-add-watch)
6406 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
6407 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
6408
6409 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6410 Order alphabetically.
6411 [file-notify-rm-watch ]: Use default Tramp handler.
6412 [executable-find]: Remove private handler.
6413 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
6414 `default-directory'.
6415 (tramp-sh-handle-executable-find)
6416 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
6417 (tramp-sh-file-gvfs-monitor-dir-process-filter)
6418 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
6419 Do not use `format' in `tramp-message'.
6420
6421 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
6422 [file-notify-rm-watch, set-visited-file-modtime]:
6423 [verify-visited-file-modtime]: Add handler.
6424 (tramp-smb-call-winexe): Do not bind `default-directory'.
6425
6426 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
6427
6428 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
6429
6430 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
6431
6432 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
6433 use it.
6434 (log-view-diff-changeset): Same.
6435 (log-view-diff-common): Call backend command `previous-revision'
6436 to find out the previous revision, in both cases. Swap the
6437 variables `to' and `fr', so that `fr' usually refers to the
6438 earlier revision (Bug#14989).
6439
6440 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
6441
6442 * ibuf-ext.el (ibuffer-filter-by-filename):
6443 Make it work with dired buffers too.
6444
6445 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
6446
6447 * emacs-lisp/re-builder.el (reb-color-display-p):
6448 * files.el (save-buffers-kill-terminal):
6449 * net/browse-url.el (browse-url):
6450 * server.el (server-save-buffers-kill-terminal):
6451 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
6452 Prefer nil to selected-frame for the first arg of frame-parameter.
6453
6454 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
6455
6456 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
6457
6458 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
6459
6460 * minibuffer.el (completion--twq-all): Try and preserve each
6461 completion's case choice (bug#14907).
6462
6463 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
6464
6465 * net/network-stream.el (open-network-stream): Mention the new
6466 :nogreeting parameter.
6467 (network-stream-open-starttls): Use the :nogreeting parameter
6468 (bug#14938).
6469
6470 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
6471
6472 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
6473 more natural than popping.
6474
6475 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
6476 (shr-urlify): Highlight under mouse.
6477
6478 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
6479
6480 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
6481
6482 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
6483
6484 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
6485 buffer for output.
6486
6487 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
6488 point-min==1. Fix search string. Fix parentheses missing.
6489
6490 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
6491 assume point-min==1. Fix search string. Fix parentheses missing.
6492
6493 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
6494
6495 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
6496 buffer for output.
6497
6498 2013-07-29 Eli Zaretskii <eliz@gnu.org>
6499
6500 * frame.el (frame-notice-user-settings): Avoid inflooping when the
6501 initial frame is minibuffer-less. (Bug#14841)
6502
6503 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
6504
6505 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
6506 option.
6507
6508 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
6509 (tramp-maybe-open-connection): Use it.
6510
6511 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
6512
6513 * desktop.el (desktop--make-frame): Include `minibuffer' in the
6514 minimal set of parameters passed when creating a frame, because
6515 the minibuffer status of a frame cannot be changed later.
6516
6517 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
6518
6519 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
6520 replace-regexp-in-string and inadvertent omissions in previous change.
6521 (todo-filter-items): Ensure only file names are comma-separated in
6522 name of filtered items buffer.
6523
6524 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
6525
6526 * desktop.el: Optionally force offscreen frames back onscreen.
6527 (desktop-restoring-reuses-frames): New option.
6528 (desktop--compute-pos, desktop--move-onscreen): New functions.
6529 (desktop--make-frame): Use desktop--move-onscreen.
6530
6531 2013-07-27 Alan Mackenzie <acm@muc.de>
6532
6533 Fontify a Java generic method as a function.
6534 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
6535 value to t.
6536
6537 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
6538
6539 * calendar/todo-mode.el: Add command to rename todo files.
6540 (todo-rename-file): New command.
6541 (todo-key-bindings-t): Add key binding for it. Change the
6542 bindings of todo-filter-regexp-items(-multifile) to use `x'
6543 instead of `r', since the latter is better suited to the new
6544 renaming command.
6545
6546 2013-07-27 Alan Mackenzie <acm@muc.de>
6547
6548 Make Java try-with-resources statement parse properly.
6549 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
6550 (c-block-stmt-1-2-key): New language constants/variables.
6551 * progmodes/cc-engine.el (c-beginning-of-statement-1)
6552 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
6553 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
6554 with c-block-stmt-1-2-key.
6555
6556 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
6557
6558 * desktop.el (desktop--make-frame): Apply most frame parameters after
6559 creating the frame to force (partially or totally) offscreen frames to
6560 be restored as such.
6561
6562 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
6563
6564 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
6565 (Bug#14948)
6566
6567 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
6568
6569 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
6570 `base' arg of backtrace-frame.
6571
6572 2013-07-26 Eli Zaretskii <eliz@gnu.org>
6573
6574 * simple.el (list-processes): Doc fix.
6575
6576 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
6577
6578 * desktop.el (desktop--select-frame):
6579 Try harder to reuse existing frames.
6580
6581 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
6582
6583 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
6584 (edebug-eval): Use backtrace-eval.
6585 (edebug--display, edebug--recursive-edit): Don't let-bind the
6586 edebug-outer-* vars that keep track of variables we locally let-bind.
6587 (edebug-outside-excursion): Don't restore outside values of locally
6588 let-bound vars.
6589 (edebug--display): Use user-error.
6590 (cl-lexical-debug, cl-debug-env): Remove.
6591
6592 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
6593
6594 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
6595 are restored to be sure that they are visible before deleting any
6596 remaining ones.
6597
6598 2013-07-26 Matthias Meulien <orontee@gmail.com>
6599
6600 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
6601 vc-print-root-log. (Bug#14948)
6602
6603 2013-07-26 Richard Stallman <rms@gnu.org>
6604
6605 Add aliases for encrypting mail.
6606 * epa.el (epa-mail-aliases): New option.
6607 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
6608 Bind inhibit-read-only so read-only text doesn't ruin everything.
6609 (epa-mail-default-recipients): New subroutine broken out.
6610 Handle epa-mail-aliases.
6611
6612 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
6613
6614 Add support for lexical variables to the debugger's `e' command.
6615 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
6616 vars, except for debugger-outer-match-data.
6617 (debugger-frame-number): Move check for "on a function call" from
6618 callers into it. Add `skip-base' argument.
6619 (debugger-frame, debugger-frame-clear): Simplify accordingly.
6620 (debugger-env-macro): Only reset the state stored in non-variables,
6621 i.e. current-buffer and match-data.
6622 (debugger-eval-expression): Rewrite using backtrace-eval.
6623 * subr.el (internal--called-interactively-p--get-frame): Remove.
6624 (called-interactively-p):
6625 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
6626 `base' arg of backtrace-frame instead.
6627
6628 2013-07-26 Glenn Morris <rgm@gnu.org>
6629
6630 * align.el (align-regexp): Doc fix. (Bug#14857)
6631 (align-region): Explicit error if subexpression missing/does not match.
6632
6633 * simple.el (global-visual-line-mode):
6634 Do not duplicate the mode lighter. (Bug#14858)
6635
6636 2013-07-25 Martin Rudalics <rudalics@gmx.at>
6637
6638 * window.el (display-buffer): In display-buffer bind
6639 split-window-keep-point to t, bug#14829.
6640
6641 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
6642
6643 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
6644 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
6645 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
6646 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
6647 Change accordingly.
6648 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
6649 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
6650
6651 2013-07-25 Glenn Morris <rgm@gnu.org>
6652
6653 * dired-x.el (dired-mark-extension): Convert comment to doc string.
6654
6655 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
6656
6657 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
6658 parameter to modify-frame-parameters if the value has not changed;
6659 this is a workaround for bug#14949.
6660 (desktop--make-frame): On cl-delete-if call, check parameter name,
6661 not full parameter.
6662
6663 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
6664
6665 * vc/vc.el (vc-ignore): New function.
6666
6667 * vc/vc-svn.el (vc-svn-ignore): New function.
6668
6669 * vc/vc-hg.el (vc-hg-ignore): New function.
6670
6671 * vc/vc-git.el (vc-git-ignore): New function.
6672
6673 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
6674 (vc-dir-ignore): New function.
6675
6676 * vc/vc-cvs.el (vc-cvs-ignore): New function.
6677 (cvs-append-to-ignore): Move here from pcvs.el.
6678
6679 * vc/vc-bzr.el (vc-bzr-ignore): New function.
6680
6681 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
6682
6683 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
6684
6685 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
6686 (desktop-restore-frames): Warn when deleting an existing frame failed.
6687
6688 2013-07-24 Glenn Morris <rgm@gnu.org>
6689
6690 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
6691
6692 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
6693
6694 * filenotify.el (file-notify-supported-p):
6695 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
6696 Remove functions.
6697
6698 * autorevert.el (auto-revert-use-notify):
6699 (auto-revert-notify-add-watch):
6700 * net/tramp.el (tramp-file-name-for-operation):
6701 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
6702 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6703 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6704 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
6705 Remove `file-notify-supported-p' entry.
6706
6707 2013-07-24 Glenn Morris <rgm@gnu.org>
6708
6709 * printing.el: Replace all uses of deleted ps-windows-system,
6710 ps-lp-system, ps-flatten-list with lpr- versions.
6711
6712 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
6713
6714 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
6715 checked with memq (bug#14935).
6716
6717 * files.el (revert-buffer-function): Use a non-nil default.
6718 (revert-buffer-preserve-modes): Declare var to
6719 provide access to the `preserve-modes' argument.
6720 (revert-buffer): Let-bind it.
6721 (revert-buffer--default): New function, extracted from revert-buffer.
6722
6723 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
6724
6725 * lpr.el: Signal print errors more prominently.
6726 (print-region-function): Don't default to nil.
6727 (lpr-print-region): New function, extracted from print-region-1.
6728 Check lpr's return value and signal an error in case of problem.
6729 (print-region-1): Use it.
6730 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
6731 versions instead.
6732 (ps-printer-name): Default to nil.
6733 (ps-printer-name-option): Default to lpr-printer-switch.
6734 (ps-print-region-function): Don't default to nil.
6735 (ps-postscript-code-directory): Simplify default.
6736 (ps-do-despool): Use lpr-print-region to properly check the outcome.
6737 (ps-string-list, ps-eval-switch, ps-flatten-list)
6738 (ps-flatten-list-1): Remove.
6739 (ps-multibyte-buffer): Avoid setq.
6740 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
6741 (print-region-function, ps-print-region-function): Don't set them here.
6742
6743 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
6744
6745 * ido.el (ido-fractionp):
6746 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
6747 (ido-max-file-prompt-width, ido-unc-hosts-cache)
6748 (ido-max-directory-size, ido-max-dir-file-cache)
6749 (ido-decorations): Doc fix.
6750
6751 * ansi-color.el: Fix old URL.
6752
6753 2013-07-23 Michael R. Mauger <michael@mauger.com>
6754
6755 * progmodes/sql.el: Version 3.3
6756 (sql-product-alist): Improve oracle :prompt-cont-regexp.
6757 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
6758 (sql-interactive-remove-continuation-prompt): Rewrite, use
6759 functions above. Fix continuation prompt and complete output line
6760 handling.
6761 (sql-redirect-one, sql-execute): Use `read-only-mode' on
6762 redirected output buffer.
6763 (sql-mode): Restore deleted code (Bug#13591).
6764
6765 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
6766
6767 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
6768
6769 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
6770
6771 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
6772
6773 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
6774 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6775 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
6776
6777 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
6778
6779 * desktop.el (desktop-clear): Simplify; remove useless checks
6780 against invalid buffer names.
6781 (desktop-list*): Use cl-list*.
6782 (desktop-buffer-info, desktop-create-buffer): Simplify.
6783
6784 2013-07-23 Leo Liu <sdl.web@gmail.com>
6785
6786 * bookmark.el (bookmark-make-record): Restore NAME as a default
6787 value. (Bug#14933)
6788
6789 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
6790
6791 * emacs-lisp/autoload.el (autoload--setup-output): New function,
6792 extracted from autoload--insert-text.
6793 (autoload--insert-text): Remove.
6794 (autoload--print-cookie-text): New function, extracted from
6795 autoload--insert-cookie-text.
6796 (autoload--insert-cookie-text): Remove.
6797 (autoload-generate-file-autoloads): Adjust calls accordingly.
6798
6799 * winner.el (winner-hook-installed-p): Remove.
6800 (winner-mode): Simplify accordingly.
6801
6802 * subr.el (add-to-list): Fix compiler-macro when `append' is
6803 not constant. Don't use `cl-member' for the base case.
6804
6805 * progmodes/subword.el: Fix boundary case (bug#13758).
6806 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
6807 own group.
6808 (subword-backward-regexp): Make it a constant.
6809 (subword-forward-internal): Don't treat a trailing capital as the
6810 beginning of a word.
6811
6812 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
6813
6814 * emacs-lisp/package.el (package-menu-mode): Don't modify the
6815 global value of tabulated-list-revert-hook (bug#14930).
6816
6817 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
6818
6819 * desktop.el: Require 'cl-lib.
6820 (desktop-before-saving-frames-functions): New hook.
6821 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
6822 for frames being saved. Rename from desktop--save-minibuffer-frames.
6823 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
6824 Do not save frames with non-nil `desktop-dont-save' parameter.
6825 Filter out deleted frames.
6826 (desktop--find-frame): Use cl-find-if.
6827 (desktop--select-frame): Use cl-(first|second|third) to access values
6828 of desktop-mini.
6829 (desktop--make-frame): Use cl-delete-if.
6830 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
6831 (desktop-restore-frames): Use cl-(first|second|third) to access values
6832 of desktop-mini. Look for visible frame at the end, not while
6833 restoring frames.
6834
6835 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
6836 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
6837 Use string-match-p, looking-at-p (bug#14927).
6838
6839 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
6840
6841 * desktop.el (desktop-saved-frame-states):
6842 Rename from desktop--saved-states; all users changed.
6843 (desktop-save-frames): Rename from desktop--save-frames.
6844 Do not save state to desktop file.
6845 (desktop-save): Save desktop-saved-frame-states to desktop file
6846 and reset to nil.
6847 (desktop-restoring-frames-p): New function.
6848 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
6849 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
6850 buffer-lists when restoring frames. Suggested by Martin Rudalics.
6851
6852 * desktop.el: Correctly restore iconified frames.
6853 (desktop--filter-iconified-position): New function.
6854 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
6855
6856 2013-07-20 Glenn Morris <rgm@gnu.org>
6857
6858 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
6859 Let `message' do the formatting.
6860 (def-gdb-preempt-display-buffer): Add explicit format.
6861
6862 * image-dired.el (image-dired-track-original-file):
6863 Use with-current-buffer.
6864 (image-dired-track-thumbnail): Use with-current-buffer.
6865 Avoid changing point of wrong window.
6866
6867 * image-dired.el (image-dired-track-original-file):
6868 Avoid changing point of wrong window. (Bug#14909)
6869
6870 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
6871
6872 * progmodes/gdb-mi.el (gdb-done-or-error):
6873 Guard against "%" in gdb output. (Bug#14127)
6874
6875 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
6876
6877 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
6878 (Bug#14826)
6879
6880 * international/mule.el (coding-system-iso-2022-flags): Fix last
6881 change.
6882
6883 2013-07-20 Kenichi Handa <handa@gnu.org>
6884
6885 * international/mule.el (coding-system-iso-2022-flags):
6886 Add `8-bit-level-4'. (Bug#8522)
6887
6888 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
6889
6890 * net/shr.el (shr-mouse-browse-url): New command and keystroke
6891 (bug#14815).
6892
6893 * net/eww.el (eww-process-text-input): Allow inputting when the
6894 point is at the start of the line, as the properties aren't
6895 front-sticky.
6896
6897 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
6898 degenerate widths.
6899
6900 2013-07-19 Richard Stallman <rms@gnu.org>
6901
6902 * epa.el (epa-popup-info-window): Doc fix.
6903
6904 * subr.el (split-string): New arg TRIM.
6905
6906 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
6907
6908 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
6909 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
6910
6911 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
6912
6913 * filenotify.el (file-notify--library): Rename from
6914 `file-notify-support'. Do not autoload. Adapt all uses.
6915 (file-notify-supported-p): New defun.
6916
6917 * autorevert.el (auto-revert-use-notify):
6918 Use `file-notify-supported-p' instead of `file-notify-support'.
6919 Adapt docstring.
6920 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
6921
6922 * net/tramp.el (tramp-file-name-for-operation):
6923 Add `file-notify-supported-p'.
6924
6925 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
6926 New defun.
6927 (tramp-sh-file-name-handler-alist): Add it as handler for
6928 `file-notify-supported-p '.
6929
6930 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
6931 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6932 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
6933 Add `ignore' as handler for `file-notify-*' functions.
6934
6935 2013-07-17 Eli Zaretskii <eliz@gnu.org>
6936
6937 * simple.el (line-move-partial, line-move): Don't start vscroll or
6938 scroll-up if the current line is not taller than the window.
6939 (Bug#14881)
6940
6941 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
6942
6943 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
6944 highlight question marks in the method names as strings.
6945 (ruby-block-beg-keywords): Inline.
6946 (ruby-font-lock-keyword-beg-re): Extract from
6947 `ruby-font-lock-keywords'.
6948
6949 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
6950
6951 * frame.el (blink-cursor-blinks): New defcustom.
6952 (blink-cursor-blinks-done): New defvar.
6953 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
6954 (blink-cursor-timer-function): Check if number of blinks has been
6955 done on X and NS.
6956 (blink-cursor-suspend, blink-cursor-check): New defuns.
6957
6958 2013-07-15 Glenn Morris <rgm@gnu.org>
6959
6960 * edmacro.el (edmacro-format-keys): Fix previous change.
6961
6962 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
6963
6964 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
6965 The hack didn't work outside English locales anyway.
6966
6967 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
6968
6969 * simple.el (define-alternatives): Rename from alternatives-define,
6970 per RMS' suggestion.
6971
6972 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
6973
6974 * desktop.el (desktop-restore-frames): Change default to t.
6975 (desktop-restore-in-current-display): Now offer more options.
6976 (desktop-restoring-reuses-frames): New customization option.
6977 (desktop--saved-states): Doc fix.
6978 (desktop-filter-parameters-alist): New variable, renamed and expanded
6979 from desktop--excluded-frame-parameters.
6980 (desktop--target-display): New variable.
6981 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
6982 (desktop--filter-tty*, desktop--filter-*-color)
6983 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
6984 (desktop--filter-save-desktop-parm)
6985 (desktop-restore-in-original-display-p): New functions.
6986 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
6987 (desktop--save-minibuffer-frames): New function, inspired by a similar
6988 function from Martin Rudalics.
6989 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
6990 (desktop--restore-in-this-display-p): Remove.
6991 (desktop--find-frame): Rename from desktop--find-frame-in-display
6992 and add predicate argument.
6993 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
6994 (desktop--reuse-list): New variable.
6995 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
6996 New functions.
6997 (desktop--restore-frames): Add support for "minibuffer-special" frames.
6998
6999 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
7000
7001 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
7002
7003 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
7004
7005 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
7006 Highlight conversion methods on Kernel.
7007
7008 2013-07-13 Alan Mackenzie <acm@muc.de>
7009
7010 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
7011 and comment it out. This out-commenting enables certain C++
7012 declarations to be parsed correctly.
7013
7014 2013-07-13 Eli Zaretskii <eliz@gnu.org>
7015
7016 * international/mule.el (define-coding-system): Doc fix.
7017
7018 * simple.el (default-font-height): Don't call font-info if the
7019 frame's default font didn't change since the frame was created.
7020 (Bug#14838)
7021
7022 2013-07-13 Leo Liu <sdl.web@gmail.com>
7023
7024 * ido.el (ido-read-file-name): Guard against non-symbol value.
7025
7026 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
7027
7028 * progmodes/python.el (python-imenu--build-tree): Fix corner case
7029 in nested defuns.
7030
7031 2013-07-13 Leo Liu <sdl.web@gmail.com>
7032
7033 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
7034 ido-set-matches call. (Bug#6852)
7035
7036 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
7037
7038 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
7039 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
7040 Ruby 2.0.
7041 (ruby-font-lock-keywords): Distinguish calls to functions with
7042 module-like names from module references. Highlight character
7043 literals.
7044
7045 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
7046
7047 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
7048 (gdb-send): Handle continued commands. (Bug#14847)
7049
7050 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
7051
7052 * desktop.el (desktop--v2s): Remove unused local variable.
7053 (desktop-save-buffer): Make defvar-local; adjust docstring.
7054 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
7055 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
7056
7057 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
7058
7059 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
7060
7061 2013-07-12 Eli Zaretskii <eliz@gnu.org>
7062
7063 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
7064 (Bug#14842)
7065
7066 2013-07-12 Glenn Morris <rgm@gnu.org>
7067
7068 * doc-view.el: Require cl-lib at runtime too.
7069 (doc-view-remove-if): Remove.
7070 (doc-view-search-next-match, doc-view-search-previous-match):
7071 Use cl-remove-if.
7072
7073 * edmacro.el: Require cl-lib at runtime too.
7074 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
7075 (edmacro-mismatch, edmacro-subseq): Remove.
7076
7077 * shadowfile.el: Require cl-lib.
7078 (shadow-remove-if): Remove.
7079 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
7080 Use cl-remove-if.
7081
7082 * wid-edit.el: Require cl-lib.
7083 (widget-choose): Use cl-remove-if.
7084 (widget-remove-if): Remove.
7085
7086 * progmodes/ebrowse.el: Require cl-lib at runtime too.
7087 (ebrowse-delete-if-not): Remove.
7088 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
7089 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
7090 Use cl-delete-if-not.
7091
7092 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
7093
7094 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
7095 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
7096
7097 2013-07-12 Leo Liu <sdl.web@gmail.com>
7098
7099 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
7100
7101 2013-07-11 Glenn Morris <rgm@gnu.org>
7102
7103 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
7104 (edebug-gensym-index, edebug-gensym):
7105 Remove reimplementation of cl-gensym.
7106 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
7107
7108 * thumbs.el: Require cl-lib at run-time too.
7109 (thumbs-gensym-counter, thumbs-gensym):
7110 Remove reimplementation of cl-gensym.
7111 (thumbs-temp-file): Use cl-gensym.
7112
7113 * emacs-lisp/ert.el: Require cl-lib at runtime too.
7114 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
7115 (ert--intersection, ert--set-difference, ert--set-difference-eq)
7116 (ert--union, ert--gensym-counter, ert--gensym-counter)
7117 (ert--coerce-to-vector, ert--remove*, ert--string-position)
7118 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
7119 (ert-make-test-unbound, ert--expand-should-1)
7120 (ert--expand-should, ert--should-error-handle-error)
7121 (should-error, ert--explain-equal-rec)
7122 (ert--plist-difference-explanation, ert-select-tests)
7123 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
7124 Use cl-lib functions rather than reimplementations.
7125
7126 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
7127
7128 * net/tramp.el (tramp-methods): Extend docstring.
7129 (tramp-connection-timeout): New defcustom.
7130 (tramp-error-with-buffer): Reset timestamp only when appropriate.
7131 (with-tramp-progress-reporter): Simplify.
7132 (tramp-process-actions): Improve messages.
7133
7134 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
7135 * net/tramp-sh.el (tramp-maybe-open-connection):
7136 Use `tramp-connection-timeout'.
7137 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
7138 (Bug#14808)
7139
7140 2013-07-11 Leo Liu <sdl.web@gmail.com>
7141
7142 * ido.el (ido-read-file-name): Conform to the requirements of
7143 read-file-name. (Bug#11861)
7144 (ido-read-directory-name): Conform to the requirements of
7145 read-directory-name.
7146
7147 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
7148
7149 * subr.el (delay-warning): New function.
7150
7151 2013-07-10 Eli Zaretskii <eliz@gnu.org>
7152
7153 * simple.el (default-line-height): New function.
7154 (line-move-partial, line-move): Use it instead of computing the
7155 line height inline.
7156 (line-move-partial): Always compute ROWH. If the last line is
7157 partially-visible, but its text is completely visible, allow
7158 cursor to enter such a partially-visible line.
7159
7160 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
7161
7162 Improve error messages. (Bug#14808)
7163
7164 * net/tramp.el (tramp-current-connection): New defvar, moved from
7165 tramp-sh.el.
7166 (tramp-message-show-progress-reporter-message): Remove, not
7167 needed anymore.
7168 (tramp-error-with-buffer): Show message in minibuffer.
7169 Discard input before waiting. Reset connection timestamp.
7170 (with-tramp-progress-reporter): Improve messages.
7171 (tramp-process-actions): Use progress reporter. Delete process in
7172 case of error. Improve messages.
7173
7174 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
7175 Call `tramp-error-with-buffer' with vector and buffer.
7176 (tramp-current-connection): Remove.
7177 (tramp-maybe-open-connection): The car of
7178 `tramp-current-connection' are the first 3 slots of the vector.
7179
7180 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
7181
7182 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
7183 inside continued strings.
7184
7185 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
7186
7187 Timestamp fixes for undo (Bug#14824).
7188 * files.el (clear-visited-file-modtime): Move here from fileio.c.
7189
7190 2013-07-10 Leo Liu <sdl.web@gmail.com>
7191
7192 * files.el (require-final-newline): Allow safe local value.
7193 (Bug#14834)
7194
7195 2013-07-09 Leo Liu <sdl.web@gmail.com>
7196
7197 * ido.el (ido-read-directory-name): Handle fallback.
7198 (ido-read-file-name): Update DIR to ido-current-directory.
7199 (Bug#1516)
7200 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
7201
7202 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
7203
7204 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
7205 "autoload". Remove "warn lower camel case" section, previously
7206 commented out. Highlight negation char. Do not highlight the
7207 target in singleton method definitions.
7208
7209 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
7210
7211 * faces.el (tty-setup-hook): Declare the hook.
7212
7213 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
7214 and detect when a guard/pred depends on local vars (bug#14773).
7215 (pcase--u1): Adjust caller.
7216
7217 2013-07-08 Eli Zaretskii <eliz@gnu.org>
7218
7219 * simple.el (line-move-partial, line-move): Account for
7220 line-spacing.
7221 (line-move-partial): Avoid setting vscroll when the last
7222 partially-visible line in window is of default height.
7223
7224 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
7225
7226 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
7227 been used a while.
7228
7229 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
7230
7231 * subr.el (read-quoted-char): Remove unused local variable `char'.
7232
7233 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
7234
7235 * ediff.el (ediff-version): Version update.
7236 (ediff-files-command, ediff3-files-command, ediff-merge-command)
7237 (ediff-merge-with-ancestor-command, ediff-directories-command)
7238 (ediff-directories3-command, ediff-merge-directories-command)
7239 (ediff-merge-directories-with-ancestor-command): New functions.
7240 All are command-line interfaces to ediff: to facilitate calling
7241 Emacs with the appropriate ediff functions invoked.
7242
7243 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
7244 (viper-save-kill-buffer): Check if buffer is modified.
7245
7246 * viper.el (viper-version): Version update.
7247 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
7248
7249 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
7250
7251 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
7252 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
7253 (viper-intercept-ESC-key): Simplify.
7254 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
7255 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
7256 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
7257 (viper-setup-ESC-to-escape): New functions.
7258 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
7259 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
7260
7261 2013-07-07 Eli Zaretskii <eliz@gnu.org>
7262
7263 * simple.el (default-font-height, window-screen-lines):
7264 New functions.
7265 (line-move, line-move-partial): Use them instead of
7266 frame-char-height and window-text-height. This makes scrolling
7267 text smoother when the buffer's default face uses a font that is
7268 different from the frame's default font.
7269
7270 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
7271
7272 * files.el (write-file): Do not display confirm dialog for NS,
7273 it does its own dialog, which can't be canceled (Bug#14578).
7274
7275 2013-07-06 Eli Zaretskii <eliz@gnu.org>
7276
7277 * simple.el (line-move-partial): Adjust the row returned by
7278 posn-at-point for the current window-vscroll. (Bug#14567)
7279
7280 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
7281
7282 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
7283 (tramp-sh-file-inotifywait-process-filter): Handle file names with
7284 spaces.
7285
7286 2013-07-06 Martin Rudalics <rudalics@gmx.at>
7287
7288 * window.el (window-state-put-stale-windows): New variable.
7289 (window--state-put-2): Save list of windows without matching buffer.
7290 (window-state-put): Remove "bufferless" windows if possible.
7291
7292 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
7293
7294 * simple.el (alternatives-define): Remove leftover :group keyword.
7295 Tweak docstring.
7296
7297 2013-07-06 Leo Liu <sdl.web@gmail.com>
7298
7299 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
7300 (ido-enable-virtual-buffers): New variable.
7301 (ido-buffer-internal, ido-toggle-virtual-buffers)
7302 (ido-make-buffer-list): Use it.
7303 (ido-exhibit): Support turning on and off virtual buffers
7304 automatically.
7305
7306 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
7307
7308 * simple.el (alternatives-define): New macro.
7309
7310 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
7311
7312 * subr.el (read-quoted-char): Use read-key.
7313 (sit-for): Let read-event decode tty input (bug#14782).
7314
7315 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
7316
7317 * calendar/todo-mode.el: Add handling of file deletion, both by
7318 mode command and externally. Fix various related bugs.
7319 Clarify Commentary and improve some documentation strings and code.
7320 (todo-delete-file): New command.
7321 (todo-check-file): New function.
7322 (todo-show): Handle external deletion of the file we're trying to
7323 show (bug#14688). Replace called-interactively-p by an optional
7324 prefix argument to avoid problematic interaction with catch form
7325 when byte compiled (bug#14702).
7326 (todo-quit): Handle external deletion of the archive's todo file.
7327 Make sure the buffer that was visiting the archive file is still
7328 live before trying to bury it.
7329 (todo-category-completions): Handle external deletion of any
7330 category completion files.
7331 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
7332 of todo files, in case of external deletion.
7333 (todo-add-file): Replace unnecessary setq by let-binding.
7334 (todo-find-archive): Check whether there are any archives.
7335 Replace unnecessary setq by let-binding.
7336 (todo-archive-done-item): Use find-file-noselect to get the
7337 archive buffer whether or not the archive already exists.
7338 Remove superfluous code. Use file size instead of buffer-file-name to
7339 check if the archive is new; if it is, update list of archives.
7340 (todo-default-todo-file): Allow nil to be a valid value for when
7341 there are no todo files.
7342 (todo-reevaluate-default-file-defcustom): Use corrected definition
7343 of todo-default-todo-file.
7344 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
7345 (todo-delete-category, todo-show-categories-table)
7346 (todo-category-number): Clarify comment.
7347 (todo-filter-items): Clarify documentation string.
7348 (todo-show-current-file, todo-display-as-todo-file)
7349 (todo-reset-and-enable-done-separator): Tweak documentation string.
7350 (todo-done-separator): Make separator length window-width, since
7351 bug#2749 is now fixed.
7352
7353 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
7354
7355 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
7356 Support both "gvfs-monitor-dir" and "inotifywait".
7357 (tramp-sh-file-inotifywait-process-filter): Rename from
7358 `tramp-sh-file-notify-process-filter'.
7359 (tramp-sh-file-gvfs-monitor-dir-process-filter)
7360 (tramp-get-remote-gvfs-monitor-dir): New defuns.
7361
7362 2013-07-05 Leo Liu <sdl.web@gmail.com>
7363
7364 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
7365
7366 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7367
7368 * frame.el (display-pixel-height, display-pixel-width)
7369 (display-mm-height, display-mm-width): Mention behavior on
7370 multi-monitor setups in docstrings.
7371 (w32-display-monitor-attributes-list): Declare function.
7372 (display-monitor-attributes-list): Use it.
7373
7374 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
7375
7376 * filenotify.el: New package.
7377
7378 * autorevert.el (top): Require filenotify.el.
7379 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
7380 instead.
7381 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
7382 (auto-revert-notify-handler): Use `file-notify-*' functions.
7383
7384 * subr.el (file-notify-handle-event): Move function to filenotify.el.
7385
7386 * net/tramp.el (tramp-file-name-for-operation):
7387 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
7388
7389 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
7390 for `file-notify-add-watch' and `file-notify-rm-watch'.
7391 (tramp-process-sentinel): Improve trace.
7392 (tramp-sh-handle-file-notify-add-watch)
7393 (tramp-sh-file-notify-process-filter)
7394 (tramp-sh-handle-file-notify-rm-watch)
7395 (tramp-get-remote-inotifywait): New defuns.
7396
7397 2013-07-03 Juri Linkov <juri@jurta.org>
7398
7399 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
7400 call of `occur-read-primary-args' to interactive spec.
7401
7402 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
7403 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
7404
7405 2013-07-03 Matthias Meulien <orontee@gmail.com>
7406
7407 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
7408 `Buffer-menu-multi-occur'. Add it to the menu.
7409 (Buffer-menu-mode): Document it in docstring.
7410 (Buffer-menu-multi-occur): New command. (Bug#14673)
7411
7412 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
7413
7414 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
7415 keywords and built-ins.
7416
7417 2013-07-03 Glenn Morris <rgm@gnu.org>
7418
7419 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
7420
7421 Make info-xref checks case-sensitive by default
7422 * info.el (Info-find-node, Info-find-in-tag-table)
7423 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
7424 Add option for exact case matching of nodes.
7425 * info-xref.el (info-xref): New custom group.
7426 (info-xref-case-fold): New option.
7427 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
7428
7429 2013-07-03 Leo Liu <sdl.web@gmail.com>
7430
7431 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
7432
7433 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
7434
7435 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
7436 middle of block statement initially, lower the depth. Remove
7437 FIXME comment, not longer valid. Remove middle of block statement
7438 detection, no need to do that anymore since we've been using
7439 `ruby-parse-region' here.
7440
7441 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
7442
7443 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
7444
7445 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
7446
7447 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
7448
7449 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
7450
7451 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
7452 (desktop-restore-in-current-display): New customization option.
7453 (desktop--excluded-frame-parameters): Add `font'.
7454 (desktop--save-frames): Rename from desktop--save-windows.
7455 (desktop--restore-in-this-display-p): New function.
7456 (desktop--make-full-frame): Remove unwanted width/height from
7457 full(width|height) frames.
7458 (desktop--restore-frames): Rename from desktop--restore-windows.
7459 Obey desktop-restore-current-display. Do not delete old frames or
7460 select a new frame unless we were able to restore at least one frame.
7461
7462 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
7463
7464 * files.el (find-file-noselect): Simplify conditional expression.
7465
7466 * remember.el (remember-append-to-file):
7467 Don't mix `find-buffer-visiting' and `get-file-buffer'.
7468
7469 Add `remember-notes' function to store random notes across Emacs
7470 restarts.
7471 * remember.el (remember-data-file): Add :set callback to affect
7472 notes buffer (if any).
7473 (remember-notes): New command.
7474 (remember-notes-buffer-name, bury-remember-notes-on-kill):
7475 New defcustoms for the `remember-notes' function.
7476 (remember-notes-save-and-bury-buffer): New command.
7477 (remember-notes-mode-map): New variable.
7478 (remember-mode): New minor mode.
7479 (remember-notes--kill-buffer-query): New function.
7480 * startup.el (initial-buffer-choice): Add notes to custom type.
7481
7482 2013-06-30 Eli Zaretskii <eliz@gnu.org>
7483
7484 * bindings.el (right-char, left-char): Don't call sit-for, this is
7485 no longer needed. Use arithmetic comparison only for numerical
7486 arguments.
7487
7488 * international/mule-cmds.el (select-safe-coding-system):
7489 Handle the case of FROM being a string correctly. (Bug#14755)
7490
7491 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
7492
7493 * net/shr.el (shr-make-table-1): Add a sanity check that allows
7494 progression on degenerate tables.
7495 (shr-rescale-image): ImageMagick animated images currently don't work.
7496
7497 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
7498
7499 Some fixes and improvements for desktop frame restoration.
7500 It is still experimental and disabled by default.
7501 * desktop.el (desktop--save-windows): Put the selected frame at
7502 the head of the list.
7503 (desktop--make-full-frame): New function.
7504 (desktop--restore-windows): Try to re-select the frame that was
7505 selected upon saving. Do not abort if some frames fail to restore,
7506 just show an error message and continue. Set up maximized frames
7507 so they have default non-maximized dimensions.
7508
7509 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
7510
7511 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
7512 Don't start heredoc inside a string or comment.
7513
7514 2013-06-29 Eli Zaretskii <eliz@gnu.org>
7515
7516 * bindings.el (visual-order-cursor-movement): New defcustom.
7517 (right-char, left-char): Provide visual-order cursor motion by
7518 calling move-point-visually. Update the doc strings.
7519
7520 2013-06-28 Kenichi Handa <handa@gnu.org>
7521
7522 * international/mule.el (define-coding-system): New coding system
7523 properties :inhibit-null-byte-detection,
7524 :inhibit-iso-escape-detection, and :prefer-utf-8.
7525 (set-buffer-file-coding-system): If :charset-list property of
7526 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
7527 appropriate for setting.
7528
7529 * international/mule-cmds.el (select-safe-coding-system):
7530 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
7531 multibyte characters, return utf-8 (or one of its siblings).
7532
7533 * international/mule-conf.el (prefer-utf-8): New coding system.
7534 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
7535 files.
7536
7537 2013-06-28 Ivan Kanis <ivan@kanis.fr>
7538
7539 * net/shr.el (shr-render-region): New function.
7540
7541 * net/eww.el: Autoload `eww-browse-url'.
7542
7543 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
7544
7545 * emacs-lisp/package-x.el (package-upload-buffer-internal):
7546 Adapt to `package-desc-version' being a list.
7547 Use `package--ac-desc-version' to retrieve version from a package
7548 archive element.
7549
7550 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
7551
7552 New experimental feature to save&restore window and frame setup.
7553 * desktop.el (desktop-save-windows): New defcustom.
7554 (desktop--saved-states): New var.
7555 (desktop--excluded-frame-parameters): New defconst.
7556 (desktop--filter-frame-parms, desktop--find-frame-in-display)
7557 (desktop--restore-windows, desktop--save-windows): New functions.
7558 (desktop-save): Call `desktop--save-windows'.
7559 (desktop-read): Call `desktop--restore-windows'.
7560
7561 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
7562
7563 * net/shr.el (add-face-text-property): Remove compat definition.
7564
7565 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
7566
7567 * info.el (Info-try-follow-nearest-node): Move search for footnote
7568 above search for node name to prevent missing a footnote (bug#14717).
7569
7570 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
7571
7572 * obsolete/otodo-mode.el: Add obsolescence info to file header.
7573
7574 2013-06-27 Leo Liu <sdl.web@gmail.com>
7575
7576 * net/eww.el (eww-read-bookmarks): Check file size.
7577
7578 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
7579
7580 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
7581 advice--pending if newdef is nil or an autoload (bug#13820).
7582 (advice-mapc): New function.
7583
7584 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
7585
7586 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
7587 probably.
7588 (eww-mode-map): Add a menu bar.
7589 (eww-add-bookmark): New command.
7590 (eww-bookmark-mode): New mode and commands.
7591 (eww-add-bookmark): Remove newlines from the title.
7592 (eww-bookmark-browse): Don't bug out if it's the only window.
7593
7594 2013-06-26 Glenn Morris <rgm@gnu.org>
7595
7596 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
7597 (hfy-size): Handle ttys. (Bug#14668)
7598
7599 * info-xref.el: Update for Texinfo 5 change in *note format.
7600 (info-xref-node-re, info-xref-note-re): New constants.
7601 (info-xref-check-buffer): Use info-xref-note-re.
7602
7603 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
7604
7605 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
7606
7607 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
7608 nil terminate the loop (bug#14718).
7609
7610 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
7611
7612 * net/eww.el: Rework history traversal. When going forward/back,
7613 put these actions into the history, too, so that they can be
7614 replayed.
7615 (eww-render): Move the history reset to the correct buffer.
7616
7617 2013-06-25 Juri Linkov <juri@jurta.org>
7618
7619 * files-x.el (modify-dir-local-variable): Change the header comment
7620 in the file with directory local variables. (Bug#14692)
7621
7622 * files-x.el (read-file-local-variable-value): Add `default'.
7623 (Bug#14710)
7624
7625 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
7626
7627 * net/eww.el (eww-make-unique-file-name): Create a unique file
7628 name before saving to entering `y' accidentally asynchronously.
7629
7630 2013-06-25 Ivan Kanis <ivan@kanis.fr>
7631
7632 * net/eww.el (eww-download): New command and keystroke.
7633
7634 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
7635
7636 * net/eww.el (eww-copy-page-url): Change name of command.
7637
7638 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
7639 be more consistent with Info and dired.
7640
7641 * net/eww.el (eww-mode-map): Ditto.
7642
7643 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
7644
7645 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
7646 packages from archives.
7647 (package-archive-contents): Change format; include obsolete packages.
7648 (package-desc): Use `dir' to mark builtin packages.
7649 (package--from-builtin): Set the `dir' field to `builtin'.
7650 (generated-autoload-file, version-control): Declare.
7651 (package-compute-transaction): Change first arg and return value to be
7652 lists of package-descs. Adjust to new package-archive-contents format.
7653 (package--add-to-archive-contents): Adjust to new
7654 package-archive-contents format.
7655 (package-download-transaction): Arg is now a list of package-descs.
7656 (package-install): If `pkg' is a package name, pass it as
7657 a requirement, so it is subject to the usual (e.g. disabled) checks.
7658 (describe-package): Accept package-desc as well.
7659 (describe-package-1): Describe a specific package-desc. Add links to
7660 other package-descs for the same package name.
7661 (package-menu-describe-package): Pass the actual package-desc.
7662 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
7663 works correctly.
7664 (package-desc-status): New function.
7665 (package-menu--refresh): New function, extracted
7666 from package-menu--generate.
7667 (package-menu--generate): Use it.
7668 (package-delete): Update package-alist.
7669 (package-menu-execute): Don't call package-initialize.
7670
7671 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
7672 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
7673 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
7674 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
7675 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
7676 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
7677
7678 2013-06-25 Martin Rudalics <rudalics@gmx.at>
7679
7680 * window.el (window--state-get-1): Workaround for bug#14527.
7681 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
7682
7683 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
7684
7685 * net/eww.el (eww-back-url): Implement the history by stashing all
7686 the data into a list.
7687 (eww-forward-url): Allow going forward in the history, too.
7688
7689 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
7690
7691 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
7692 for values and use read--expression for expressions (bug#14710).
7693 (read-file-local-variable): Avoid setq.
7694 (read-file-local-variable-mode): Use minor-mode-list.
7695
7696 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7697
7698 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
7699 for DOI URLs.
7700
7701 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7702
7703 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
7704 Update imenu-support when dialect changes.
7705
7706 2013-06-25 Leo Liu <sdl.web@gmail.com>
7707
7708 * ido.el (ido-read-internal): Allow forward slash on windows.
7709
7710 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
7711
7712 * net/eww.el (eww): Start of strings is \\`, not ^.
7713
7714 2013-06-24 Ivan Kanis <ivan@kanis.fr>
7715
7716 * net/shr.el (shr-browse-url): Fix interactive spec.
7717
7718 * net/eww.el (eww): Add a trailing slash to domain names.
7719
7720 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
7721
7722 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
7723
7724 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
7725
7726 * net/shr.el (shr-browse-url): Use an external browser if given a
7727 prefix.
7728
7729 * net/eww.el (eww-external-browser): Move to shr.
7730
7731 2013-06-24 Ivan Kanis <ivan@kanis.fr>
7732
7733 * net/eww.el (eww): Work more correctly for file: URLs.
7734 (eww-detect-charset): Allow quoted charsets.
7735 (eww-yank-page-url): New command and keystroke.
7736
7737 2013-06-24 Daiki Ueno <ueno@gnu.org>
7738
7739 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
7740 file name of gpg executable.
7741 (epg-context-program): New function.
7742 (epg-context-home-directory): New function.
7743 (epg-context-set-program): New function.
7744 (epg-context-set-home-directory): New function.
7745 (epg--start): Use `epg-context-program' instead of
7746 'epg-gpg-program'.
7747 (epg--list-keys-1): Likewise.
7748
7749 2013-06-24 Leo Liu <sdl.web@gmail.com>
7750
7751 * ido.el (ido-read-internal): Fix bug#14620.
7752
7753 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
7754
7755 * faces.el (face-documentation): Simplify.
7756 (read-face-attribute, tty-find-type, x-resolve-font-name):
7757 Use `string-match-p'.
7758 (list-faces-display): Use `string-match-p'. Simplify.
7759 (face-spec-recalc): Check face to avoid face alias loops.
7760 (read-color): Use `string-match-p' and non-capturing parenthesis.
7761
7762 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
7763
7764 * net/shr.el (shr-rescale-image): Use the new
7765 :max-width/:max-height functionality.
7766
7767 2013-06-23 Ivan Kanis <ivan@kanis.fr>
7768
7769 * net/eww.el (eww-search-prefix): New variable.
7770 (eww): Use it.
7771 (eww-external-browser): New variable.
7772 (eww-mode-map): New keystroke.
7773 (eww-browse-with-external-browser): New command.
7774
7775 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
7776
7777 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
7778
7779 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
7780 Don't skip aligning the next header field when padding is 0;
7781 otherwise, field width is not respected unless the title is as
7782 wide as the field.
7783
7784 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
7785
7786 * emacs-lisp/package.el (package-el-version): Remove.
7787 (package-process-define-package): Fix inf-loop.
7788 (package-install): Allow symbols as arguments again.
7789
7790 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
7791
7792 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
7793 add some more keyword-like methods.
7794 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
7795
7796 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
7797
7798 * bs.el (bs-buffer-show-mark): Make defvar-local.
7799 (bs-mode): Use setq-local.
7800
7801 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
7802 (emacs-lock--try-unlocking): Make defvar-local.
7803
7804 2013-06-22 Glenn Morris <rgm@gnu.org>
7805
7806 * play/cookie1.el (cookie-apropos): Minor simplification.
7807
7808 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
7809
7810 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
7811
7812 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
7813 `regexp-opt', it breaks the build during dumping.
7814
7815 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
7816
7817 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
7818 Highlight keyword-like methods on Kernel and Module with
7819 font-lock-builtin-face.
7820 (auto-mode-alist): Consolidate different entries into one regexp
7821 and add more *file-s.
7822
7823 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
7824
7825 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
7826
7827 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
7828 (diary-entry): Use it in the action of this button type instead of
7829 diary-goto-entry.
7830
7831 * calendar/todo-mode.el: New version.
7832 (todo-add-category): Append new category to end of file and give
7833 it the highest number, instead of putting it at the beginning and
7834 giving it 0. Incorporate noninteractive functionality.
7835 (todo-forward-category): Adapt to 1-based category numbering.
7836 Allow skipping over archived categories.
7837 (todo-backward-category): Derive from todo-forward-category.
7838 (todo-backward-item, todo-forward-item): Make noninteractive and
7839 delegate interactive part to new commands. Make sensitive to done items.
7840 (todo-categories): Make value an alist of category names and
7841 vectors of item counts.
7842 (todo-category-beg): Make a defconst.
7843 (todo-category-number): Use 1 instead of 0 as initial value.
7844 (todo-category-select): Make sensitive to overlays, optional item
7845 highlighting and done items.
7846 (todo-delete-item): Make sensitive to overlays and marked and done items.
7847 (todo-edit-item): Make sensitive to overlays and editing of
7848 date/time header optional. Add format checks.
7849 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
7850 no-op if point is not on an item. Advertise using todo-edit-quit.
7851 (todo-edit-mode): Make sensitive to new format, font-locking, and
7852 multiple todo files.
7853 (todo-insert-item, todo-insert-item-here): Derive from
7854 todo-basic-insert-item and extend functionality.
7855 (todo-item-end, todo-item-start): Make sensitive to done items.
7856 (todo-item-string): Don't return text properties. Restore point.
7857 (todo-jump-to-category): Make sensitive to multiple todo files and
7858 todo archives. Use extended category completion.
7859 (todo-lower-item, todo-raise-item): Rename to *-priority and
7860 derive from todo-set-item-priority.
7861 (todo-mode): Derive from special-mode. Make sensitive to new
7862 format, font-locking and multiple todo files. Make read-only.
7863 (todo-mode-map): Don't suppress digit keys, so they can supply
7864 prefix arguments. Add many new key bindings.
7865 (todo-prefix): Insert as an overlay instead of file text.
7866 Change semantics from diary date expression to purely visual mark.
7867 (todo-print): Rename to todo-print-buffer. Make buffer display
7868 features printable. Remove option to restrict number of items
7869 printed. Add option to print to file.
7870 (todo-print-function): Rename to todo-print-buffer-function.
7871 (todo-quit): Extend to handle exiting new todo modes.
7872 (todo-remove-item): Make sensitive to overlays.
7873 (todo-save): Extend to buffers of filtered items.
7874 (todo-show): Make sensitive to done items, multiple todo files and
7875 new todo modes. Offer to convert legacy todo file before creating
7876 first new todo file.
7877 (todo-show-priorities): Rename to todo-top-priorities.
7878 Change semantics of value 0.
7879 (todo-top-priorities): Rename to todo-filter-top-priorities,
7880 derive from todo-filter-items and extend functionality.
7881 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
7882 and extend functionality to other types of filtered items.
7883 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
7884 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
7885 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
7886 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
7887 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
7888 (todo-edit-mode-hook, todo-entry-prefix-function)
7889 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
7890 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
7891 (todo-initials, todo-insert-threshold, todo-item-string-start)
7892 (todo-line-string, todo-menu, todo-mode-hook)
7893 (todo-more-important-p, todo-previous-answer, todo-previous-line)
7894 (todo-print-priorities, todo-remove-separator)
7895 (todo-save-top-priorities-too, todo-string-count-lines)
7896 (todo-string-multiline-p, todo-time-string-format)
7897 (todo-tmp-buffer-name): Remove.
7898 (todo-add-file, todo-archive-done-item, todo-choose-archive)
7899 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
7900 (todo-edit-category-diary-inclusion)
7901 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
7902 (todo-edit-file, todo-edit-item-date-day)
7903 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
7904 (todo-edit-item-date-month, todo-edit-item-date-to-today)
7905 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
7906 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
7907 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
7908 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
7909 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
7910 (todo-filter-top-priorities-multifile, todo-find-archive)
7911 (todo-find-filtered-items-file, todo-go-to-source-item)
7912 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
7913 (todo-jump-to-archive-category, todo-lower-category)
7914 (todo-mark-category, todo-marked-item-p, todo-merge-category)
7915 (todo-move-category, todo-move-item, todo-next-button)
7916 (todo-next-item, todo-padded-string, todo-powerset)
7917 (todo-previous-button, todo-previous-item)
7918 (todo-print-buffer-to-file, todo-raise-category)
7919 (todo-rename-category, todo-repair-categories-sexp, todo-search)
7920 (todo-set-category-number, todo-set-item-priority)
7921 (todo-set-top-priorities-in-category)
7922 (todo-set-top-priorities-in-file, todo-show-categories-table)
7923 (todo-sort-categories-alphabetically-or-numerically)
7924 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
7925 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
7926 (todo-toggle-item-header, todo-toggle-item-highlighting)
7927 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
7928 (todo-toggle-view-done-items, todo-toggle-view-done-only)
7929 (todo-unarchive-items, todo-unmark-category): New commands.
7930 (todo-absolute-file-name, todo-add-to-buffer-list)
7931 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
7932 (todo-basic-insert-item, todo-category-completions)
7933 (todo-category-number, todo-category-string-matcher-1)
7934 (todo-category-string-matcher-2, todo-check-filtered-items-file)
7935 (todo-check-format, todo-clear-matches)
7936 (todo-comment-string-matcher, todo-convert-legacy-date-time)
7937 (todo-current-category, todo-date-string-matcher)
7938 (todo-define-insertion-command, todo-diary-expired-matcher)
7939 (todo-diary-goto-entry, todo-diary-item-p)
7940 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
7941 (todo-display-categories, todo-display-sorted, todo-done-item-p)
7942 (todo-done-item-section-p, todo-done-separator)
7943 (todo-done-string-matcher, todo-files, todo-filter-items)
7944 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
7945 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
7946 (todo-insert-category-line, todo-insert-item-from-calendar)
7947 (todo-insert-sort-button, todo-insert-with-overlays)
7948 (todo-insertion-command-name, todo-insertion-key-bindings)
7949 (todo-label-to-key, todo-longest-category-name-length)
7950 (todo-make-categories-list, todo-mode-external-set)
7951 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
7952 (todo-modes-set-3, todo-multiple-filter-files)
7953 (todo-nondiary-marker-matcher, todo-prefix-overlays)
7954 (todo-read-category, todo-read-date, todo-read-dayname)
7955 (todo-read-file-name, todo-read-time)
7956 (todo-reevaluate-category-completions-files-defcustom)
7957 (todo-reevaluate-default-file-defcustom)
7958 (todo-reevaluate-filelist-defcustoms)
7959 (todo-reevaluate-filter-files-defcustom)
7960 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
7961 (todo-reset-done-separator, todo-reset-done-separator-string)
7962 (todo-reset-done-string, todo-reset-global-current-todo-file)
7963 (todo-reset-highlight-item, todo-reset-nondiary-marker)
7964 (todo-reset-prefix, todo-set-categories)
7965 (todo-set-date-from-calendar, todo-set-show-current-file)
7966 (todo-set-top-priorities, todo-short-file-name)
7967 (todo-show-current-file, todo-sort, todo-time-string-matcher)
7968 (todo-total-item-counts, todo-update-buffer-list)
7969 (todo-update-categories-display, todo-update-categories-sexp)
7970 (todo-update-count, todo-validate-name, todo-y-or-n-p):
7971 New functions.
7972 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
7973 New major modes.
7974 (todo-categories, todo-display, todo-edit, todo-faces)
7975 (todo-filtered): New defgroups.
7976 (todo-archived-only, todo-button, todo-category-string, todo-date)
7977 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
7978 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
7979 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
7980 (todo-add-item-if-new-category, todo-always-add-time-string)
7981 (todo-categories-align, todo-categories-archived-label)
7982 (todo-categories-category-label, todo-categories-diary-label)
7983 (todo-categories-done-label, todo-categories-number-separator)
7984 (todo-categories-todo-label, todo-categories-totals-label)
7985 (todo-category-completions-files, todo-completion-ignore-case)
7986 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
7987 (todo-done-separator-string, todo-done-string)
7988 (todo-files-function, todo-filter-done-items, todo-filter-files)
7989 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
7990 (todo-initial-category, todo-initial-file, todo-item-mark)
7991 (todo-legacy-date-time-regexp, todo-mode-line-function)
7992 (todo-nondiary-marker, todo-number-prefix)
7993 (todo-print-buffer-function, todo-show-current-file)
7994 (todo-show-done-only, todo-show-first, todo-show-with-done)
7995 (todo-skip-archived-categories, todo-top-priorities-overrides)
7996 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
7997 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
7998 New defcustoms.
7999 (todo-category-done, todo-date-pattern, todo-date-string-start)
8000 (todo-diary-items-buffer, todo-done-string-start)
8001 (todo-filtered-items-buffer, todo-item-start)
8002 (todo-month-abbrev-array, todo-month-name-array)
8003 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
8004 (todo-top-priorities-buffer): New defconsts.
8005 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
8006 (todo-categories-with-marks, todo-category-string-face)
8007 (todo-comment-face, todo-comment-string, todo-current-todo-file)
8008 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
8009 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
8010 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
8011 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
8012 (todo-font-lock-keywords, todo-global-current-todo-file)
8013 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
8014 (todo-insertion-commands-args)
8015 (todo-insertion-commands-args-genlist)
8016 (todo-insertion-commands-names, todo-insertion-map)
8017 (todo-key-bindings-t, todo-key-bindings-t+a)
8018 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
8019 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
8020 (todo-nondiary-face, todo-print-buffer, todo-time-face)
8021 (todo-visited): New variables.
8022
8023 2013-06-21 Glenn Morris <rgm@gnu.org>
8024
8025 * play/cookie1.el (cookie-apropos): Add optional display argument.
8026 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
8027 (psychoanalyze-pinhead): Use cookie-doctor.
8028
8029 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
8030
8031 * emacs-lisp/package.el (tar-get-file-descriptor)
8032 (tar--extract): Declare.
8033
8034 2013-06-21 Eduard Wiebe <usenet@pusto.de>
8035
8036 Extend flymake's warning predicate to be a function (bug#14217).
8037 * progmodes/flymake.el (flymake-warning-predicate): New.
8038 (flymake-parse-line): Use it.
8039 (flymake-warning-re): Make obsolete alias to
8040 `flymake-warning-predicate'.
8041
8042 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
8043
8044 * emacs-lisp/package.el (package-alist): Include obsolete packages.
8045 (package-obsolete-list): Remove.
8046 (package-activate): Remove min-version argument. Add `force' argument.
8047 Adjust to new package-alist format.
8048 (package-mark-obsolete): Remove.
8049 (package-unpack): Force reload of the package's autoloads.
8050 (package-installed-p): Check builtins if the installed package is not
8051 recent enough.
8052 (package-initialize): Don't reset package-obsolete-list.
8053 Don't specify which package version to activate.
8054 (package-process-define-package, describe-package-1)
8055 (package-menu--generate): Adjust to new package-alist format.
8056
8057 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
8058
8059 * allout-widgets.el (allout-widgets-mode-off)
8060 (allout-widgets-mode-on, allout-widgets-pre-command-business)
8061 (allout-widgets-post-command-business)
8062 (allout-widgets-after-copy-or-kill-function)
8063 (allout-widgets-after-undo-function, allout-test-range-overlaps)
8064 (allout-decorate-item-and-context)
8065 (allout-graphics-modification-handler): Fix typos in docstrings.
8066 (allout-get-or-create-parent-widget): Use `looking-at-p'.
8067
8068 * cmuscheme.el (scheme-start-file): Doc fix.
8069 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
8070 (scheme-input-filter): Use `string-match-p'.
8071
8072 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
8073
8074 * dired-x.el: Use Dired consistently in docstrings.
8075
8076 * dired.el: Use Dired consistently in docstrings.
8077 (dired-readin, dired-mode): Use `setq-local'.
8078 (dired-switches-alist): Make defvar-local.
8079 (dired-buffers-for-dir): Use `zerop'.
8080 (dired-safe-switches-p, dired-switches-escape-p)
8081 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
8082 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
8083 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
8084 (dired-goto-next-nontrivial-file): Use `string-match-p'.
8085 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
8086 (dired-toggle-marks, dired-mark-files-containing-regexp)
8087 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
8088 (dired-flag-auto-save-files, dired-flag-backup-files):
8089 Use `looking-at-p'.
8090 (dired-mark-files-regexp, dired-build-subdir-alist):
8091 Use `string-match-p', `looking-at-p'.
8092
8093 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
8094 (direct-print-region-helper): Use `string-match-p'.
8095
8096 2013-06-21 Leo Liu <sdl.web@gmail.com>
8097
8098 * comint.el (comint-redirect-results-list-from-process):
8099 Fix infinite loop.
8100
8101 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
8102
8103 * net/eww.el (eww-update-header-line-format): Quote % characters.
8104
8105 2013-06-21 Glenn Morris <rgm@gnu.org>
8106
8107 * play/cookie1.el (cookie): New custom group.
8108 (cookie-file): New option.
8109 (cookie-check-file): New function.
8110 (cookie): Make it interactive. Make start and end messages optional.
8111 Interactively, display the result. Default to cookie-file.
8112 (cookie-insert): Default to cookie-file.
8113 (cookie-snarf): Make start and end messages optional.
8114 Default to cookie-file. Use with-temp-buffer.
8115 (cookie-read): Rename from read-cookie.
8116 Make start and end messages optional. Default to cookie-file.
8117 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
8118 Do not autoload it.
8119 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
8120 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
8121
8122 2013-06-21 Leo Liu <sdl.web@gmail.com>
8123
8124 * progmodes/octave.el (octave-mode): Backward compatibility fix.
8125
8126 2013-06-21 Glenn Morris <rgm@gnu.org>
8127
8128 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
8129
8130 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
8131 Daniel Hackney <dan@haxney.org>
8132
8133 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
8134 Consolidate the single-file vs tarball code.
8135 (package-desc-suffix): New function.
8136 (package-desc-full-name): Don't bother inlining it.
8137 (package-load-descriptor): Return the new package-desc.
8138 (package-mark-obsolete): Remove unused arg `package'.
8139 (package-unpack): Make it work for single files as well.
8140 Make it update package-alist.
8141 (package--make-autoloads-and-stuff): Rename from
8142 package--make-autoloads-and-compile. Don't compile any more.
8143 (package--compile): New function.
8144 (package-generate-description-file): New function, extracted from
8145 package-unpack-single.
8146 (package-unpack-single): Remove.
8147 (package--with-work-buffer): Add indentation and debugging info.
8148 (package-download-single): Remove.
8149 (package-install-from-archive): Rename from package-download-tar, make
8150 it take a pkg-desc, and make it work for single files as well.
8151 (package-download-transaction): Simplify.
8152 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
8153 external tar program.
8154 (package-install-from-buffer): Remove `pkg-desc' argument.
8155 Use package-tar-file-info for tar-mode buffers.
8156 (package-install-file): Simplify accordingly.
8157 (package-archive-base): Change to take a pkg-desc.
8158 * tar-mode.el (tar--check-descriptor): New function, extracted from
8159 tar-get-descriptor.
8160 (tar-get-descriptor): Use it.
8161 (tar-get-file-descriptor): New function.
8162 (tar--extract): New function, extracted from tar-extract.
8163 (tar--extract): Use it.
8164 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
8165 case the summary uses non-ascii. Adjust to new calling convention of
8166 package-tar-file-info.
8167
8168 2013-06-21 Leo Liu <sdl.web@gmail.com>
8169
8170 * comint.el (comint-redirect-results-list-from-process):
8171 Fix random delay. (Bug#14681)
8172
8173 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
8174
8175 * profiler.el (profiler-format-number): Use log, not log10.
8176
8177 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
8178
8179 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
8180
8181 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
8182
8183 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
8184 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
8185 yet available.
8186 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
8187 (AUTOGENEL): ... here.
8188 * emacs-lisp/cl-macs.el (cl--sublis): New function.
8189 (cl--defsubst-expand): Use it.
8190
8191 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
8192
8193 * subr.el (log10): Move here from C code, and declare as obsolete.
8194 All uses of (log10 X) replaced with (log X 10).
8195
8196 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
8197
8198 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
8199 Declare with `defvar-local'.
8200 (tabulated-list-use-header-line, tabulated-list-entries)
8201 (tabulated-list-padding, tabulated-list-printer)
8202 (tabulated-list-sort-key): Declare with `defvar-local'.
8203 (tabulated-list-init-header, tabulated-list-print-fake-header):
8204 Use `setq-local'.
8205
8206 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
8207
8208 * arc-mode.el (archive-mode): Add `archive-write-file' to
8209 `write-contents-functions' also for remote files. (Bug#14652)
8210
8211 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
8212
8213 * cus-edit.el (custom-commands): Fix typos.
8214 (custom-display): Fix tooltip text.
8215 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
8216 Fix typos in docstrings.
8217 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
8218 (custom-unlispify-menu-entry, custom-magic-value-create)
8219 (custom-add-see-also, custom-group-value-create): Use ?\s.
8220 (custom-guess-type, customize-apropos, editable-field)
8221 (custom-face-value-create): Use `string-match-p'.
8222 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
8223
8224 * custom.el (custom-load-symbol): Use `string-match-p'.
8225
8226 * ansi-color.el: Convert to lexical binding.
8227 (ansi-colors): Fix URL.
8228 (ansi-color-context, ansi-color-context-region): Use defvar-local.
8229 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
8230 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
8231
8232 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
8233
8234 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
8235
8236 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
8237
8238 2013-06-19 Tom Tromey <tromey@redhat.com>
8239
8240 * net/eww.el (eww-top-url): Remove.
8241 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
8242 (eww-render): Set new variables. Don't set eww-top-url.
8243 (eww-handle-link): Handle "prev", "home", and "contents".
8244 Downcase the rel text.
8245 (eww-top-url): Choose best top URL.
8246
8247 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
8248
8249 * net/eww.el: Rewrite to implement form elements "by hand" instead of
8250 relying in widget.el. Using widget.el leads to too many
8251 user interface inconsistencies.
8252 (eww-self-insert): Implement entering commands in text fields.
8253 (eww-process-text-input): New function to make text input field editing
8254 work.
8255 (eww-submit): Rewrite to use the new-style form methods.
8256 (eww-select-display): Display the correct selected item.
8257 (eww-change-select): Implement changing the select value.
8258 (eww-toggle-checkbox): Implement radio/checkboxes.
8259 (eww-update-field): Fix compilation error.
8260 (eww-tag-textarea): Implement <textarea>.
8261
8262 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
8263 we don't shadow mode-specific bindings.
8264
8265 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
8266 nothing to push.
8267
8268 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
8269
8270 2013-06-19 Glenn Morris <rgm@gnu.org>
8271
8272 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
8273
8274 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
8275
8276 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
8277 not needed.
8278
8279 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
8280
8281 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
8282
8283 * net/browse-url.el (browse-url-browser-function):
8284 `eww-browse-url' has the right calling signature, `eww' does not.
8285
8286 2013-06-19 Glenn Morris <rgm@gnu.org>
8287
8288 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
8289 Only eval autoloaded macros.
8290 (byte-compile-autoload): Only give the macro warning for macros.
8291
8292 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
8293 (ps-underlined-faces): Declare.
8294
8295 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
8296 (speedbar-add-supported-extension): Declare.
8297
8298 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
8299 Don't include a date stamp in the header of the generated file;
8300 it leads to needless differences between output files.
8301
8302 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
8303
8304 * net/secrets.el (secrets-struct-secret-content-type):
8305 Replace check of introspection data by a test call of "CreateItem".
8306 Some servers do not offer introspection.
8307
8308 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
8309
8310 * electric.el (electric-pair-mode): Improve interaction with
8311 electric-layout-mode.
8312 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
8313 (electric-pair-syntax): Use text-mode-syntax-table in comments
8314 and strings.
8315 (electric-pair--insert): New function.
8316 (electric-pair-post-self-insert-function): Use it and
8317 electric--after-char-pos.
8318
8319 2013-06-19 Leo Liu <sdl.web@gmail.com>
8320
8321 * progmodes/octave.el (octave-help): Fix regexp.
8322
8323 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
8324
8325 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
8326 (shr-table-horizontal-line): Allow nil as a value, and change the
8327 default.
8328 (shr-insert-table-ruler): Respect the nil value.
8329
8330 2013-06-18 Tom Tromey <tromey@barimba>
8331
8332 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
8333 New defvars.
8334 (eww-open-file): New defun.
8335 (eww-render): Initialize new variables.
8336 (eww-display-html): Handle "link" and "a".
8337 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
8338 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
8339 (eww-back-url): Rename from eww-previous-url.
8340 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
8341 New defuns.
8342
8343 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
8344
8345 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
8346 Distinguish ternary operator tokens from slash symbol and slash
8347 char literal.
8348
8349 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
8350
8351 Convert symbol prettification into minor mode and global minor mode.
8352
8353 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
8354 `prog-prettify-symbols', and make a local defvar instead of defcustom.
8355 (prettify-symbols--keywords): Rename from
8356 `prog-prettify-symbols-alist' and make a local defvar.
8357 (prettify-symbols--compose-symbol): Rename from
8358 `prog--prettify-font-lock-compose-symbol'.
8359 (prettify-symbols--make-keywords): Rename from
8360 `prog-prettify-font-lock-symbols-keywords' and simplify.
8361 (prog-prettify-install): Remove.
8362 (prettify-symbols-mode): New minor mode, based on
8363 `prog-prettify-install'.
8364 (turn-on-prettify-symbols-mode): New function.
8365 (global-prettify-symbols-mode): New globalized minor mode.
8366
8367 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
8368 * progmodes/cfengine.el (cfengine3-mode):
8369 * progmodes/perl-mode.el (perl-mode): Don't call
8370 `prog-prettify-install'; set `prettify-symbols-alist' instead.
8371
8372 2013-06-18 Juri Linkov <juri@jurta.org>
8373
8374 * files-x.el (modify-file-local-variable-message): New function.
8375 (modify-file-local-variable)
8376 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
8377 and call `modify-file-local-variable-message' when it's non-nil.
8378 (add-file-local-variable, delete-file-local-variable)
8379 (add-file-local-variable-prop-line)
8380 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
8381 and use it. (Bug#9820)
8382
8383 2013-06-18 Juri Linkov <juri@jurta.org>
8384
8385 * emulation/vi.el (vi-shell-op):
8386 * emulation/vip.el (vip-execute-com, ex-command):
8387 * emulation/viper-cmd.el (viper-exec-bang):
8388 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
8389 the call of `shell-command-on-region'. (Bug#14637)
8390
8391 * simple.el (shell-command-on-region): Doc fix.
8392
8393 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8394
8395 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
8396 (bug#14633).
8397
8398 2013-06-18 Glenn Morris <rgm@gnu.org>
8399
8400 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
8401
8402 * newcomment.el (comment-search-forward, comment-search-backward):
8403 Doc fix. (Bug#14376)
8404
8405 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
8406
8407 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
8408 (buffer-face-mode-invoke): Doc fix.
8409
8410 2013-06-18 Matthias Meulien <orontee@gmail.com>
8411
8412 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
8413 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
8414
8415 2013-06-18 Glenn Morris <rgm@gnu.org>
8416
8417 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
8418 Replace obsolete function generic-make-keywords with its expansion.
8419
8420 * progmodes/python.el (ffap-alist): Declare.
8421
8422 * textmodes/reftex.el (bibtex-mode-map): Declare.
8423
8424 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8425
8426 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
8427 (package-unpack, package-unpack-single): Return the pkg-dir.
8428 (package-download-transaction): Use it to update package-alist.
8429
8430 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
8431
8432 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
8433 possible choice.
8434
8435 2013-06-17 Juri Linkov <juri@jurta.org>
8436
8437 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
8438
8439 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
8440
8441 * emacs-lisp/package.el (package-load-descriptor):
8442 Remove `with-syntax-table' call, `read' doesn't need it.
8443 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
8444
8445 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
8446
8447 * startup.el (command-line): Expand package name returned by
8448 `package--description-file' (bug#14639).
8449
8450 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
8451
8452 * emacs-lisp/package.el (package-load-descriptor): Do not call
8453 `emacs-lisp-mode', just use its syntax table.
8454
8455 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
8456
8457 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
8458 `font-lock-extra-managed-props' if any prettifying keyword is added.
8459 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
8460 (prog-mode): Use `setq-local'.
8461
8462 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
8463
8464 * international/characters.el (standard-case-table): Set syntax of ?»
8465 and ?« to punctuation.
8466
8467 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
8468
8469 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
8470 Save relevant match data before calling `syntax-ppss' (bug#14595).
8471
8472 2013-06-15 Juri Linkov <juri@jurta.org>
8473
8474 * files-x.el (modify-file-local-variable-prop-line): Add local
8475 variables to the end of the existing comment on the first line.
8476 Use `file-auto-mode-skip' to skip interpreter magic line,
8477 and also skip XML declaration.
8478
8479 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
8480
8481 * startup.el (package--builtin-versions): New var.
8482 (package-subdirectory-regexp): Remove.
8483 (package--description-file): Hard code its value instead.
8484
8485 * emacs-lisp/package.el: Don't activate packages older than builtin.
8486 (package-obsolete-list): Rename from package-obsolete-alist, and make
8487 it into a simple list of package-desc.
8488 (package-strip-version): Remove.
8489 (package-built-in-p): Use package--builtin-versions.
8490 (package-mark-obsolete): Simplify.
8491 (package-process-define-package): Mark it obsolete if older than the
8492 builtin version.
8493 (package-handle-response): Use line-end-position.
8494 (package-read-archive-contents, package--download-one-archive):
8495 Simplify.
8496 (package--add-to-archive-contents): Skip if older than the builtin or
8497 installed version.
8498 (package-menu-describe-package): Fix last change.
8499 (package-list-unversioned): New var.
8500 (package-menu--generate): Use it.
8501
8502 * emacs-lisp/autoload.el: Manage package--builtin-versions.
8503 (autoload--insert-text, autoload--insert-cookie-text): New functions.
8504 (autoload-builtin-package-versions): New variable.
8505 (autoload-generate-file-autoloads): Use them.
8506 Remove the list of autoloaded functions/macros from the
8507 (autoload...) comments.
8508
8509 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
8510
8511 2013-06-15 Eli Zaretskii <eliz@gnu.org>
8512
8513 * simple.el (line-move-partial): Don't jump to the next screen
8514 line as soon as it becomes visible. Instead, continue enlarging
8515 the vscroll until the portion of a tall screen line that's left on
8516 display is about the height of the frame's default font.
8517 (Bug#14567)
8518
8519 2013-06-15 Glenn Morris <rgm@gnu.org>
8520
8521 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
8522 compilation-error-regexp-alist void, or local while let-bound.
8523
8524 * progmodes/make-mode.el (makefile-mode-syntax-table):
8525 Treat "=" as punctuation. (Bug#14614)
8526
8527 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
8528
8529 * help-fns.el (describe-variable):
8530 Add extra line for permanent-local variables.
8531
8532 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
8533
8534 * progmodes/scheme.el (scheme-font-lock-keywords-2):
8535 Add export, import, library. (Bug#9164)
8536 (library): Set indent function.
8537
8538 2013-06-14 Glenn Morris <rgm@gnu.org>
8539
8540 * term/xterm.el (xterm--query):
8541 Stop after first matching handler. (Bug#14615)
8542
8543 2013-06-14 Ivan Kanis <ivan@kanis.fr>
8544
8545 Add support for dired in saveplace.
8546 * dired.el (dired-initial-position-hook): New variable.
8547 (dired-initial-position): Call hook to place cursor position.
8548 * saveplace.el (save-place-to-alist): Add dired position.
8549 (save-place-dired-hook): New function.
8550
8551 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
8552
8553 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
8554 through a symbol rather than letrec.
8555
8556 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
8557 (package-desc): Add `dir' field.
8558 (package-desc-full-name): New function.
8559 (package-load-descriptor): Combine the two arguments. Don't use `load'.
8560 (package-maybe-load-descriptor): Remove.
8561 (package-load-all-descriptors): Just call package-load-descriptor.
8562 (package--disabled-p): New function.
8563 (package-desc-vers, package-desc-doc): Remove aliases.
8564 (package--dir): Remove function.
8565 (package-activate): Check if a package is disabled.
8566 (package-process-define-package): New function, extracted from
8567 define-package.
8568 (define-package): Turn into a place holder.
8569 (package-unpack-single, package-tar-file-info):
8570 Use package--description-file.
8571 (package-compute-transaction): Use package--disabled-p.
8572 (package-download-transaction): Don't call
8573 package-maybe-load-descriptor since they're all loaded anyway.
8574 (package-install): Change argument to be a pkg-desc.
8575 (package-delete): Use a single pkg-desc argument.
8576 (describe-package-1): Use package-desc-dir instead of package--dir.
8577 Use package-desc property instead of package-symbol.
8578 (package-install-button-action): Adjust accordingly.
8579 (package--push): Rewrite.
8580 (package-menu--print-info): Adjust accordingly. Change the ID format
8581 to be a pkg-desc.
8582 (package-menu-describe-package, package-menu-get-status)
8583 (package-menu--find-upgrades, package-menu-mark-upgrades)
8584 (package-menu-execute, package-menu--name-predicate):
8585 Adjust accordingly.
8586 * startup.el (package--description-file): New function.
8587 (command-line): Use it.
8588 * emacs-lisp/package-x.el (package-upload-buffer-internal):
8589 Use package-desc-version.
8590
8591 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
8592 (byte-compile-preprocess): Use it.
8593 (byte-compile-file-form-defalias): Try a bit harder to use macros we
8594 can't quite recognize.
8595 (byte-compile-add-to-list): Remove.
8596 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
8597 (cconv-closure-convert): Add assertion.
8598
8599 * emacs-lisp/map-ynp.el: Use lexical-binding.
8600 (map-y-or-n-p): Remove unused vars `tail' and `object'.
8601 Factor out some repeated code.
8602
8603 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
8604
8605 * subr.el (with-eval-after-load): New macro.
8606 (eval-after-load): Allow form to be a function.
8607 take advantage of lexical-binding.
8608 (do-after-load-evaluation): Use dolist and adjust to new format.
8609 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
8610
8611 2013-06-13 Juri Linkov <juri@jurta.org>
8612
8613 * replace.el (perform-replace): Display "symbol " and other search
8614 modes from `isearch-message-prefix' in the *Help* buffer.
8615
8616 * isearch.el (isearch-query-replace): Add " symbol" and other
8617 possible search modes from `isearch-message-prefix' to the prompt.
8618 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
8619 when reading a regexp to collect.
8620
8621 2013-06-13 Juri Linkov <juri@jurta.org>
8622
8623 * isearch.el (word-search-regexp): Match whitespace if the search
8624 string begins or ends in whitespace. The LAX arg is applied to
8625 both ends of the search string. Use `regexp-quote' and explicit
8626 \< and \> instead of \b. Use \` and \' instead of ^ and $.
8627 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
8628 boundaries are replaced with symbol boundaries, and characters
8629 between symbols match non-word non-symbol syntax. (Bug#14602)
8630
8631 2013-06-13 Juri Linkov <juri@jurta.org>
8632
8633 * isearch.el (isearch-del-char): Don't exceed the length of
8634 `isearch-string' by the prefix arg. (Bug#14563)
8635
8636 2013-06-13 Juri Linkov <juri@jurta.org>
8637
8638 * isearch.el (isearch-yank-word, isearch-yank-line)
8639 (isearch-char-by-name, isearch-quote-char)
8640 (isearch-printing-char, isearch-process-search-char):
8641 Add optional count prefix arg. (Bug#14563)
8642
8643 * international/isearch-x.el
8644 (isearch-process-search-multibyte-characters):
8645 Add optional count prefix arg.
8646
8647 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
8648
8649 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
8650 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
8651 lexical-binding.
8652
8653 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
8654
8655 * subr.el (set-temporary-overlay-map): Add on-exit argument.
8656
8657 2013-06-13 Glenn Morris <rgm@gnu.org>
8658
8659 * startup.el (tty-handle-args):
8660 Don't just discard "--" and anything after. (Bug#14608)
8661
8662 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
8663
8664 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
8665
8666 Implement changes in Secret Service API. Make it backward compatible.
8667 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
8668 (secrets-create-item): Use it. Prefix properties with interface.
8669
8670 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
8671
8672 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
8673 (term-emulate-terminal): Respect term-suppress-hard-newline.
8674
8675 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
8676
8677 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
8678 Only remove a `thumb-file' overlay. (Bug#14548)
8679
8680 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
8681
8682 * mail/reporter.el (reporter-submit-bug-report):
8683 Handle missing package-name. (Bug#14600)
8684
8685 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8686
8687 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
8688 (reftex-citation-prompt, reftex-default-bibliography)
8689 (reftex-bib-or-thebib, reftex-get-bibfile-list)
8690 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
8691 (reftex-bib-sort-author, reftex-bib-sort-year)
8692 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
8693 (reftex-extract-bib-entries-from-thebibliography)
8694 (reftex-get-bibkey-default, reftex-get-bib-names)
8695 (reftex-parse-bibtex-entry, reftex-get-bib-field)
8696 (reftex-format-bib-entry, reftex-parse-bibitem)
8697 (reftex-format-bibitem, reftex-do-citation)
8698 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
8699 (reftex-restrict-bib-matches, reftex-extract-bib-file)
8700 (reftex-insert-bib-matches, reftex-format-citation)
8701 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
8702 (reftex-create-bibtex-file): Add docstrings, mostly by converting
8703 existing comments into docstrings.
8704
8705 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
8706
8707 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
8708
8709 2013-06-12 Andreas Schwab <schwab@suse.de>
8710
8711 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
8712 for auto-save files.
8713
8714 2013-06-12 Glenn Morris <rgm@gnu.org>
8715
8716 * ido.el (ido-delete-ignored-files): Remove.
8717 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
8718 Go back to calling ido-ignore-item-p directly.
8719
8720 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
8721
8722 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
8723
8724 * ido.el (ido-delete-ignored-files): New function,
8725 split from ido-make-file-list-1.
8726 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
8727 (ido-make-file-list-1): Use ido-delete-ignored-files.
8728
8729 2013-06-12 Leo Liu <sdl.web@gmail.com>
8730
8731 * progmodes/octave.el (inferior-octave-startup)
8732 (inferior-octave-completion-table)
8733 (inferior-octave-track-window-width-change)
8734 (octave-eldoc-function-signatures, octave-help)
8735 (octave-find-definition): Use single quoted strings.
8736 (inferior-octave-startup-args): Change default value.
8737 (inferior-octave-startup): Do not hard code "-i" and
8738 "--no-line-editing".
8739 (inferior-octave-resync-dirs): Add optional arg NOERROR.
8740 (inferior-octave-directory-tracker): Use it.
8741 (octave-goto-function-definition): Robustify.
8742 (octave-help): Support highlighting operators in 'See also'.
8743 (octave-find-definition): Find subfunctions only in Octave mode.
8744
8745 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
8746
8747 * help-fns.el (help-fns--compiler-macro): If the handler function is
8748 named, then put a link to it.
8749 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
8750 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
8751 (cl-typep): Use it.
8752 (cl-eval-when): Simplify debug spec.
8753 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
8754 compiler-macro function instead of setting `compiler-macro-file'.
8755
8756 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
8757
8758 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
8759 * vc/vc-hooks.el (vc-stay-local): Doc fix.
8760
8761 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
8762 Daniel Hackney <dan@haxney.org>
8763
8764 First part of Daniel Hackney's patch to package.el.
8765 * emacs-lisp/package.el: Use defstruct.
8766 (package-desc): New, main struct.
8767 (package--bi-desc, package--ac-desc): New structs, used to describe the
8768 format in external files.
8769 (package-desc-vers): Replace with package-desc-version accessor.
8770 (package-desc-doc): Replace with package-desc-summary accessor.
8771 (package-activate-1): Remove `package' arg since the pkg-vec now
8772 includes the name.
8773 (define-package): Use package-desc-from-define.
8774 (package-unpack-single): Change file-name arg to be a symbol.
8775 (package--add-to-archive-contents): Use package-desc-create and new
8776 accessor functions to package--ac-desc.
8777 (package-buffer-info, package-tar-file-info): Return a package-desc.
8778 (package-install-from-buffer): Remove `type' argument. Change pkg-info
8779 arg to be a package-desc.
8780 (package-install-file): Adjust accordingly. Use \' to match EOS.
8781 (package--from-builtin): New function.
8782 (describe-package-1, package-menu--generate): Use it.
8783 (package--make-autoloads-and-compile): Change name arg to be a symbol.
8784 (package-generate-autoloads): Idem and return the name of the file.
8785 * emacs-lisp/package-x.el (package-upload-buffer-internal):
8786 Change pkg-info arg to be a package-desc.
8787 Use package-make-ac-desc.
8788 (package-upload-file): Use \' to match EOS.
8789 * finder.el (finder-compile-keywords): Use package-make-builtin.
8790
8791 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
8792
8793 * vc/vc.el (vc-deduce-fileset): Change error message.
8794 (vc-read-backend): New function.
8795 (vc-next-action): Use it.
8796
8797 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
8798
8799 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
8800 (prolog-font-lock-keywords): Use regexp-opt instead.
8801 Don't manually highlight strings.
8802 (prolog-mode-variables): Simplify comment-start-skip.
8803 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
8804
8805 * emacs-lisp/generic.el (generic--normalise-comments)
8806 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
8807 (generic-mode-set-comments): Use them.
8808 (generic-bracket-support): Use setq-local.
8809 (generic-make-keywords-list): Declare obsolete.
8810
8811 2013-06-11 Glenn Morris <rgm@gnu.org>
8812
8813 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
8814 Prettify after setting font-lock-defaults. (Bug#14574)
8815
8816 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
8817
8818 * replace.el (query-replace, occur-read-regexp-defaults-function)
8819 (replace-search):
8820 * subr.el (declare-function, number-sequence, local-set-key)
8821 (substitute-key-definition, locate-user-emacs-file)
8822 (with-silent-modifications, split-string, eval-after-load):
8823 Fix typos, remove unneeded backslashes and reflow some docstrings.
8824
8825 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
8826
8827 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
8828 default for Elisp files.
8829
8830 2013-06-11 Glenn Morris <rgm@gnu.org>
8831
8832 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
8833 although define-derived-mode was doing this anyway. (Bug#14583)
8834
8835 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
8836
8837 * allout.el (allout-encryption-plaintext-sanitization-regexps):
8838 Fix make-variable-buffer-local call to refer to the correct variable.
8839
8840 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
8841
8842 * eshell/em-term.el (eshell-visual-commands)
8843 (eshell-visual-subcommands, eshell-visual-options):
8844 Add summary line to docstrings. Add cross-references.
8845
8846 2013-06-10 Glenn Morris <rgm@gnu.org>
8847
8848 * epa.el (epa-read-file-name): New function. (Bug#14510)
8849 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
8850
8851 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
8852
8853 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
8854 output redirection to be ignored with visual commands.
8855
8856 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
8857
8858 * eshell/em-term.el (eshell-visual-command-p): New function.
8859 (eshell-term-initialize): Move long lambda to separate function
8860 eshell-visual-command-p.
8861 * eshell/em-dirs.el (eshell-dirs-initialise):
8862 * eshell/em-script.el (eshell-script-initialize):
8863 Add missing #' to lambda.
8864
8865 2013-06-08 Leo Liu <sdl.web@gmail.com>
8866
8867 * progmodes/octave.el (octave-add-log-current-defun): New function.
8868 (octave-mode): Set add-log-current-defun-function.
8869 (octave-goto-function-definition): Do not move point if not found.
8870 (octave-find-definition): Enhance to try subfunctions first.
8871
8872 2013-06-08 Glenn Morris <rgm@gnu.org>
8873
8874 * emacs-lisp/bytecomp.el (byte-compile-char-before)
8875 (byte-compile-backward-char, byte-compile-backward-word):
8876 Improve previous change, to handle non-explicit nil.
8877
8878 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
8879
8880 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
8881 (smie--opener/closer-at-point): New function.
8882 (smie--matching-block-data): Use it. Don't match from right after an
8883 opener or right before a closer. Obey smie-blink-matching-inners.
8884 Don't signal a mismatch for repeated inners like "switch..case..case".
8885
8886 2013-06-07 Leo Liu <sdl.web@gmail.com>
8887
8888 * progmodes/octave.el (octave-mode): Set comment-use-global-state
8889 to t. (Bug#14303)
8890 (octave-function-header-regexp): Fix. (Bug#14570)
8891 (octave-help-mode-finish-hook, octave-help-mode-finish):
8892 Remove. Just use temp-buffer-show-hook.
8893
8894 * newcomment.el (comment-search-backward): Revert last change.
8895 (Bug#14434)
8896
8897 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
8898
8899 2013-06-07 Eli Zaretskii <eliz@gnu.org>
8900
8901 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
8902 through xargs, to avoid failure due to MS-Windows limitations on
8903 command-line length.
8904
8905 2013-06-06 Glenn Morris <rgm@gnu.org>
8906
8907 * font-lock.el (lisp-font-lock-keywords-2):
8908 Treat user-error like error.
8909
8910 * emacs-lisp/bytecomp.el (byte-compile-char-before)
8911 (byte-compile-backward-char, byte-compile-backward-word):
8912 Handle explicit nil arguments. (Bug#14565)
8913
8914 2013-06-05 Alan Mackenzie <acm@muc.de>
8915
8916 * isearch.el (isearch-allow-prefix): New user option.
8917 (isearch-other-meta-char): Don't exit isearch when a prefix
8918 argument is typed whilst `isearch-allow-prefix' is non-nil.
8919 (Bug#9706)
8920
8921 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
8922
8923 * autorevert.el (auto-revert-notify-handler): Use memq.
8924 Hide assertion failure.
8925
8926 * skeleton.el: Use cl-lib.
8927 (skeleton-further-elements): Use defvar-local.
8928 (skeleton-insert): Use cl-progv.
8929
8930 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
8931
8932 * progmodes/prog-mode.el (prog-prettify-symbols)
8933 (prog-prettify-install): Update docstrings.
8934
8935 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
8936
8937 * simple.el: Move all the prog-mode code to prog-mode.el.
8938 * progmodes/prog-mode.el: New file.
8939 * loadup.el: Add prog-mode.el.
8940
8941 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
8942
8943 * simple.el (prog-prettify-symbols): Add version.
8944 (prog-prettify-install): Add convenience function to prettify symbols.
8945
8946 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
8947 (perl--augmented-font-lock-keywords-1)
8948 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
8949 variables and use it.
8950
8951 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
8952 (cfengine3-mode): Remove unneeded variable and use it.
8953
8954 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
8955 (lisp--augmented-font-lock-keywords-1)
8956 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
8957 Remove unneeded variables and use it.
8958
8959 2013-06-05 João Távora <joaotavora@gmail.com>
8960
8961 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
8962 to point when opening the connection. (Bug#14380)
8963
8964 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
8965
8966 * subr.el (load-history-regexp, load-history-filename-element)
8967 (eval-after-load, after-load-functions, do-after-load-evaluation)
8968 (eval-next-after-load, display-delayed-warnings)
8969 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
8970 definition of save-match-data.
8971 (overriding-local-map): Remove accidental obsolescence declaration.
8972
8973 * emacs-lisp/edebug.el (edebug-result): Move before first use.
8974
8975 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
8976
8977 Generalize symbol prettify support to prog-mode and implement it
8978 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
8979 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
8980 (prog--prettify-font-lock-compose-symbol)
8981 (prog-prettify-font-lock-symbols-keywords): New variables and
8982 functions to support symbol prettification.
8983 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
8984 (lisp--augmented-font-lock-keywords-1)
8985 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
8986 (lisp--prettify-symbols-alist): Implement prettify of lambda.
8987 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
8988 (cfengine3--prettify-symbols-alist, cfengine3-mode):
8989 Implement prettify of -> => :: strings.
8990 * progmodes/perl-mode.el (perl-prettify-symbols)
8991 (perl--font-lock-compose-symbol)
8992 (perl--font-lock-symbols-keywords): Move to prog-mode.
8993 (perl--prettify-symbols-alist): Prettify -> => :: strings.
8994 (perl-font-lock-keywords-1)
8995 (perl-font-lock-keywords-2): Remove explicit prettify support.
8996 (perl--augmented-font-lock-keywords)
8997 (perl--augmented-font-lock-keywords-1)
8998 (perl--augmented-font-lock-keywords-2, perl-mode):
8999 Implement prettify support.
9000
9001 2013-06-05 Leo Liu <sdl.web@gmail.com>
9002
9003 Re-implement smie matching block highlight using
9004 show-paren-data-function. (Bug#14395)
9005 * emacs-lisp/smie.el (smie-matching-block-highlight)
9006 (smie--highlight-matching-block-overlay)
9007 (smie--highlight-matching-block-lastpos)
9008 (smie-highlight-matching-block)
9009 (smie-highlight-matching-block-mode): Remove.
9010 (smie--matching-block-data-cache): New variable.
9011 (smie--matching-block-data): New function.
9012 (smie-setup): Use smie--matching-block-data for
9013 show-paren-data-function.
9014
9015 * progmodes/octave.el (octave-mode-menu): Fix.
9016 (octave-find-definition): Skip garbage lines.
9017
9018 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
9019
9020 Fix compilation error with simultaneous dynamic+lexical scoping.
9021 Add warning when a defvar appears after the first let-binding.
9022 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
9023 (byte-compile-close-variables): Initialize it.
9024 (byte-compile--declare-var): New function.
9025 (byte-compile-file-form-defvar)
9026 (byte-compile-file-form-define-abbrev-table)
9027 (byte-compile-file-form-custom-declare-variable): Use it.
9028 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
9029 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
9030 (byte-compile-bind): Handle dynamic bindings that shadow
9031 lexical bindings.
9032 (byte-compile-unbind): Make arg non-optional.
9033 (byte-compile-let): Simplify.
9034 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
9035 (cconv--analyse-function, cconv-analyse-form): Populate it.
9036 Protect byte-compile-bound-variables to limit the scope of defvars.
9037 (cconv-analyse-form): Add missing rule for (defvar <foo>).
9038 Remove unneeded rule for `declare'.
9039
9040 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
9041 so as to avoid depending on cl-adjoin at run-time.
9042 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
9043
9044 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
9045 (macroexp--warn-and-return): Use it.
9046
9047 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
9048
9049 * lisp/subr.el: Convert to lexical binding.
9050 (overriding-local-map): Make obsolete.
9051 (add-to-list): Doc fix. Add compiler macro.
9052 (read-key): Swap values of local maps.
9053
9054 2013-06-05 Leo Liu <sdl.web@gmail.com>
9055
9056 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
9057
9058 2013-06-04 Leo Liu <sdl.web@gmail.com>
9059
9060 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
9061 (compilation-auto-jump): Suppress the "Mark set" message to give
9062 way to exit message.
9063
9064 2013-06-04 Alan Mackenzie <acm@muc.de>
9065
9066 Remove faulty optimisation from indentation calculation.
9067 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
9068 search limit based on 2000 characters back from indent-point.
9069
9070 2013-06-03 Tassilo Horn <tsdh@gnu.org>
9071
9072 * eshell/em-term.el (cl-lib): Require `cl-lib'.
9073
9074 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
9075
9076 * emacs-lisp/lisp.el: Use lexical-binding.
9077 (lisp--local-variables-1, lisp--local-variables): New functions.
9078 (lisp--local-variables-completion-table): New var.
9079 (lisp-completion-at-point): Use it complete let-bound vars.
9080
9081 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
9082 eagerly (bug#14422).
9083
9084 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
9085
9086 * autorevert.el (auto-revert-notify-enabled)
9087 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
9088 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
9089 (auto-revert-notify-handler): Handle also gfilenotify.
9090
9091 * subr.el (file-notify-handle-event): New defun. Replacing ...
9092 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
9093 Remove.
9094
9095 2013-06-03 Juri Linkov <juri@jurta.org>
9096
9097 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
9098 `M-s h .'. (Bug#14427)
9099
9100 * hi-lock.el (highlight-symbol-at-point): New alias for the new
9101 command `hi-lock-face-symbol-at-point'.
9102 (hi-lock-face-symbol-at-point): New command.
9103 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
9104 (hi-lock-menu): Add `highlight-symbol-at-point'.
9105 (hi-lock-mode): Doc fix.
9106
9107 * isearch.el (isearch-forward-symbol-at-point): New command.
9108 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
9109 (isearch-highlight-regexp): Add a regexp which matches
9110 words/symbols for word/symbol mode.
9111
9112 * subr.el (find-tag-default-bounds): New function with the body
9113 mostly moved from `find-tag-default'.
9114 (find-tag-default): Move most code to `find-tag-default-bounds',
9115 call it and apply `buffer-substring-no-properties' afterwards.
9116
9117 2013-06-03 Tassilo Horn <tsdh@gnu.org>
9118
9119 * eshell/em-term.el (eshell-term-initialize):
9120 Use `cl-intersection' rather than `intersection'.
9121
9122 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
9123
9124 * vc/log-view.el: Doc fix.
9125 (log-view-mode-map): Copy keymap from `special-mode-map'.
9126
9127 2013-06-02 Eric Ludlam <zappo@gnu.org>
9128
9129 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
9130 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
9131 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
9132 (eieio-unbound, eieio-default-superclass)
9133 (eieio--define-field-accessors, method-static, method-before)
9134 (method-primary, method-after, method-num-lists)
9135 (method-generic-before, method-generic-primary)
9136 (method-generic-after, method-num-slots)
9137 (eieio-specialized-key-to-generic-key)
9138 (eieio--check-type, class-v, class-p)
9139 (eieio-class-name, define-obsolete-function-alias)
9140 (eieio-class-parents-fast, eieio-class-children-fast)
9141 (same-class-fast-p, class-constructor, generic-p)
9142 (generic-primary-only-p, generic-primary-only-one-p)
9143 (class-option-assoc, class-option, eieio-object-p)
9144 (class-abstract-p, class-method-invocation-order)
9145 (eieio-defclass-autoload-map, eieio-defclass-autoload)
9146 (eieio-class-un-autoload, eieio-defclass)
9147 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
9148 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
9149 (eieio--defgeneric-init-form, eieio-defgeneric-form)
9150 (eieio-defgeneric-reset-generic-form)
9151 (eieio-defgeneric-form-primary-only)
9152 (eieio-defgeneric-reset-generic-form-primary-only)
9153 (eieio-defgeneric-form-primary-only-one)
9154 (eieio-defgeneric-reset-generic-form-primary-only-one)
9155 (eieio-unbind-method-implementations)
9156 (eieio--defmethod, eieio--typep)
9157 (eieio-perform-slot-validation, eieio-validate-slot-value)
9158 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
9159 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
9160 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
9161 (eieio-slot-name-index, eieio-class-slot-name-index)
9162 (eieio-set-defaults, eieio-initarg-to-attribute)
9163 (eieio-attribute-to-initarg, eieio-c3-candidate)
9164 (eieio-c3-merge-lists, eieio-class-precedence-c3)
9165 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
9166 (eieio-class-precedence-list, eieio-generic-call-methodname)
9167 (eieio-generic-call-arglst, eieio-generic-call-key)
9168 (eieio-generic-call-next-method-list)
9169 (eieio-pre-method-execution-functions, eieio-generic-call)
9170 (eieio-generic-call-primary-only, eieiomt-method-list)
9171 (eieiomt-optimizing-obarray, eieiomt-install)
9172 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
9173 (eieio-generic-form, eieio-defmethod, make-obsolete)
9174 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
9175 (defclass): Remove `eval-and-compile' from macro.
9176 (call-next-method, shared-initialize): Instead of using
9177 `scoped-class' variable, use new eieio--scoped-class, and
9178 eieio--with-scoped-class.
9179 (initialize-instance): Rename local variable 'scoped-class' to
9180 'this-class' to remove ambiguitity from old global.
9181
9182 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
9183 eieio.el.
9184 (eieio--scoped-class-stack): New variable.
9185 (eieio--scoped-class): New fcn.
9186 (eieio--with-scoped-class): New scoping macro.
9187 (eieio-defclass): Use pushnew instead of add-to-list.
9188 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
9189 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
9190 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
9191 `scoped-class' variable, use new eieio--scoped-class, and
9192 eieio--with-scoped-class.
9193
9194 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
9195
9196 2013-06-02 Tassilo Horn <tsdh@gnu.org>
9197
9198 * eshell/esh-ext.el (eshell-external-command): Pass args to
9199 `eshell-find-interpreter'.
9200 (eshell-find-interpreter): Add new second parameter ARGS.
9201
9202 * eshell/em-script.el (eshell-script-initialize): Add second arg
9203 to the function added as MATCH to `eshell-interpreter-alist'.
9204
9205 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
9206 the function added as MATCH to `eshell-interpreter-alist'.
9207
9208 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
9209 (eshell-visual-options): New defcustom.
9210 (eshell-escape-control-x): Adapt docstring.
9211 (eshell-term-initialize): Test `eshell-visual-subcommands' and
9212 `eshell-visual-options' in addition to `eshell-visual-commands'.
9213 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
9214
9215 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
9216
9217 * progmodes/python.el (python-indent-block-enders): Add break,
9218 continue and raise keywords.
9219
9220 2013-06-01 Glenn Morris <rgm@gnu.org>
9221
9222 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
9223
9224 Plain (f)boundp silences compilation warnings since Emacs 22.1.
9225 * progmodes/cc-cmds.el (delete-forward-p):
9226 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
9227 * progmodes/cc-engine.el (buffer-syntactic-context):
9228 * progmodes/cc-fonts.el (face-property-instance):
9229 * progmodes/cc-mode.el (set-keymap-parents):
9230 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
9231 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
9232 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
9233 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
9234 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
9235
9236 * progmodes/cc-vars.el (other): Emacs has this widget since
9237 at least 21.1, so don't (re)define it.
9238
9239 * eshell/em-cmpl.el (eshell-cmpl-initialize):
9240 Replace the obsolete alias pcomplete-arg-quote-list.
9241
9242 2013-06-01 Leo Liu <sdl.web@gmail.com>
9243
9244 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
9245 punctuation syntax.
9246 (inferior-octave-minimal-columns)
9247 (inferior-octave-last-column-width): New variables.
9248 (inferior-octave-track-window-width-change): New function.
9249 (inferior-octave-mode): Adjust column width so that Octave output,
9250 for example from 'ls', can fit into the window nicely.
9251
9252 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
9253
9254 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
9255 Highlight expansions inside regexp literals.
9256
9257 2013-05-31 Glenn Morris <rgm@gnu.org>
9258
9259 * obsolete/sym-comp.el (symbol-complete):
9260 Replace obsolete completion-annotate-function.
9261
9262 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
9263
9264 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
9265
9266 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
9267 New function, checks if point is inside a literal that allows
9268 expression expansion.
9269 (ruby-syntax-propertize-expansion): Use it.
9270 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
9271 around the body.
9272
9273 2013-05-30 Juri Linkov <juri@jurta.org>
9274
9275 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
9276 to "\M-si".
9277 (isearch-invisible): New variable.
9278 (isearch-forward): Doc fix.
9279 (isearch-mode): Set `isearch-invisible'
9280 to the value of `search-invisible'.
9281 (isearch-toggle-case-fold): Doc fix.
9282 (isearch-toggle-invisible): New command.
9283 (isearch-query-replace): Let-bind `search-invisible'
9284 to the value of `isearch-invisible'.
9285 (isearch-search): Use `isearch-invisible' instead of
9286 `search-invisible'. Let-bind `search-invisible'
9287 to the value of `isearch-invisible'. (Bug#11378)
9288
9289 2013-05-30 Juri Linkov <juri@jurta.org>
9290
9291 * replace.el (perform-replace): Avoid `isearch-range-invisible'
9292 call when `query-flag' is nil and `search-invisible' is non-nil.
9293 (Bug#11746)
9294
9295 2013-05-30 Glenn Morris <rgm@gnu.org>
9296
9297 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
9298
9299 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
9300 (cc-require): Suppress spurious "noruntime" warnings.
9301 (cc-require-when-compile): Use fboundp, for sake of compiler.
9302
9303 * progmodes/cc-mode.el: Move load of cc-vars before that of
9304 cc-langs (which in turn loads cc-vars), to quieten compiler.
9305
9306 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
9307
9308 * paren.el: Simplify the code.
9309 (show-paren-mode): Always start the timer.
9310 (show-paren--idle-timer): Rename from show-paren-idle-timer.
9311 (show-paren--overlay, show-paren--overlay-1): Rename from
9312 show-paren-overlay and show-paren-overlay-1, and initialize to an
9313 overlay rather than to nil.
9314 (show-paren-function): Misc cleanup and simplifications.
9315
9316 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
9317
9318 * paren.el (show-paren-data-function): New hook.
9319 (show-paren--default): New function, extracted from show-paren-function.
9320 (show-paren-function): Use show-paren-data-function.
9321
9322 2013-05-30 Glenn Morris <rgm@gnu.org>
9323
9324 * ielm.el (ielm-map, ielm-complete-symbol):
9325 Use completion-at-point rather than obsolete functions.
9326 (inferior-emacs-lisp-mode): Doc fix.
9327 Set completion-at-point-functions, rather than
9328 comint-dynamic-complete-functions.
9329
9330 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
9331 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
9332 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
9333
9334 * image.el (image-animated-p): Tweak definition.
9335
9336 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
9337 (rlogin-process-connection-type): Tweak default. Add set-after.
9338 (rlogin-host): Doc fix.
9339 (rlogin): Tweak prompt.
9340 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
9341
9342 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
9343 * progmodes/tcl.el (inferior-tcl-mode-map):
9344 Use completion-at-point rather than obsolete alias.
9345
9346 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
9347
9348 * minibuffer.el (read-file-name-completion-ignore-case):
9349 Move before completion--in-region, for eager macro expansion.
9350
9351 2013-05-29 Juri Linkov <juri@jurta.org>
9352
9353 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
9354 for total count of matching lines. Add `global-matches' for total
9355 count of matches. Rename `matches' to `lines' for count of
9356 matching lines. Add `matches' for count of matches.
9357 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
9358 to `prev-line' for line number of prev match endpt.
9359 Increment `matches' for every match. Print the number of
9360 matching lines in the header.
9361 (occur-context-lines): Rename `lines' to `curr-line'.
9362 Rename `prev-lines' to `prev-line'. (Bug#14017)
9363
9364 2013-05-29 Juri Linkov <juri@jurta.org>
9365
9366 * replace.el (perform-replace): Add `skip-read-only-count',
9367 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
9368 Increment them for corresponding conditions and report the number
9369 of skipped occurrences in the final message. (Bug#11746)
9370 (query-replace, query-replace-regexp, query-replace-regexp-eval)
9371 (replace-string, replace-regexp): Doc fix.
9372
9373 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
9374
9375 * emacs-lisp/trace.el (trace--read-args): Provide a default.
9376
9377 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
9378 prog-mode-map (bug#14504).
9379
9380 2013-05-29 Leo Liu <sdl.web@gmail.com>
9381
9382 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
9383 (octave-help): Small simplification.
9384
9385 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
9386 off the highlight first.
9387
9388 2013-05-29 Glenn Morris <rgm@gnu.org>
9389
9390 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
9391 Handle idlwave-last-system-routine-info-cons-cell being nil.
9392
9393 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
9394 (idlwave-write-paths): Simplify via with-temp-buffer.
9395
9396 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
9397 * emulation/cua-rect.el: Also load cua-base at run time.
9398
9399 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
9400 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
9401 (cperl-imenu-on-info): Require imenu.
9402
9403 2013-05-28 Alan Mackenzie <acm@muc.de>
9404
9405 Handle "capitalised keywords" correctly.
9406 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
9407
9408 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
9409
9410 * eshell/em-unix.el: Add -r option to cp.
9411
9412 2013-05-28 Glenn Morris <rgm@gnu.org>
9413
9414 * vc/vc-arch.el (vc-exec-after): Declare.
9415 (vc-switches): Autoload.
9416 * vc/vc-bzr.el: No need to require vc when compiling.
9417 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
9418 (vc-resynch-buffer, vc-dir-refresh): Declare.
9419 (vc-setup-buffer, vc-switches): Autoload.
9420 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
9421 (vc-resynch-buffer): Declare.
9422 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
9423 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
9424 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
9425 (grep-read-regexp, grep-read-files, grep-expand-template)
9426 (vc-dir-refresh): Declare.
9427 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
9428 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
9429 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
9430 * vc/vc-mtn.el (vc-exec-after): Declare.
9431 (vc-switches): Autoload.
9432 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
9433 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
9434 (vc-file-tree-walk): Declare.
9435 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
9436 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
9437 (vc-tag-precondition, vc-rename-master): Autoload.
9438 * vc/vc-svn.el (vc-exec-after): Declare.
9439 (vc-switches, vc-setup-buffer): Autoload.
9440 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
9441 Autoload.
9442 (vc-resynch-buffer): Declare.
9443
9444 * obsolete/fast-lock.el (byte-compile-warnings):
9445 Don't warn about obsolete features in this obsolete file.
9446
9447 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
9448 Move definition before use.
9449
9450 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
9451 (dun-unix-verbs): Remove dun-zippy.
9452 (dun-zippy): Remove function.
9453
9454 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
9455
9456 2013-05-27 Juri Linkov <juri@jurta.org>
9457
9458 * replace.el (replace-search): New function with code moved out
9459 from `perform-replace'.
9460 (replace-highlight, replace-dehighlight): Move function definitions
9461 up closer to `replace-search'. (Bug#11746)
9462
9463 2013-05-27 Juri Linkov <juri@jurta.org>
9464
9465 * replace.el (perform-replace): Ignore invisible matches.
9466 In addition to checking `query-replace-skip-read-only', also
9467 filter out matches by calling `run-hook-with-args-until-failure'
9468 on `isearch-filter-predicates', and also check `search-invisible'
9469 for t or call `isearch-range-invisible'.
9470 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
9471
9472 2013-05-27 Juri Linkov <juri@jurta.org>
9473
9474 * isearch.el (isearch-filter-predicates): Rename from
9475 `isearch-filter-predicate'. Doc fix. (Bug#11378)
9476 (isearch-message-prefix): Display text from the property
9477 `isearch-message-prefix' of the currently active filters.
9478 (isearch-search): Don't compare `isearch-filter-predicate' with
9479 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
9480 on `isearch-filter-predicates'. Also check `search-invisible' for t
9481 or call `isearch-range-invisible'.
9482 (isearch-filter-visible): Make obsolete.
9483 (isearch-lazy-highlight-search):
9484 Call `run-hook-with-args-until-failure' on
9485 `isearch-filter-predicates' and use `isearch-range-invisible'.
9486
9487 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
9488 `isearch-filter-predicates' instead of `funcall'ing
9489 `isearch-filter-predicate'.
9490 (Info-mode): Set `Info-isearch-filter' to
9491 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
9492
9493 * dired-aux.el (dired-isearch-filter-predicate-orig):
9494 Remove variable.
9495 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
9496 (dired-isearch-filenames-end): Add and remove
9497 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
9498 instead of changing the value of `isearch-filter-predicate'.
9499 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
9500 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
9501 Put property `isearch-message-prefix' to "filename " on
9502 `dired-isearch-filter-filenames'.
9503
9504 * wdired.el (wdired-change-to-wdired-mode):
9505 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
9506 locally instead of changing `isearch-filter-predicate'.
9507 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
9508
9509 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
9510
9511 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
9512 return the commit hash (Bug#14459). Also set the
9513 `vc-git-detached' property.
9514 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
9515 (vc-git-mode-line-string): Use the same help-echo format whether
9516 in detached mode or not, because we know the actual revision now.
9517 When in detached mode, shorten the revision to 7 chars.
9518
9519 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
9520
9521 * emacs-lisp/easy-mmode.el (define-minor-mode):
9522 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
9523 mode hook and provide a docstring.
9524
9525 2013-05-27 Alan Mackenzie <acm@muc.de>
9526
9527 Remove spurious syntax-table text properties inserted by C-y.
9528 * progmodes/cc-mode.el (c-after-change): Also clear hard
9529 syntax-table property with value nil.
9530
9531 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
9532
9533 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
9534 when reading the events; the buffer layout shall not be changed.
9535
9536 2013-05-27 Leo Liu <sdl.web@gmail.com>
9537
9538 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
9539 New variable.
9540 (inferior-octave-directory-tracker): Automatically re-sync
9541 default-directory.
9542 (octave-help): Improve handling of 'See also'.
9543
9544 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
9545
9546 * doc-view.el: Minor naming convention tweaks.
9547 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
9548
9549 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
9550 even if there's no `display' property yet (bug#14435).
9551
9552 2013-05-25 Eli Zaretskii <eliz@gnu.org>
9553
9554 * subr.el (unmsys--file-name): Rename from reveal-filename.
9555
9556 * Makefile.in (custom-deps, finder-data, autoloads)
9557 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
9558 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
9559 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
9560
9561 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
9562
9563 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
9564 error-completion on the first 2 args of condition-case (bug#14446).
9565 Don't burp at EOB.
9566
9567 2013-05-25 Leo Liu <sdl.web@gmail.com>
9568
9569 * comint.el (comint-previous-matching-input): Do not flood the
9570 *Messages* buffer with trivial messages.
9571
9572 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
9573
9574 * progmodes/flymake.el (flymake-nop): Don't return a string.
9575 (flymake-set-at): Fix typo.
9576
9577 * simple.el (read--expression): New function, extracted from
9578 eval-expression. Set completion-at-point-functions (bug#14465).
9579 (eval-expression, eval-minibuffer): Use it.
9580
9581 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
9582
9583 * progmodes/flymake.el (flymake-save-buffer-in-file)
9584 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
9585 (flymake-selected-frame, flymake-log, flymake-ins-after)
9586 (flymake-set-at, flymake-get-buildfile-from-cache)
9587 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
9588 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
9589 Refine the doc string.
9590 (flymake-get-file-name-mode-and-masks): Reformat.
9591 (flymake-get-real-file-name-function): Fix a minor bug.
9592
9593 2013-05-24 Juri Linkov <juri@jurta.org>
9594
9595 * progmodes/grep.el (grep-mode-font-lock-keywords):
9596 Support =linenumber= format used by git-grep for lines with
9597 function names. (Bug#13549)
9598
9599 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
9600
9601 * progmodes/octave.el (octave-smie-rules): Return nil rather than
9602 0 after a semi-colon; it works better for smie-auto-fill.
9603 (octave--indent-new-comment-line): New function.
9604 (octave-indent-new-comment-line): Use it (indirectly).
9605 (octave-mode): Don't disable smie-auto-fill. Use add-function to
9606 modify comment-line-break-function.
9607
9608 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
9609 (smie-setup): Use add-function to set it.
9610
9611 2013-05-24 Sam Steingold <sds@gnu.org>
9612
9613 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
9614 argument (before the `interactive' argument).
9615
9616 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
9617
9618 * image-mode.el (image-mode-winprops): Add winprops to
9619 image-mode-winprops-alist before running
9620 image-mode-new-window-functions.
9621 * doc-view.el (doc-view-new-window-function): Don't delay
9622 doc-view-goto-page via timers (bug#14435).
9623
9624 2013-05-24 Tassilo Horn <tsdh@gnu.org>
9625
9626 * doc-view.el: Integrate with desktop.el. (Bug#14435)
9627 (doc-view-desktop-save-buffer): New function.
9628 (doc-view-restore-desktop-buffer): New function.
9629 (desktop-buffer-mode-handlers):
9630 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
9631 handler.
9632 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
9633 `desktop-save-buffer' function.
9634
9635 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
9636
9637 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
9638 (tramp-gvfs-file-name-handler): Raise a user error when
9639 `tramp-gvfs-enabled' is nil.
9640 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
9641 Do not raise a user error when loading package. (Bug#14447)
9642
9643 * net/xesam.el: Move to obsolete/.
9644
9645 2013-05-24 Glenn Morris <rgm@gnu.org>
9646
9647 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
9648
9649 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
9650
9651 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
9652 (Info-find-node, Man-getpage-in-background): Declare.
9653
9654 * mail/unrmail.el (unrmail):
9655 Replace obsolete detect-coding-with-priority.
9656
9657 * net/socks.el (socks-split-string): Use this rather than split-string.
9658 (socks-nslookup-host): Update for above change.
9659 (dynamic-choice, s5-dynamic-choice-match)
9660 (s5-dynamic-choice-match-inline, s5-widget-value-create):
9661 Comment out unused code.
9662
9663 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
9664 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
9665 (gud-tooltip-echo-area): Make obsolete.
9666 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
9667
9668 * progmodes/js.el (js--optimize-arglist): Declare.
9669
9670 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
9671
9672 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
9673 (ediff-window-C): Declare.
9674
9675 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
9676 Tweak requires to silence compiler.
9677
9678 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
9679 (he-search-string, he-tried-table, he-expand-list)
9680 (he-init-string, he-string-member, he-substitute-string)
9681 (he-reset-string): Declare.
9682
9683 * obsolete/options.el (list-options): Use custom-variable-p,
9684 rather than obsolete alias.
9685
9686 2013-05-23 Sam Steingold <sds@gnu.org>
9687
9688 * simple.el (shell-command-on-region): Pass the `replace' argument
9689 down to `call-process-region' to comply with the doc as reported on
9690 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
9691
9692 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
9693
9694 * emacs-lisp/smie.el (smie-indent-forward-token)
9695 (smie-indent-backward-token): Handle string tokens (bug#14381).
9696
9697 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9698
9699 * ielm.el (ielm-menu): New menu.
9700 (inferior-emacs-lisp-mode): Set comment-start.
9701
9702 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9703
9704 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
9705 Fix deactivate action.
9706
9707 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
9708 Add cleveref macros.
9709
9710 * lisp/textmodes/reftex-parse.el
9711 (reftex-locate-bibliography-files): Accept options for
9712 bibliography commands.
9713 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
9714 Add addbibresource. Basic Biblatex support.
9715
9716 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
9717
9718 * net/tramp-gvfs.el (top):
9719 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
9720 when loading package. (Bug#14447)
9721
9722 2013-05-23 Glenn Morris <rgm@gnu.org>
9723
9724 * progmodes/js.el: No need to load comint when compiling.
9725 (ring-insert, comint-send-string, comint-send-input)
9726 (comint-last-input-end, ido-chop): Declare.
9727
9728 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
9729 * vc/ediff-mult.el: Adjust requires.
9730 (ediff-directories-internal, ediff-directory-revisions-internal)
9731 (ediff-patch-file-internal): Declare.
9732 * vc/ediff-ptch.el: Adjust requires.
9733 (ediff-use-last-dir, ediff-buffers-internal): Declare.
9734 (ediff-find-file): Autoload.
9735 * vc/ediff-util.el: No need to load ediff when compiling.
9736 (ediff-regions-internal): Declare.
9737 * vc/ediff-wind.el: Adjust requires.
9738 (ediff-compute-toolbar-width): Define when compiling.
9739 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
9740 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
9741 (dired-get-filename, dired-get-marked-files)
9742 (ediff-last-dir-patch, ediff-patch-default-directory)
9743 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
9744 (ediff-patch-buffer-internal): Declare.
9745
9746 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
9747 (ispell-process, ispell-buffer-local-words, lm-summary)
9748 (lm-section-start, lm-section-end): Declare.
9749 (checkdoc-ispell-init): Simplify.
9750
9751 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
9752 (he-string-member, he-reset-string, he-substitute-string): Declare.
9753
9754 * eshell/em-ls.el: Adjust requires.
9755 (eshell-glob-regexp): Declare.
9756 * eshell/em-tramp.el: Adjust requires.
9757 (eshell-parse-command): Autoload.
9758 * eshell/em-xtra.el: Adjust requires.
9759 (eshell-parse-command): Autoload.
9760 * eshell/esh-ext.el: Adjust requires.
9761 (eshell-parse-command, eshell-close-handles): Autoload.
9762 * eshell/esh-io.el: Adjust requires.
9763 (eshell-output-filter): Autoload.
9764 * eshell/esh-util.el: No need to load tramp when compiling.
9765 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
9766 Declare.
9767 (eshell-parse-ange-ls): Require ange-ftp and tramp.
9768 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
9769 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
9770 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
9771 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
9772 * eshell/esh-opt.el, eshell/esh-proc.el:
9773 * eshell/esh-var.el: Adjust requires.
9774 * eshell/eshell.el: Do not require esh-util twice.
9775 (eshell-add-input-to-history): Declare.
9776 (eshell-command): Check history module is active before using it.
9777
9778 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
9779
9780 2013-05-22 Leo Liu <sdl.web@gmail.com>
9781
9782 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
9783
9784 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
9785
9786 * autorevert.el (auto-revert-notify-add-watch)
9787 (auto-revert-notify-handler): Add `attrib' for the inotify case,
9788 it indicates changes in file modification time.
9789
9790 2013-05-22 Glenn Morris <rgm@gnu.org>
9791
9792 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
9793 Always delete the autoloaded function from the noruntime and
9794 unresolved functions lists.
9795
9796 * allout.el: No need to load epa, epg, overlay when compiling.
9797 (epg-context-set-passphrase-callback, epg-list-keys)
9798 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
9799 (epg-key-user-id-list): Declare.
9800
9801 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
9802 (viper-set-parsing-style-toggling-macro)
9803 (viper-set-emacs-state-searchstyle-macros):
9804 Use called-interactively-p on Emacs.
9805 (viper-looking-back): Make it an obsolete alias. Update callers.
9806 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
9807 Use looking-back rather than viper-looking-back.
9808 (viper-tmp-insert-at-eob, viper-enlarge-region)
9809 (viper-read-string-with-history, viper-register-to-point)
9810 (viper-append-to-register, viper-change-state-to-vi)
9811 (viper-backward-char-carefully, viper-forward-char-carefully)
9812 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
9813 (viper-change-state-to-emacs): Declare.
9814 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
9815 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
9816 * emulation/viper-mous.el: Do not load viper-cmd.
9817 (viper-backward-char-carefully, viper-forward-char-carefully)
9818 (viper-forward-word, viper-adjust-window): Declare.
9819
9820 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
9821
9822 * progmodes/idlw-help.el (idlwave-help-fontify):
9823 Use called-interactively-p.
9824
9825 * term/w32console.el (w32-get-console-codepage)
9826 (w32-get-console-output-codepage): Declare.
9827
9828 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
9829 Remove unnecessary declarations.
9830 (dframe-message): Doc fix.
9831
9832 * info.el (dframe-select-attached-frame, dframe-current-frame):
9833 Declare.
9834
9835 * speedbar.el (speedbar-message): Make it an obsolete alias.
9836 Update all callers.
9837 (speedbar-with-attached-buffer)
9838 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
9839 (speedbar-with-writable): Use backquote.
9840 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
9841 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
9842 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
9843 rather than speedbar- aliases.
9844 * mail/rmail.el: Load dframe rather than speedbar when compiling.
9845 (speedbar-make-specialized-keymap, speedbar-insert-button)
9846 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
9847 (speedbar-do-function-pointer): Declare.
9848 (rmail-speedbar-button, rmail-speedbar-find-file)
9849 (rmail-speedbar-move-message):
9850 Use dframe-with-attached-buffer rather than speedbar- alias.
9851 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
9852 (dframe-message, speedbar-make-specialized-keymap)
9853 (speedbar-add-expansion-list, speedbar-mode-functions-list)
9854 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
9855 (speedbar-insert-button, dframe-select-attached-frame)
9856 (dframe-maybee-jump-to-attached-frame)
9857 (speedbar-change-initial-expansion-list)
9858 (speedbar-previously-used-expansion-list-name): Declare.
9859 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
9860 Use dframe-message, dframe-with-attached-buffer rather than
9861 speedbar- aliases.
9862 (gud-sentinel): Silence compiler.
9863 * progmodes/vhdl-mode.el (speedbar-refresh)
9864 (speedbar-do-function-pointer, speedbar-add-supported-extension)
9865 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
9866 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
9867 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
9868 (speedbar-file-lists, speedbar-make-tag-line)
9869 (speedbar-line-directory, speedbar-goto-this-file)
9870 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
9871 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
9872 (speedbar-make-button, speedbar-reset-scanners)
9873 (speedbar-files-item-info, speedbar-line-text)
9874 (speedbar-find-file-in-frame, speedbar-set-timer)
9875 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
9876 (speedbar-with-writable): Do not (re)define it.
9877 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
9878 rather than speedbar- alias.
9879
9880 2013-05-21 Leo Liu <sdl.web@gmail.com>
9881
9882 * progmodes/octave.el (octave-mode-menu): Update and re-organize
9883 menu items.
9884 (octave-mode): Tweak fill-nobreak-predicate.
9885 (inferior-octave-startup): Check process to avoid infinite loop.
9886 (inferior-octave): Pop to buffer first to show abornmal process
9887 exit information.
9888
9889 2013-05-21 Glenn Morris <rgm@gnu.org>
9890
9891 * printing.el (pr-menu-bar): Define when compiling.
9892
9893 2013-05-21 Leo Liu <sdl.web@gmail.com>
9894
9895 * progmodes/octave.el (octave-auto-fill): Remove.
9896 (octave-indent-new-comment-line): Improve.
9897 (octave-mode): Use auto fill mode through
9898 comment-line-break-function and fill-nobreak-predicate.
9899 (octave-goto-function-definition): Support DEFUN_DLD.
9900 (octave-beginning-of-defun): Small tweak.
9901 (octave-help): Show parent directory.
9902
9903 2013-05-21 Glenn Morris <rgm@gnu.org>
9904
9905 * files.el (dired-unmark):
9906 * progmodes/gud.el (gdb-input): Update declarations.
9907
9908 * calculator.el (electric, ehelp): No need to load when compiling.
9909 (Electric-command-loop, electric-describe-mode): Declare.
9910
9911 * doc-view.el (doc-view-current-converter-processes): Move before use.
9912
9913 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9914 Move MODE-set-explicitly definition before use.
9915
9916 * international/mule-diag.el (mule-diag):
9917 Don't use obsolete window-system-version.
9918
9919 * mail/feedmail.el (smtpmail): No need to load when compiling.
9920 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
9921
9922 * mail/mail-utils.el (rfc822): No need to load when compiling.
9923 (rfc822-addresses): Autoload it.
9924 (mail-strip-quoted-names): Trivial simplification.
9925
9926 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
9927 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
9928
9929 * net/snmp-mode.el (tempo): Don't duplicate requires.
9930
9931 * progmodes/prolog.el (info): No need to load when compiling.
9932 (comint): Require before shell requires it.
9933 (Info-goto-node): Autoload it.
9934 (Info-follow-nearest-node): Declare.
9935 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
9936
9937 * textmodes/artist.el (picture-mode-exit): Declare.
9938
9939 * textmodes/reftex-parse.el (reftex-parse-from-file):
9940 Trivial rewrite so the compiler can parse it better.
9941
9942 2013-05-20 Leo Liu <sdl.web@gmail.com>
9943
9944 * progmodes/octave.el (octave-help-mode-map)
9945 (octave-help-mode-finish-hook): New variables.
9946 (octave-help-mode, octave-help-mode-finish): New functions.
9947 (octave-help): Use octave-help-mode.
9948
9949 2013-05-20 Glenn Morris <rgm@gnu.org>
9950
9951 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
9952
9953 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
9954
9955 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
9956 start at point, so that expansion starting right after opening
9957 slash in a regexp is recognized.
9958 (ruby-syntax-before-regexp-re): New defvar, extracted from
9959 ruby-syntax-propertize-function. Since the value of this regexp
9960 is looked up at runtime now, we should be able to turn
9961 `ruby-syntax-methods-before-regexp' into a defcustom later.
9962 (ruby-syntax-propertize-function): Split regexp matching into two
9963 parts, for opening and closing slashes. That allows us to skip
9964 over string interpolations and support multiline regexps.
9965 Don't call `ruby-syntax-propertize-expansions', instead use another rule
9966 for them, which calls `ruby-syntax-propertize-expansion'.
9967 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
9968 call to `ruby-syntax-propertize-function'.
9969 (ruby-syntax-propertize-expansion): Extracted from
9970 `ruby-syntax-propertize-expansions'. Handles one expansion.
9971 (ruby-syntax-propertize-percent-literal): Leave point right after
9972 the percent symbol, so that the expression expansion rule can
9973 propertize the contents.
9974 (ruby-syntax-propertize-heredoc): Leave point at bol following the
9975 heredoc openers.
9976 (ruby-syntax-propertize-expansions): Remove.
9977
9978 2013-05-18 Juri Linkov <juri@jurta.org>
9979
9980 * man.el (Man-default-man-entry): Remove `-' from the end
9981 of the default value. (Bug#14400)
9982
9983 2013-05-18 Glenn Morris <rgm@gnu.org>
9984
9985 * comint.el (comint-password-prompt-regexp):
9986 Allow "password for XXX" where XXX contains colons (eg https://...).
9987
9988 2013-05-18 Leo Liu <sdl.web@gmail.com>
9989
9990 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
9991 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
9992 (octave-source-directories): Don't check process.
9993 (octave-source-directories, octave-find-definition): Doc fix.
9994
9995 2013-05-18 Glenn Morris <rgm@gnu.org>
9996
9997 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
9998 Remove backspace/delete bindings. (Bug#14392)
9999
10000 * cus-dep.el (custom-make-dependencies): Sort the output.
10001 (custom-versions-load-alist): Convert comment to doc.
10002
10003 2013-05-17 Leo Liu <sdl.web@gmail.com>
10004
10005 * newcomment.el (comment-search-backward): Stricter in finding
10006 comment start. (Bug#14303)
10007
10008 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
10009 (octave-comment-start-skip): Properly anchored.
10010
10011 2013-05-17 Leo Liu <sdl.web@gmail.com>
10012
10013 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
10014 Clean up when turned off. (Bug#14395)
10015 (smie--highlight-matching-block-overlay): No longer buffer-local.
10016 (smie-highlight-matching-block): Adjust.
10017
10018 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
10019
10020 Doc string fix for "nanoseconds" (Bug#14406).
10021 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
10022 Fix doc string typo that had "nanoseconds" instead of "microseconds".
10023
10024 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
10025
10026 * calc/calc-units.el (math-extract-units): Preserve powers
10027 of units.
10028
10029 2013-05-17 Leo Liu <sdl.web@gmail.com>
10030
10031 * subr.el (delete-consecutive-dups): New function.
10032 * ido.el (ido-set-matches-1): Use it.
10033 * progmodes/octave.el (inferior-octave-completion-table): Use it.
10034 * ido.el (ido-remove-consecutive-dups): Remove.
10035
10036 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10037
10038 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
10039 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
10040 regexp-opt's `words'.
10041
10042 2013-05-16 Leo Liu <sdl.web@gmail.com>
10043
10044 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
10045 (smie--highlight-matching-block-overlay)
10046 (smie--highlight-matching-block-lastpos)
10047 (smie--highlight-matching-block-timer): New variables.
10048 (smie-highlight-matching-block): New function.
10049 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
10050 (smie-setup): Conditionally enable smie-blink-matching-open.
10051
10052 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
10053
10054 Sync with upstream verilog-mode r840.
10055 * progmodes/verilog-mode.el (verilog-mode-version)
10056 (verilog-mode-release-date): Update.
10057 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
10058 (verilog-sig-tieoff): Fix string error on
10059 AUTORESET with colon define, bug594. Reported by Andrew Hou.
10060 (verilog-read-decls): Fix parameters confusing
10061 AUTOINST interfaces, bug565. Reported by Leith Johnson.
10062
10063 2013-05-16 Eli Zaretskii <eliz@gnu.org>
10064
10065 * subr.el (reveal-filename): New function.
10066
10067 * loadup.el: Compute Emacs executable versions on MS-Windows,
10068 where executables have the .exe extension. Add a hard link
10069 emacs-XX.YY.ZZ.exe on MS-Windows.
10070
10071 * Makefile.in (XARGS_LIMIT): New variable.
10072 (custom-deps, finder-data, autoloads)
10073 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
10074 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
10075 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
10076 (compile-main): Limit xargs according to $(XARGS_LIMIT).
10077
10078 2013-05-16 Leo Liu <sdl.web@gmail.com>
10079
10080 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
10081 (octave-mode-menu, octave-mode-map): Remove its uses.
10082
10083 2013-05-16 Reto Zimmermann <reto@gnu.org>
10084
10085 Sync with upstream vhdl mode v3.34.2.
10086 * progmodes/vhdl-mode.el: Use `push' throughout.
10087 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
10088 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
10089 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
10090 (vhdl-actual-generic-name): New option to derive actual generic name.
10091 (vhdl-port-paste-signals): Replace formal by actual generics.
10092 (vhdl-beautify): New name for old group vhdl-align. Update users.
10093 (vhdl-beautify-options): New option.
10094 (vhdl-last-input-event): New compat alias. Use throughout.
10095 (vhdl-goto-line): Replace user level function `goto-line'.
10096 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
10097 vhdl-fix-statement-buffer.
10098 (vhdl-create-mode-menu): Add some entries.
10099 (vhdl-align-region-groups): Respect vhdl-beautify-options.
10100 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
10101 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
10102 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
10103 to force statements on one line.
10104 (vhdl-remove-trailing-spaces-region):
10105 New, split from vhdl-remove-trailing-spaces.
10106 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
10107 Respect vhdl-beautify-options.
10108 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
10109 (vhdl-update-sensitivity-list): Not add with index if exists without.
10110 Not include array index with signal. Ignore keywords in comments.
10111 (vhdl-get-visible-signals): Regexp tweaks.
10112 (vhdl-template-component-inst): Handle empty library.
10113 (vhdl-template-type): Add template for 'enum' type.
10114 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
10115 Use vhdl-replace-string.
10116 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
10117 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
10118 (vhdl-speedbar-initialize): Update for above name change.
10119 (vhdl-compose-wire-components): Fix in handling of constants.
10120 (vhdl-error-regexp-emacs-alist): New variable.
10121 (vhdl-error-regexp-add-emacs): New function;
10122 adds support for new compile.el (Emacs 22+)
10123 (vhdl-generate-makefile-1): Change target order for single lib. units.
10124 Allow use of absolute file names.
10125
10126 2013-05-16 Leo Liu <sdl.web@gmail.com>
10127
10128 * simple.el (prog-indent-sexp): Indent enclosing defun.
10129
10130 2013-05-15 Glenn Morris <rgm@gnu.org>
10131
10132 * cus-start.el (show-trailing-whitespace): Move to editing basics.
10133 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
10134 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
10135 (whitespace-highlight): Move to whitespace group.
10136
10137 * comint.el (comint-source):
10138 * pcmpl-linux.el (pcmpl-linux):
10139 * shell.el (shell-faces):
10140 * eshell/esh-opt.el (eshell-opt):
10141 * international/ccl.el (ccl): Remove empty custom groups.
10142
10143 * completion.el (dynamic-completion-mode):
10144 * jit-lock.el (jit-lock-debug-mode):
10145 * minibuffer.el (completion-in-region-mode):
10146 * type-break.el (type-break-mode-line-message-mode)
10147 (type-break-query-mode):
10148 * emulation/tpu-edt.el (tpu-edt-mode):
10149 * progmodes/subword.el (global-subword-mode, global-superword-mode):
10150 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
10151 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
10152
10153 * term/xterm.el (xterm): Change parent group to terminals.
10154
10155 * master.el (master): Remove empty custom group.
10156 (master-mode): Remove unused :group argument.
10157 * textmodes/refill.el (refill): Remove empty custom group.
10158 (refill-mode): Remove unused :group argument.
10159
10160 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
10161
10162 * cus-dep.el: Provide a feature.
10163 (custom-make-dependencies): Ignore dotfiles (dir-locals).
10164 Don't mistakenly ignore files whose basenames match a basename
10165 from preloaded-file-list (eg cedet/ede/simple.el).
10166 Add a fallback method for getting :group.
10167
10168 2013-05-15 Juri Linkov <juri@jurta.org>
10169
10170 * isearch.el (isearch-char-by-name): Rename from
10171 `isearch-insert-char-by-name'. Doc fix.
10172 (isearch-forward): Mention `isearch-char-by-name' in
10173 the docstring. (Bug#13348)
10174
10175 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
10176 `exit-minibuffer' instead of
10177 `isearch-nonincremental-exit-minibuffer'.
10178 (isearch-edit-string): Remove mention of
10179 `isearch-nonincremental-exit-minibuffer' from docstring.
10180 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
10181 (isearch-forward-exit-minibuffer)
10182 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
10183
10184 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
10185
10186 * loadup.el: Just use unversioned DOC.
10187
10188 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
10189 literals as extending to EOB.
10190 (nxml-last-fontify-end): Remove unused variable.
10191 (nxml-after-change1): Use with-silent-modifications.
10192 (nxml-extend-after-change-region): Simplify.
10193 (nxml-extend-after-change-region1): Remove function.
10194 (nxml-after-change1): Don't adjust for dependent regions.
10195 (nxml-fontify-matcher): Simplify.
10196 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
10197 (xmltok-add-dependent): Remove function.
10198 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
10199 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
10200 (xmltok-scan-prolog-after-processing-instruction-open): Treat
10201 unclosed <[[, <?, comment, and other literals as extending to EOB.
10202 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
10203 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
10204 Remove functions.
10205 (rng-do-some-validation-1): Don't mark dependent regions.
10206 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
10207 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
10208 (nxml-clear-dependent-regions): Remove functions.
10209 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
10210 (nxml-ensure-scan-up-to-date):
10211 Don't clear&mark dependent regions.
10212
10213 2013-05-15 Leo Liu <sdl.web@gmail.com>
10214
10215 * progmodes/octave.el (octave-goto-function-definition):
10216 Improve and fix callers.
10217
10218 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
10219
10220 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
10221 the setter (bug#14387).
10222
10223 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
10224 surrounding group (bug#14402).
10225
10226 2013-05-14 Juri Linkov <juri@jurta.org>
10227
10228 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
10229 (Bug#14390)
10230
10231 2013-05-14 Glenn Morris <rgm@gnu.org>
10232
10233 * progmodes/f90.el (f90-imenu-generic-expression):
10234 Fix typo in 2013-05-08 change. (Bug#14402)
10235
10236 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
10237
10238 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
10239 Remove signals for which replies are never received.
10240
10241 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
10242
10243 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
10244 (gdb-handler-alist, gdb-handler-number): Remove variables.
10245 (gdb-handler-list): New variable.
10246 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
10247 (gdb-pending-handler-p, gdb-handle-reply)
10248 (gdb-remove-all-pending-triggers): New functions.
10249 (gdb-discard-unordered-replies): New defcustom.
10250 (gdb-handler): New defstruct.
10251 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
10252 instead of gdb-pending-triggers. Update docstring.
10253 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
10254 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
10255 (gdb-var-update-handler, def-gdb-auto-update-trigger)
10256 (def-gdb-auto-update-handler, gdb-get-changed-registers)
10257 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
10258 (gdb-frame-handler): Pending triggers are now automatically managed.
10259 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
10260 Remove argument.
10261 (gdb-input): Automatically handles pending triggers. Update docstring.
10262 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
10263 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
10264 Update comments.
10265 (gdb-done-or-error): Now use gdb-handle-reply.
10266
10267 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
10268
10269 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
10270 gdb-debug-log.
10271
10272 2013-05-14 Glenn Morris <rgm@gnu.org>
10273
10274 * subr.el (user-emacs-directory-warning): New option.
10275 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
10276
10277 2013-05-14 Leo Liu <sdl.web@gmail.com>
10278
10279 * progmodes/octave.el (octave-font-lock-keywords): Fix error
10280 during redisplay.
10281 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
10282 (octave-font-lock-texinfo-comment): Fix invalid search bound
10283 error: wrong side of point.
10284
10285 2013-05-14 Glenn Morris <rgm@gnu.org>
10286
10287 * progmodes/flymake.el (flymake-xml-program): New option.
10288 (flymake-xml-init): Use it.
10289
10290 * term/xterm.el: Provide a feature.
10291
10292 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
10293
10294 2013-05-13 Glenn Morris <rgm@gnu.org>
10295
10296 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
10297 Add compat aliases as a hack workaround. (Bug#14384)
10298
10299 2013-05-13 Leo Liu <sdl.web@gmail.com>
10300
10301 * progmodes/octave.el (octave-indent-comment): Fix indentation for
10302 ###, and %!.
10303 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
10304 C-M-q.
10305 (octave-comment-start-skip): Include %!.
10306 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
10307
10308 2013-05-12 Leo Liu <sdl.web@gmail.com>
10309
10310 * progmodes/octave.el (inferior-octave-startup): Store the value
10311 of __octave_srcdir__ for octave-source-directories.
10312 (inferior-octave-check-process): New function refactored out of
10313 inferior-octave-send-list-and-digest.
10314 (octave-source-directories)
10315 (octave-find-definition-filename-function): New variables.
10316 (octave-source-directories)
10317 (octave-find-definition-default-filename): New functions.
10318 (octave-find-definition): Improve to find functions implemented in C++.
10319
10320 2013-05-12 Glenn Morris <rgm@gnu.org>
10321
10322 * calendar/diary-lib.el (diary-outlook-format-1):
10323 Don't include dayname in the output. (Bug#14349)
10324
10325 2013-05-11 Glenn Morris <rgm@gnu.org>
10326
10327 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
10328
10329 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
10330 Treat cc-provide like provide.
10331
10332 2013-05-11 Kevin Ryde <user42@zip.com.au>
10333
10334 * cus-dep.el (custom-make-dependencies):
10335 Use generated-autoload-load-name for the sake of files such
10336 such cedet/semantic/bovine/c.el, where the base file name
10337 is not in load-path. (Bug#5277)
10338
10339 2013-05-11 Glenn Morris <rgm@gnu.org>
10340
10341 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
10342 Provide features.
10343
10344 2013-05-11 Leo Liu <sdl.web@gmail.com>
10345
10346 * progmodes/octave.el (octave-indent-comment): Improve.
10347 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
10348 (octave-eldoc-function-signatures, octave-eldoc-function):
10349 New functions.
10350 (octave-mode, inferior-octave-mode): Add eldoc support.
10351
10352 2013-05-11 Richard Stallman <rms@gnu.org>
10353
10354 * epa.el (epa-decrypt-file): Take output file name as argument
10355 and read it using `interactive'.
10356
10357 2013-05-11 Leo Liu <sdl.web@gmail.com>
10358
10359 * progmodes/octave.el (octave-beginning-of-line)
10360 (octave-end-of-line): Check before using up-list because it jumps
10361 out of more syntactic contructs since moving to smie.
10362 (octave-indent-comment): New function.
10363 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
10364 (octave-begin-keywords, octave-end-keywords)
10365 (octave-reserved-words, octave-smie-bnf-table)
10366 (octave-smie-rules): Add new keywords from Octave 3.6.4.
10367
10368 2013-05-11 Glenn Morris <rgm@gnu.org>
10369
10370 * faces.el (internal-face-x-get-resource):
10371 * frame.el (ns-display-monitor-attributes-list):
10372 * calc/calc-aent.el (math-to-radians-2):
10373 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
10374 Fix declarations.
10375
10376 * calc/calc-menu.el: Make it loadable in isolation.
10377
10378 * net/eudcb-bbdb.el: Make it loadable without bbdb.
10379 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
10380 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
10381 (eudc-bbdb-query-internal): Require 'bbdb.
10382
10383 * lpr.el (lpr-headers-switches):
10384 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
10385
10386 * progmodes/sql.el (sql-login-params): Fix and improve :type.
10387
10388 * emulation/edt-mapper.el: In batch mode, error rather than hang.
10389
10390 * term.el (term-set-escape-char): Make it idempotent.
10391
10392 2013-05-10 Leo Liu <sdl.web@gmail.com>
10393
10394 * progmodes/octave.el (inferior-octave-completion-table):
10395 No longer a function and all uses changed. Use cache to speed up
10396 completion due to bug#11906.
10397 (octave-beginning-of-defun): Re-write to be more general.
10398
10399 2013-05-10 Glenn Morris <rgm@gnu.org>
10400
10401 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
10402
10403 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
10404
10405 * comint.el (comint-redirect-send-command-to-process): Use :around
10406 rather than :override for comint-redirect-filter.
10407 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
10408 Call it instead of comint-redirect-original-filter-function (which
10409 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
10410
10411 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
10412
10413 * frame.el (display-monitor-attributes-list): Add NS case.
10414 (ns-display-monitor-attributes-list): Declare.
10415
10416 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
10417
10418 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
10419
10420 2013-05-09 Glenn Morris <rgm@gnu.org>
10421
10422 * international/fontset.el (vertical-centering-font-regexp):
10423 Set standard-value.
10424
10425 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
10426
10427 * bookmark.el (bookmark-search-delay):
10428 * cus-start.el (vertical-centering-font-regexp):
10429 * ps-mule.el (ps-mule-font-info-database-default):
10430 * ps-print.el (ps-default-fg, ps-default-bg):
10431 * type-break.el (type-break-good-break-interval):
10432 * whitespace.el (whitespace-indentation-regexp)
10433 (whitespace-space-after-tab-regexp):
10434 * emacs-lisp/testcover.el (testcover-1value-functions)
10435 (testcover-noreturn-functions, testcover-progn-functions)
10436 (testcover-prog1-functions):
10437 * emulation/viper-init.el (viper-emacs-state-cursor-color):
10438 * eshell/em-glob.el (eshell-glob-translate-alist):
10439 * play/tetris.el (tetris-tty-colors):
10440 * progmodes/cpp.el (cpp-face-default-list):
10441 * progmodes/flymake.el (flymake-allowed-file-name-masks):
10442 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
10443 (idlwave-help-browser-generic-args):
10444 * progmodes/make-mode.el (makefile-special-targets-list):
10445 * progmodes/python.el (python-shell-virtualenv-path):
10446 * progmodes/verilog-mode.el (verilog-active-low-regexp)
10447 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
10448 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
10449 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
10450 * textmodes/reftex-vars.el (reftex-format-label-function):
10451 * textmodes/remember.el (remember-diary-file): Fix custom types.
10452
10453 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
10454 Add :version.
10455
10456 2013-05-09 Leo Liu <sdl.web@gmail.com>
10457
10458 * progmodes/octave.el (inferior-octave-completion-at-point):
10459 Restore file completion. (Bug#14300)
10460 (inferior-octave-startup): Fix incorrect highlighting for the
10461 first prompt.
10462
10463 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10464
10465 * progmodes/ruby-mode.el: First cut at SMIE support.
10466 (ruby-use-smie): New var.
10467 (ruby-smie-grammar): New constant.
10468 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
10469 (ruby-smie--forward-token, ruby-smie--backward-token)
10470 (ruby-smie-rules): New functions.
10471 (ruby-mode-variables): Setup SMIE if applicable.
10472
10473 2013-05-08 Eli Zaretskii <eliz@gnu.org>
10474
10475 * simple.el (line-move-visual): Signal beginning/end of buffer
10476 only if vertical-motion moved less than it was requested. Avoids
10477 silly incorrect error messages when there are display strings with
10478 multiple newlines at EOL.
10479
10480 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10481
10482 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
10483 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
10484 (prolog-char-quote-workaround):
10485 * progmodes/cperl-mode.el (cperl-under-as-char):
10486 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
10487 Mark as obsolete.
10488 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
10489 their declaration.
10490 (vhdl-mode-syntax-table-init): Remove.
10491
10492 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
10493 last change.
10494
10495 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
10496 syntax for "_".
10497 (ld-script-font-lock-keywords):
10498 Change regexps to use things like \_< and \_>.
10499
10500 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
10501 Change all regexps to use things like \_< and \_>.
10502
10503 * progmodes/autoconf.el (autoconf-definition-regexp)
10504 (autoconf-font-lock-keywords, autoconf-current-defun-function):
10505 Handle a _ with symbol syntax.
10506 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
10507
10508 * progmodes/ada-mode.el (ada-mode-abbrev-table):
10509 Consolidate declaration.
10510 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
10511 the declaration.
10512 (ada-create-syntax-table): Remove.
10513 (ada-capitalize-word): Don't mess with the syntax of "_" since it
10514 already has the right syntax nowadays.
10515 (ada-goto-next-word): Don't change the syntax of "_".
10516
10517 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
10518 with-wrapper-hook.
10519
10520 2013-05-08 Sam Steingold <sds@gnu.org>
10521
10522 * thingatpt.el (thing-at-point): Accept optional second argument
10523 NO-PROPERTIES to strip the text properties from the return value.
10524 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
10525 to `thing-at-point' instead of stripping the properties ourselves.
10526 Also, when `thing-at-point' fails to find a url, prepend "http://"
10527 to the filename at point on the assumption that the user is
10528 pointing at something like gnu.org/gnu.
10529
10530 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
10531
10532 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
10533 * faces.el (crm-separator):
10534 Silence byte-compiler.
10535
10536 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
10537 (tool-bar-map): Remove unneeded defvars.
10538
10539 2013-05-08 Leo Liu <sdl.web@gmail.com>
10540
10541 Re-work a fix for bug#10994 based on Le Wang's patch.
10542 * ido.el (ido-remove-consecutive-dups): New helper.
10543 (ido-completing-read): Use it.
10544 (ido-chop): Revert fix for bug#10994.
10545
10546 2013-05-08 Adam Spiers <emacs@adamspiers.org>
10547
10548 * cus-edit.el (custom-save-variables):
10549 Pretty-print long values. (Bug#14187)
10550
10551 2013-05-08 Glenn Morris <rgm@gnu.org>
10552
10553 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
10554 (m4-mode-syntax-table): Init in the defvar.
10555 (m4-mode-abbrev-table): Let define-derived-mode define it.
10556
10557 2013-05-08 Tom Tromey <tromey@redhat.com>
10558
10559 * progmodes/m4-mode.el (m4-mode-syntax-table):
10560 Do not treat "_" as word constituent. (Bug#14167)
10561
10562 2013-05-07 Glenn Morris <rgm@gnu.org>
10563
10564 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
10565 Remove explicit eshell-isearch-cancel-map.
10566
10567 * progmodes/f90.el (f90-smart-end-names): New option.
10568 (f90-smart-end): Doc fix.
10569 (f90-end-block-optional-name): New constant.
10570 (f90-block-match): Respect f90-smart-end-names.
10571
10572 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
10573
10574 * progmodes/octave.el (octave-smie-forward-token): Be more careful
10575 about implicit semi-colons (bug#14218).
10576
10577 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10578
10579 * frame.el (display-monitor-attributes-list)
10580 (frame-monitor-attributes): New functions.
10581
10582 2013-05-06 Leo Liu <sdl.web@gmail.com>
10583
10584 * progmodes/octave.el (octave-syntax-propertize-function): Change
10585 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
10586 (octave-font-lock-keywords): Use octave-operator-regexp.
10587 (octave-completion-at-point): Rename from
10588 octave-completion-at-point-function.
10589 (inferior-octave-directory-tracker): Robustify.
10590 (octave-text-functions): Remove and fix its uses. No such things
10591 any more.
10592
10593 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
10594
10595 * emacs-lisp/trace.el (trace--display-buffer): New function.
10596 (trace-make-advice): Use it.
10597
10598 2013-05-06 Juri Linkov <juri@jurta.org>
10599
10600 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
10601 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
10602 Doc fix.
10603 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
10604 in the help string. (Bug#12985)
10605
10606 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
10607
10608 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
10609
10610 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
10611
10612 * progmodes/perl-mode.el: Add support for here documents.
10613 (perl-syntax-propertize-function): Match here-doc markers.
10614 (perl-syntax-propertize-special-constructs): Find their end.
10615 (perl-imenu-generic-expression): Use [:alnum:].
10616
10617 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
10618 (advice--add-function): Refresh the advice if already present
10619 (bug#14317).
10620
10621 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
10622
10623 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
10624
10625 2013-05-06 Glenn Morris <rgm@gnu.org>
10626
10627 * w32-fns.el (w32-charset-info-alist): Declare.
10628
10629 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
10630 of its defcustom properties.
10631 (eshell-cmpl-initialize): No need to load pcomplete.
10632
10633 * generic-x.el: No need to require comint when compiling.
10634
10635 * net/eudc-export.el: Make it loadable without bbdb.
10636 (top-level): Use require rather than load-library.
10637 (eudc-create-bbdb-record, eudc-bbdbify-phone)
10638 (eudc-batch-export-records-to-bbdb)
10639 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
10640 Require bbdb.
10641
10642 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
10643
10644 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
10645 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
10646 some tweaks, instead.
10647
10648 2013-05-05 Leo Liu <sdl.web@gmail.com>
10649
10650 * progmodes/octave.el (octave-font-lock-keywords)
10651 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
10652 (inferior-octave-send-list-and-digest): Improve error message.
10653 (octave-mode, inferior-octave-mode): Use setq-local.
10654 (octave-help): Set info-lookup-mode.
10655
10656 2013-05-05 Richard Stallman <rms@gnu.org>
10657
10658 * vc/compare-w.el (compare-windows-whitespace):
10659 Treat no-break space as whitespace.
10660
10661 * mail/rmailsum.el (rmail-summary-rmail-update):
10662 Detect empty summary and don't change selected message.
10663 (rmail-summary-goto-msg): Likewise.
10664
10665 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
10666 Doc fixes, rename args.
10667
10668 2013-05-05 Alan Mackenzie <acm@muc.de>
10669
10670 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
10671
10672 2013-05-05 Juri Linkov <juri@jurta.org>
10673
10674 * info.el (Info-read-subfile): Use (point-min) instead of (point)
10675 to not add the length of the summary segment to the return value.
10676 (Bug#14125)
10677
10678 2013-05-05 Leo Liu <sdl.web@gmail.com>
10679
10680 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
10681 (inferior-octave-output-filter): Remove.
10682 (octave-send-region, inferior-octave-startup): Fix callers.
10683 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
10684 (octave-binary-file-extensions): New user variable.
10685 (octave-find-definition): Confirm if opening binary files.
10686 (octave-help-file): Use octave-find-definition to get the binary
10687 confirmation.
10688 (octave-help): Adjust for octave-help-file change.
10689
10690 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
10691
10692 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
10693 Merge the two entries that handle function definitions.
10694 (pascal--syntax-propertize): New const.
10695 (pascal-mode): Use it. Use setq-local.
10696
10697 2013-05-04 Glenn Morris <rgm@gnu.org>
10698
10699 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
10700 (diary-from-outlook): Respect diary-from-outlook-function.
10701
10702 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
10703
10704 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
10705 Move the declaration from C.
10706 (read-minibuffer, eval-minibuffer): Move from C.
10707 (completion-setup-function): Avoid minibuffer-completion-contents.
10708
10709 2013-05-03 Leo Liu <sdl.web@gmail.com>
10710
10711 * progmodes/octave.el (octave-font-lock-keywords): Do not
10712 dehighlight 'end' in comments or strings.
10713 (octave-completing-read, octave-goto-function-definition):
10714 New helpers.
10715 (octave-help-buffer): New user variable.
10716 (octave-help-file, octave-help-function): New button types.
10717 (octave-help): New command and bind it to C-h ;.
10718 (octave-find-definition): New command and bind it to M-.
10719 (user-error): Alias to error if not defined.
10720
10721 2013-05-02 Leo Liu <sdl.web@gmail.com>
10722
10723 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
10724 for \. (bug#14332)
10725 (octave-font-lock-keywords): Include [ and {.
10726
10727 2013-05-02 Leo Liu <sdl.web@gmail.com>
10728
10729 * progmodes/octave.el (inferior-octave-startup-file): Change default.
10730 (inferior-octave): Remove calling comint-mode and return the buffer.
10731 (inferior-octave-startup): Cosmetic changes.
10732
10733 2013-05-02 Leo Liu <sdl.web@gmail.com>
10734
10735 * progmodes/octave.el (octave-syntax-propertize-function):
10736 Include the case when ' is at line beginning. (Bug#14336)
10737
10738 2013-05-02 Glenn Morris <rgm@gnu.org>
10739
10740 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
10741 * desktop.el (vc-dir-mode): Just autoload it here.
10742
10743 2013-05-02 Alan Mackenzie <acm@muc.de>
10744
10745 Eliminate variable c-standard-font-lock-fontify-region-function.
10746 * progmodes/cc-mode.el
10747 (c-standard-font-lock-fontify-region-function): Remove.
10748 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
10749
10750 2013-05-01 Leo Liu <sdl.web@gmail.com>
10751
10752 * progmodes/octave.el: Compatible with older emacs-24 releases.
10753 (inferior-octave-has-built-in-variables): Remove. Built-in
10754 variables were removed from Octave in 2007.
10755 (inferior-octave-startup): Fix uses.
10756 (comint-line-beginning-position): Remove compatibility code for
10757 emacs 21.
10758
10759 2013-05-01 Juri Linkov <juri@jurta.org>
10760
10761 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
10762
10763 2013-05-01 Juri Linkov <juri@jurta.org>
10764
10765 * comint.el (comint-previous-matching-input): Don't print message
10766 "History item: %d" when `isearch-mode' is active.
10767 (comint-history-isearch-message): Print message "History item: %d"
10768 when `comint-input-ring-index' is not empty and this function is
10769 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
10770
10771 2013-05-01 Leo Liu <sdl.web@gmail.com>
10772
10773 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
10774 definitions. Use completion-at-point to insert keywords.
10775 (octave-abbrev-start): Remove.
10776 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
10777
10778 2013-04-30 Leo Liu <sdl.web@gmail.com>
10779
10780 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
10781 change.
10782
10783 2013-04-30 Alan Mackenzie <acm@muc.de>
10784
10785 Handle arbitrarily long C++ member initialisation lists.
10786 * progmodes/cc-engine.el (c-back-over-member-initializers):
10787 new function.
10788 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
10789 (most) member init lists.
10790
10791 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
10792
10793 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
10794 variable.
10795
10796 2013-04-30 Leo Liu <sdl.web@gmail.com>
10797
10798 * progmodes/octave.el (octave-variables): Remove. No builtin
10799 variables any more. All converted to functions.
10800 (octave-font-lock-keywords, octave-completion-at-point-function):
10801 Fix uses.
10802 (octave-font-lock-texinfo-comment): New user variable.
10803 (octave-texinfo-font-lock-keywords): New variable for texinfo
10804 comment block.
10805 (octave-function-comment-block): New face.
10806 (octave-font-lock-texinfo-comment): New function.
10807 (octave-mode): Font lock texinfo comment block.
10808
10809 2013-04-29 Leo Liu <sdl.web@gmail.com>
10810
10811 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
10812 indexing expression.
10813 (octave-continuation-string): Do not use \.
10814 (inferior-octave-complete-impossible): Remove.
10815 (inferior-octave-completion-table)
10816 (inferior-octave-completion-at-point): Remove its uses.
10817 (inferior-octave-startup): completion_matches was introduced to
10818 Octave in 1996 so safe to assume it.
10819 (octave-function-file-comment): Improve to follow how Octave does it.
10820 (octave-update-function-file-comment): Tweak.
10821
10822 2013-04-29 Leo Liu <sdl.web@gmail.com>
10823
10824 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
10825 (inferior-octave-startup): Remove inferior-octave-startup-hook.
10826 (octave-function-file-comment): Fix typo.
10827 (octave-sync-function-file-names): Use read-char-choice.
10828
10829 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
10830
10831 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
10832 to t for the less important warnings.
10833
10834 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
10835
10836 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
10837
10838 2013-04-27 Glenn Morris <rgm@gnu.org>
10839
10840 * vc/log-view.el (log-view-current-entry):
10841 Treat "---" separator lines as part of the following rev. (Bug#14169)
10842
10843 2013-04-27 Juri Linkov <juri@jurta.org>
10844
10845 * subr.el (read-number): Doc fix about using it by interactive
10846 code letter `n'. (Bug#14254)
10847
10848 2013-04-27 Juri Linkov <juri@jurta.org>
10849
10850 * desktop.el (desktop-auto-save-timeout): New option.
10851 (desktop-file-checksum): New variable.
10852 (desktop-save): Add optional arg `auto-save' and don't auto-save
10853 if nothing changed.
10854 (desktop-auto-save-timer): New variable.
10855 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
10856 (after-init-hook): Call `desktop-auto-save-set-timer'.
10857 Suggested by Reuben Thomas <rrt@sc3d.org> in
10858 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
10859
10860 2013-04-27 Leo Liu <sdl.web@gmail.com>
10861
10862 * progmodes/octave.el (octave-function-file-p)
10863 (octave-skip-comment-forward, octave-function-file-comment)
10864 (octave-update-function-file-comment): New functions.
10865 (octave-mode-map): Bind C-c ; to
10866 octave-update-function-file-comment.
10867 (octave-mode-menu): Add octave-update-function-file-comment.
10868 (octave-mode, inferior-octave-mode): Fix doc-string.
10869 (octave-insert-defun): Conform to Octave's coding convention.
10870 (Bug#14285)
10871
10872 * files.el (basic-save-buffer): Don't let errors in
10873 before-save-hook prevent saving buffer.
10874
10875 2013-04-20 Roland Winkler <winkler@gnu.org>
10876
10877 * faces.el (read-face-name): Use completing-read if arg multiple
10878 is nil.
10879
10880 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
10881
10882 * ls-lisp.el (ls-lisp-insert-directory): If no files are
10883 displayed, move point to after the totals line.
10884 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
10885 for the details.
10886
10887 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
10888
10889 * emacs-lisp/package.el (package-autoload-ensure-default-file):
10890 Add current dir to the load-path.
10891 (package-generate-autoloads): Don't rely on
10892 autoload-ensure-default-file.
10893
10894 2013-04-26 Reuben Thomas <rrt@sc3d.org>
10895
10896 * textmodes/remember.el (remember-store-in-files): Document that
10897 the file name format is passed to `format-time-string'.
10898
10899 2013-04-26 Leo Liu <sdl.web@gmail.com>
10900
10901 * progmodes/octave.el (octave-sync-function-file-names): New function.
10902 (octave-mode): Use it in before-save-hook.
10903
10904 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
10905
10906 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
10907 (bug#14274).
10908
10909 * progmodes/octave.el (octave-smie-forward-token): Properly skip
10910 \n and comment, even if it's not an implicit ; (bug#14218).
10911
10912 2013-04-26 Glenn Morris <rgm@gnu.org>
10913
10914 * subr.el (read-number): Once more use `read' rather than
10915 `string-to-number', to trap non-numeric input. (Bug#14254)
10916
10917 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
10918
10919 * emacs-lisp/syntax.el (syntax-propertize-multiline):
10920 Use `syntax-multiline' text property consistently instead of
10921 `font-lock-multiline'. (Bug#14237)
10922
10923 2013-04-26 Glenn Morris <rgm@gnu.org>
10924
10925 * emacs-lisp/shadow.el (list-load-path-shadows):
10926 No longer necessary to check for duplicate simple.el, since
10927 2012-07-07 change to init_lread to not include installation lisp
10928 directories in load-path when running uninstalled. (Bug#14270)
10929
10930 2013-04-26 Leo Liu <sdl.web@gmail.com>
10931
10932 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
10933 (octave-mode, inferior-octave-mode): Use setq-local.
10934 (octave-not-in-string-or-comment-p): Rename to
10935 octave-in-string-or-comment-p.
10936 (octave-in-comment-p, octave-in-string-p)
10937 (octave-in-string-or-comment-p): Replace defsubst with defun.
10938
10939 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
10940
10941 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
10942
10943 2013-04-25 Bastien Guerry <bzg@gnu.org>
10944
10945 * textmodes/remember.el (remember-data-directory)
10946 (remember-directory-file-name-format): Fix custom types.
10947
10948 2013-04-25 Leo Liu <sdl.web@gmail.com>
10949
10950 * progmodes/octave.el (octave-completion-at-point-function):
10951 Make use of inferior octave process.
10952 (octave-initialize-completions): Remove.
10953 (inferior-octave-completion-table): New function.
10954 (inferior-octave-completion-at-point): Use it.
10955 (octave-completion-alist): Remove.
10956
10957 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
10958
10959 * progmodes/opascal.el: Use font-lock and syntax-propertize.
10960 (opascal-mode-syntax-table): New var.
10961 (opascal-literal-kind, opascal-is-literal-end)
10962 (opascal-literal-token-at): Rewrite.
10963 (opascal--literal-start-re, opascal-font-lock-keywords)
10964 (opascal--syntax-propertize): New constants.
10965 (opascal-font-lock-defaults): Adjust.
10966 (opascal-mode): Use them. Set comment-<foo> variables as well.
10967 (delphi-comment-face, opascal-comment-face, delphi-string-face)
10968 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
10969 (delphi-other-face, opascal-other-face): Remove face variables.
10970 (opascal-save-state): Remove macro.
10971 (opascal-fontifying-progress-step): Remove constant.
10972 (opascal--ignore-changes): Remove var.
10973 (opascal-set-token-property, opascal-parse-next-literal)
10974 (opascal-is-stable-literal, opascal-complete-literal)
10975 (opascal-is-literal-start, opascal-face-of)
10976 (opascal-parse-region, opascal-parse-region-until-stable)
10977 (opascal-fontify-region, opascal-after-change)
10978 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
10979 (opascal-debug-parse-region, opascal-debug-parse-window)
10980 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
10981 (opascal-debug-fontify-buffer): Remove.
10982 (opascal-debug-mode-map): Adjust accordingly.
10983
10984 2013-04-25 Leo Liu <sdl.web@gmail.com>
10985
10986 Merge octave-mod.el and octave-inf.el into octave.el with some
10987 cleanups.
10988 * progmodes/octave.el: New file renamed from octave-mod.el.
10989 * progmodes/octave-inf.el: Merged into octave.el.
10990 * progmodes/octave-mod.el: Renamed to octave.el.
10991
10992 2013-04-25 Tassilo Horn <tsdh@gnu.org>
10993
10994 * textmodes/reftex-vars.el
10995 (reftex-label-ignored-macros-and-environments): New defcustom.
10996
10997 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
10998
10999 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
11000
11001 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
11002 (smie-indent-keyword): Improve the check to ensure that the next
11003 comment is really on the same line.
11004 (smie-indent-comment): Don't align with a subsequent closer (or eob).
11005
11006 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
11007 semi-colons if the line is not otherwise empty (bug#14218).
11008
11009 2013-04-25 Glenn Morris <rgm@gnu.org>
11010
11011 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
11012
11013 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
11014
11015 * progmodes/opascal.el (opascal-set-token-property): Rename from
11016 opascal-set-text-properties and only set `token' (bug#14134).
11017 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
11018 (opascal-literal-text-properties): Remove.
11019 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
11020 Adjust callers.
11021
11022 2013-04-24 Reuben Thomas <rrt@sc3d.org>
11023
11024 * textmodes/remember.el (remember-handler-functions): Add an
11025 option for a new handler `remember-store-in-files'.
11026 (remember-data-directory, remember-directory-file-name-format):
11027 New options.
11028 (remember-store-in-files): New function to store remember notes
11029 as separate files within a directory.
11030
11031 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
11032
11033 * progmodes/compile.el (compilation-next-error-function):
11034 Pass "formats" to compilation-find-file (bug#11777).
11035
11036 2013-04-24 Glenn Morris <rgm@gnu.org>
11037
11038 * vc/vc-bzr.el (vc-bzr-print-log):
11039 * vc/vc-hg.el (vc-hg-print-log):
11040 * vc/vc-svn.el (vc-svn-print-log):
11041 Fix START-REVISION with LIMIT != 1. (Bug#14168)
11042
11043 * vc/vc-bzr.el (vc-bzr-print-log):
11044 * vc/vc-cvs.el (vc-cvs-print-log):
11045 * vc/vc-git.el (vc-git-print-log):
11046 * vc/vc-hg.el (vc-hg-print-log):
11047 * vc/vc-mtn.el (vc-mtn-print-log):
11048 * vc/vc-rcs.el (vc-rcs-print-log):
11049 * vc/vc-sccs.el (vc-sccs-print-log):
11050 * vc/vc-svn.el (vc-svn-print-log):
11051 * vc/vc.el (vc-print-log-internal): Doc fixes.
11052
11053 2013-04-23 Glenn Morris <rgm@gnu.org>
11054
11055 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
11056 Remove venerable code attempting to avoid substitute-command-keys.
11057
11058 2013-04-23 Tassilo Horn <tsdh@gnu.org>
11059
11060 * textmodes/reftex-vars.el (reftex-label-regexps):
11061 Call `reftex-compile-variables' after changes to this variable.
11062
11063 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
11064
11065 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
11066 Use lexical-binding.
11067 (jit-lock-force-redisplay): Use markers, check buffer's continued
11068 existence and beware narrowed buffers.
11069 (jit-lock-fontify-now): Adjust call accordingly.
11070
11071 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
11072
11073 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
11074 to avoid misleading the user.
11075
11076 2013-04-22 Leo Liu <sdl.web@gmail.com>
11077
11078 * info-look.el: Prefer latex2e.info. (Bug#14240)
11079
11080 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
11081
11082 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
11083
11084 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
11085 * net/tramp.el (tramp-call-process): ... here.
11086 (tramp-set-completion-function, tramp-parse-putty):
11087 * net/tramp-adb.el (tramp-adb-execute-adb-command):
11088 * net/tramp-gvfs.el (tramp-gvfs-send-command):
11089 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
11090 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
11091 (tramp-call-local-coding-command): Use `tramp-call-process'
11092 instead of `tramp-compat-call-process'.
11093
11094 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
11095 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
11096 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
11097 (tramp-find-inline-compress): Improve traces.
11098 (tramp-maybe-send-script): Check for Perl binary.
11099 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
11100
11101 2013-04-22 Daiki Ueno <ueno@gnu.org>
11102
11103 * epg.el (epg-context-pinentry-mode): New function.
11104 (epg-context-set-pinentry-mode): New function.
11105 (epg--start): Pass --pinentry-mode option to gpg command.
11106
11107 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
11108
11109 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
11110 `comint-dynamic-complete' is obsolete since 24.1, replaced by
11111 `completion-at-point'. (Bug#13774)
11112
11113 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
11114 default key binding for `describe-distribution' has been moved to
11115 `C-h C-o'. (Bug#13970)
11116
11117 2013-04-21 Glenn Morris <rgm@gnu.org>
11118
11119 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
11120 Add doc strings.
11121 (vc-print-log): Clarify interactive prompt.
11122
11123 2013-04-20 Glenn Morris <rgm@gnu.org>
11124
11125 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
11126 No longer include timestamp etc information.
11127
11128 2013-04-20 Roland Winkler <winkler@gnu.org>
11129
11130 * faces.el (read-face-name): Bug fix, return just one face if arg
11131 multiple is nil. (Bug#14209)
11132
11133 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11134
11135 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
11136 (remove-function): Autoload.
11137
11138 * comint.el (comint-redirect-original-filter-function): Remove.
11139 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
11140 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
11141 (vc-cvs-annotate-command):
11142 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
11143 * progmodes/prolog.el (prolog-consult-compile):
11144 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
11145 Use add/remove-function instead.
11146 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
11147 (gud-tooltip-process-output, gud-tooltip-tips):
11148 Use add/remove-function instead.
11149 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
11150 (scheme-interaction-mode, exit-scheme-interaction-mode):
11151 Use add/remove-function instead.
11152
11153 * vc/vc-dispatcher.el: Use lexical-binding.
11154 (vc--process-sentinel): Rename from vc-process-sentinel.
11155 Change last arg to be the code to run. Don't use vc-previous-sentinel
11156 and vc-sentinel-commands any more.
11157 (vc-exec-after): Allow code to be a function. Use add/remove-function.
11158 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
11159
11160 2013-04-19 Masatake YAMATO <yamato@redhat.com>
11161
11162 * progmodes/sh-script.el (sh-imenu-generic-expression):
11163 Handle function names with a single character. (Bug#14111)
11164
11165 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
11166
11167 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
11168 for subroutines defined in an eval (bug#14182).
11169
11170 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11171
11172 * bookmark.el (bookmark-completing-read): Improve handling of empty
11173 string (bug#14176).
11174
11175 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
11176
11177 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
11178
11179 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
11180
11181 New faster Imenu implementation (bug#14058).
11182 * progmodes/python.el:
11183 (python-imenu-prev-index-position):
11184 (python-imenu-format-item-label-function)
11185 (python-imenu-format-parent-item-label-function)
11186 (python-imenu-format-parent-item-jump-label-function):
11187 New vars.
11188 (python-imenu-format-item-label)
11189 (python-imenu-format-parent-item-label)
11190 (python-imenu-format-parent-item-jump-label)
11191 (python-imenu--put-parent, python-imenu--build-tree)
11192 (python-imenu-create-index, python-imenu-create-flat-index)
11193 (python-util-popn): New functions.
11194 (python-mode): Set imenu-create-index-function to
11195 python-imenu-create-index.
11196
11197 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
11198
11199 * winner.el (winner-active-region): Use region-active-p, activate-mark
11200 and deactivate-mark (bug#14225).
11201
11202 * simple.el (deactivate-mark): Don't inline it.
11203
11204 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
11205
11206 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
11207
11208 2013-04-18 Tassilo Horn <tsdh@gnu.org>
11209
11210 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
11211 file extensions from the archive-mode entry in order to prefer
11212 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
11213
11214 2013-04-18 Leo Liu <sdl.web@gmail.com>
11215
11216 * bindings.el (help-event-list): Add ?\?.
11217
11218 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
11219
11220 * subr.el (with-wrapper-hook): Declare obsolete.
11221 * simple.el (filter-buffer-substring-function): New hook.
11222 (filter-buffer-substring): Use it.
11223 (filter-buffer-substring-functions): Mark obsolete.
11224 * minibuffer.el (completion-in-region-function): New hook.
11225 (completion-in-region): Use it.
11226 (completion-in-region-functions): Mark obsolete.
11227 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
11228 * abbrev.el (abbrev-expand-function): New hook.
11229 (expand-abbrev): Use it.
11230 (abbrev-expand-functions): Mark obsolete.
11231 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
11232 and :filter-return.
11233
11234 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
11235
11236 * progmodes/python.el (python-nav--syntactically): Fix cornercases
11237 and do not care about match data.
11238
11239 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
11240
11241 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
11242 completion tables when completing error conditions and
11243 `declare' arguments.
11244 (lisp-complete-symbol, field-complete): Mark as obsolete.
11245 (check-parens): Unmatched parens are user errors.
11246 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
11247
11248 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
11249
11250 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
11251 command changed buffer (ie. `flyspell-pre-buffer' is not current
11252 buffer), which prevents making decisions based on invalid value of
11253 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
11254 cause an error when `flyspell-pre-point' was nil after switching
11255 buffers.
11256 (flyspell-post-command-hook): No longer needs to change buffers when
11257 checking pre-word. While at it remove unnecessary progn.
11258
11259 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
11260
11261 * textmodes/ispell.el (ispell-add-per-file-word-list):
11262 Fix `flyspell-correct-word-before-point' error when accepting
11263 words and `coment-padding' is an integer by using
11264 `comment-normalize-vars' (Bug #14214).
11265
11266 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
11267
11268 New defun movement commands.
11269 * progmodes/python.el (python-nav--syntactically)
11270 (python-nav--forward-defun, python-nav-backward-defun)
11271 (python-nav-forward-defun): New functions.
11272
11273 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
11274
11275 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
11276 (python-syntax-context): Use named compiler-macro for backwards
11277 compatibility with Emacs 24.x.
11278
11279 2013-04-17 Leo Liu <sdl.web@gmail.com>
11280
11281 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
11282 octave-hide-process-buffer.
11283
11284 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
11285
11286 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
11287 (bug#14216).
11288
11289 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
11290
11291 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
11292 Fix adjustment of offset when receiving incomplete responses from GDB
11293 (bug#14129).
11294
11295 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
11296
11297 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
11298 python-mode-abbrev-table.
11299 (python-skeleton-define): Adjust accordingly.
11300 (python-mode-abbrev-table): New table that inherits from it so that
11301 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
11302
11303 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
11304 (abbrev-symbol): Use it.
11305 (abbrev--before-point): Use it since we already handle inheritance.
11306
11307 2013-04-16 Leo Liu <sdl.web@gmail.com>
11308
11309 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
11310 binding to info-lookup-symbol.
11311
11312 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
11313
11314 * minibuffer.el (completion--twq-all):
11315 * term/ns-win.el (ns-initialize-window-system):
11316 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
11317
11318 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
11319
11320 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
11321 global bindings.
11322
11323 * doc-view.el (doc-view-start-process): Handle url-handler directories.
11324
11325 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
11326
11327 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
11328 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
11329 to nil.
11330 (ruby-end-of-defun): Remove the unused arg, change the docstring
11331 to reflect that this function is only used as the value of
11332 `end-of-defun-function'.
11333 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
11334 to reflect an earlier change that beginning/end-of-defun functions
11335 jump between methods in a class definition, as well as top-level
11336 functions.
11337
11338 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
11339
11340 * minibuffer.el (minibuffer-complete): Don't just scroll
11341 a *Completions* that's been iconified.
11342 (minibuffer-force-complete): Make sure repetitions do cycle when going
11343 through completion-in-region -> minibuffer-complete.
11344
11345 2013-04-15 Alan Mackenzie <acm@muc.de>
11346
11347 Correct the placement of c-cpp-delimiters when there're #s not at
11348 col 0.
11349
11350 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
11351 place a submatch around the #.
11352 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
11353 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
11354 on the #, not BOL.
11355
11356 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
11357
11358 * emacs-lisp/nadvice.el: Properly test names when adding advice.
11359 (advice--member-p): New arg `name'.
11360 (advice--add-function, advice-member-p): Use it (bug#14202).
11361
11362 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
11363
11364 Reformulate java imenu-generic-expression.
11365 The old expression contained ill formed regexps.
11366
11367 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
11368 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
11369 (cc-imenu-java-method-arg-regexp): New defconsts.
11370 (cc-imenu-java-build-type-args-regex): New defun.
11371 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
11372 handling of spaces in the regexp.
11373
11374 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11375
11376 * textmodes/ispell.el (ispell-command-loop): Remove
11377 flyspell highlight of a word when ispell accepts it (bug #14178).
11378
11379 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
11380
11381 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
11382 uses code from the previous `ange-ftp-run-real-handler'.
11383 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
11384 only in case that function exist. This is needed for proper
11385 unloading of Tramp.
11386
11387 2013-04-15 Tassilo Horn <tsdh@gnu.org>
11388
11389 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
11390
11391 * textmodes/reftex.el (reftex-compile-variables): Use it.
11392
11393 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
11394
11395 * files.el (normal-mode): Only use default major-mode if no other mode
11396 was specified.
11397
11398 * emacs-lisp/trace.el (trace-values): New function.
11399
11400 * files.el: Allow : in local variables (bug#14089).
11401 (hack-local-variable-regexp): New var.
11402 (hack-local-variables-prop-line, hack-local-variables): Use it.
11403
11404 2013-04-13 Roland Winkler <winkler@gnu.org>
11405
11406 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
11407 data before it gets modified by bibtex-beginning-of-entry.
11408
11409 2013-04-13 Roland Winkler <winkler@gnu.org>
11410
11411 * textmodes/bibtex.el (bibtex-url): Doc fix.
11412
11413 2013-04-13 Roland Winkler <winkler@gnu.org>
11414
11415 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
11416 does not visit a BibTeX file, exclude it from the list of buffers
11417 returned by bibtex-initialize.
11418
11419 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
11420
11421 * window.el (split-window): Remove interactive form, since as a
11422 command this function is a special case of split-window-below.
11423 Correct doc string.
11424
11425 2013-04-12 Roland Winkler <winkler@gnu.org>
11426
11427 * faces.el (read-face-name): Do not override value of arg default.
11428 Allow single faces and strings as default values. Remove those
11429 elements from return value that are not faces.
11430 (describe-face): Simplify.
11431 (face-at-point): New optional args thing and multiple so that this
11432 function can provide the same functionality previously provided by
11433 read-face-name.
11434 (make-face-bold, make-face-unbold, make-face-italic)
11435 (make-face-unitalic, make-face-bold-italic, invert-face)
11436 (modify-face, read-face-and-attribute): Use face-at-point.
11437
11438 * cus-edit.el (customize-face, customize-face-other-window)
11439 * cus-theme.el (custom-theme-add-face)
11440 * face-remap.el (buffer-face-set)
11441 * facemenu.el (facemenu-set-face): Use face-at-point.
11442
11443 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
11444
11445 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
11446
11447 2013-04-10 Tassilo Horn <tsdh@gnu.org>
11448
11449 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
11450 off leading { and trailing } from field values.
11451
11452 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
11453
11454 * emacs-lisp/timer.el (timer--check): New function.
11455 (timer--time, timer-set-function, timer-event-handler): Use it.
11456 (timer-set-idle-time): Simplify.
11457 (timer--activate): CSE.
11458 (timer-event-handler): Give more info in error message.
11459 (internal-timer-start-idle): New function, moved from C.
11460
11461 * mpc.el (mpc-proc): Add `restart' argument.
11462 (mpc-proc-cmd): Use it.
11463 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
11464 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
11465 less often.
11466
11467 2013-04-10 Masatake YAMATO <yamato@redhat.com>
11468
11469 * progmodes/sh-script.el: Implement `sh-mode' own
11470 `add-log-current-defun-function' (bug#14112).
11471 (sh-current-defun-name): New function.
11472 (sh-mode): Use the function.
11473
11474 2013-04-09 Bastien Guerry <bzg@gnu.org>
11475
11476 * simple.el (choose-completion-string): Fix docstring (bug#14163).
11477
11478 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
11479
11480 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
11481
11482 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
11483 timer (bug#14156).
11484
11485 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
11486
11487 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
11488 declaration.
11489
11490 2013-04-07 Leo Liu <sdl.web@gmail.com>
11491
11492 * pcmpl-x.el: New file.
11493
11494 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
11495
11496 Do not set x-display-name until X connection is established.
11497 This is needed to prevent from weird situation described at
11498 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
11499 * frame.el (make-frame): Set x-display-name after call to
11500 window system initialization function, not before.
11501 * term/x-win.el (x-initialize-window-system): Add optional
11502 display argument and use it.
11503 * term/w32-win.el (w32-initialize-window-system):
11504 * term/ns-win.el (ns-initialize-window-system):
11505 * term/pc-win.el (msdos-initialize-window-system):
11506 Add compatible optional display argument.
11507
11508 2013-04-06 Eli Zaretskii <eliz@gnu.org>
11509
11510 * files.el (normal-backup-enable-predicate): On MS-Windows and
11511 MS-DOS compare truenames of temporary-file-directory and of the
11512 file, so that 8+3 aliases (usually found in $TEMP on Windows)
11513 don't fail comparison by compare-strings. Also, compare file
11514 names case-insensitively on MS-Windows and MS-DOS.
11515
11516 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
11517
11518 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
11519 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
11520
11521 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
11522
11523 * whitespace.el (whitespace-color-on, whitespace-color-off):
11524 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
11525
11526 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
11527
11528 * ispell.el (ispell-set-spellchecker-params):
11529 Really set `ispell-args' for all equivs.
11530
11531 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
11532
11533 * ido.el (ido-completions): Use extra elements of ido-decorations
11534 (bug#14143).
11535 (ido-decorations): Update docstring.
11536
11537 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
11538
11539 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
11540 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
11541 nil during initialization, in order not to miss changes since the
11542 file was opened. (Bug#14140)
11543
11544 2013-04-05 Leo Liu <sdl.web@gmail.com>
11545
11546 * kmacro.el (kmacro-call-macro): Fix bug#14135.
11547
11548 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
11549
11550 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
11551
11552 2013-04-04 Glenn Morris <rgm@gnu.org>
11553
11554 * electric.el (electric-pair-inhibit-predicate): Add :version.
11555
11556 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
11557
11558 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
11559 when a package is required several times (bug#14082).
11560
11561 2013-04-04 Roland Winkler <winkler@gnu.org>
11562
11563 * faces.el (read-face-name): Behave as promised by the docstring.
11564 Assume that arg default is a list of faces.
11565 (describe-face): Call read-face-name with list of default faces.
11566
11567 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11568
11569 * bookmark.el: Fix deletion of bookmarks (bug#13972).
11570 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
11571 (bookmark-bmenu-execute-deletions): Only skip first line if it's
11572 the header.
11573 (bookmark-exit-hook-internal): Save even if list is empty.
11574
11575 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
11576
11577 * emacs-lisp/package.el (package-pinned-packages): New var.
11578 (package--add-to-archive-contents): Obey it (bug#14118).
11579
11580 2013-04-03 Alan Mackenzie <acm@muc.de>
11581
11582 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
11583 Also adapt to the new values of element 7 of a parse state.
11584
11585 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
11586 parameter `not-in-delimiter'. Handle being inside comment opener.
11587 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
11588 character in case we're typing a '*' after a '/'.
11589 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
11590 instead by passing the parameter to c-state-pp-to-literal.
11591
11592 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
11593 for elt. 7 of a parse state.
11594
11595 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
11596
11597 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
11598 * international/latin1-disp.el, international/mule-util.el:
11599 * language/cyril-util.el, language/european.el, language/ind-util.el:
11600 * language/lao-util.el, language/thai.el, language/tibet-util.el:
11601 * language/tibetan.el, language/viet-util.el:
11602 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
11603
11604 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
11605
11606 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
11607 (electric-pair-post-self-insert-function): Use it.
11608 (electric-pair-default-inhibit): New function, extracted from
11609 electric-pair-post-self-insert-function.
11610
11611 2013-03-31 Roland Winkler <winkler@gnu.org>
11612
11613 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
11614
11615 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
11616
11617 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
11618
11619 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
11620
11621 Un-indent after "pass" and "return" statements (Bug#13888)
11622 * progmodes/python.el (python-indent-block-enders): New var.
11623 (python-indent-calculate-indentation): Use it.
11624
11625 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
11626
11627 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
11628 defun. Defining it as defalias could introduce too eager
11629 byte-compiler optimization. (Bug#14030)
11630
11631 2013-03-30 Chong Yidong <cyd@gnu.org>
11632
11633 * iswitchb.el (iswitchb-read-buffer): Fix typo.
11634
11635 2013-03-30 Leo Liu <sdl.web@gmail.com>
11636
11637 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
11638 (kmacro-execute-from-register): Pass the keyboard macro to
11639 kmacro-call-macro or repeating won't work correctly.
11640
11641 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
11642
11643 * progmodes/subword.el: Back to using `forward-symbol'.
11644
11645 * subr.el (forward-whitespace, forward-symbol)
11646 (forward-same-syntax): Move from thingatpt.el.
11647
11648 2013-03-29 Leo Liu <sdl.web@gmail.com>
11649
11650 * kmacro.el (kmacro-to-register): New command.
11651 (kmacro-execute-from-register): New function.
11652 (kmacro-keymap): Bind to 'x'. (Bug#14071)
11653
11654 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
11655
11656 * mpc.el: Use defvar-local and setq-local.
11657 (mpc--proc-connect): Connection failures are not bugs.
11658 (mpc-mode-map): `follow-link' only applies to the buffer's content.
11659 (mpc-volume-map): Bind to the up-events.
11660
11661 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
11662
11663 * progmodes/subword.el (superword-mode): Use `forward-sexp'
11664 instead of `forward-symbol'.
11665
11666 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
11667
11668 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
11669 (edebug--recursive-edit): Use it.
11670 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
11671 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
11672
11673 2013-03-28 Leo Liu <sdl.web@gmail.com>
11674
11675 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
11676
11677 2013-03-27 Eli Zaretskii <eliz@gnu.org>
11678
11679 * facemenu.el (list-colors-callback): New defvar.
11680 (list-colors-redisplay): New function.
11681 (list-colors-display): Install list-colors-redisplay as the
11682 revert-buffer-function. (Bug#14063)
11683
11684 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
11685
11686 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
11687 and suffixes don't overlap (bug#14061).
11688
11689 * case-table.el: Use lexical-binding.
11690 (case-table-get-table): New function.
11691 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
11692
11693 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
11694
11695 * progmodes/subword.el: Add `superword-mode' to do word motion
11696 over symbol_words (parallels and leverages `subword-mode' which
11697 does word motion inside MixedCaseWords).
11698
11699 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
11700
11701 * eshell/em-unix.el: Move su and sudo to...
11702 * eshell/em-tramp.el: ...Eshell tramp module.
11703
11704 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11705
11706 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
11707 Change return value to be a sexp. Delay `get-buffer' to after
11708 restoring the desktop (bug#13951).
11709
11710 2013-03-26 Leo Liu <sdl.web@gmail.com>
11711
11712 * register.el: Move semantic tag handling back to
11713 cedet/semantic/senator.el. (Bug#14052)
11714
11715 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11716
11717 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
11718 into the prompt either (bug#13963).
11719
11720 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
11721
11722 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
11723 part of "(error-foo)".
11724
11725 2013-03-24 Juri Linkov <juri@jurta.org>
11726
11727 * replace.el (list-matching-lines-prefix-face): New defcustom.
11728 (occur-1): Pass `list-matching-lines-prefix-face' to the function
11729 `occur-engine' if `face-differs-from-default-p' returns t.
11730 (occur-engine): Add `,' inside backquote construct to evaluate
11731 `prefix-face'. Propertize the prefix with the `prefix-face' face.
11732 Pass `prefix-face' to the functions `occur-context-lines' and
11733 `occur-engine-add-prefix'.
11734 (occur-engine-add-prefix, occur-context-lines): Add optional arg
11735 `prefix-face' and propertize the prefix with `prefix-face'.
11736 (Bug#14017)
11737
11738 2013-03-24 Leo Liu <sdl.web@gmail.com>
11739
11740 * nxml/rng-valid.el (rng-validate-while-idle)
11741 (rng-validate-quick-while-idle): Guard against deleted buffer.
11742 (Bug#13999)
11743
11744 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
11745 is the last entry in kill-buffer-hook.
11746
11747 * files.el (kill-buffer-hook): Doc fix.
11748
11749 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
11750
11751 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
11752 Make it safe-local.
11753
11754 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
11755
11756 2013-03-23 Leo Liu <sdl.web@gmail.com>
11757
11758 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
11759 Remove.
11760
11761 * nxml/rng-valid.el (rng-validate-mode)
11762 (rng-after-change-function, rng-do-some-validation):
11763 * nxml/rng-maint.el (rng-validate-buffer):
11764 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
11765 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
11766 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
11767 (nxml-extend-after-change-region): Use with-silent-modifications.
11768
11769 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
11770 timer-idle-list.
11771
11772 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
11773 (rng-next-error-1, rng-previous-error-1): Do not let-bind
11774 timer-idle-list. (Bug#13999)
11775
11776 2013-03-23 Juri Linkov <juri@jurta.org>
11777
11778 * info.el (info-index-match): New face.
11779 (Info-index, Info-apropos-matches): Add a nested subgroup to the
11780 main pattern and add text properties with the new face to matches
11781 in index entries relative to the beginning of the index entry.
11782 (Bug#14015)
11783
11784 2013-03-21 Eric Ludlam <zappo@gnu.org>
11785
11786 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
11787 Inhibit read only while inserting objects.
11788
11789 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
11790
11791 * progmodes/cfengine.el: Update docs to mention
11792 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
11793 symbol motion. Remove "_" from the word syntax.
11794
11795 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
11796
11797 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
11798 syntax for both `cfengine2-mode' and `cfengine3-mode'.
11799
11800 2013-03-20 Juri Linkov <juri@jurta.org>
11801
11802 * info.el (Info-next-reference-or-link)
11803 (Info-prev-reference-or-link): New functions.
11804 (Info-next-reference, Info-prev-reference): Use them.
11805 (Info-try-follow-nearest-node): Handle footnote navigation.
11806 (Info-fontify-node): Fontify footnotes. (Bug#13989)
11807
11808 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
11809
11810 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
11811 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
11812
11813 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
11814
11815 Suppress unnecessary non-ASCII chatter during build process.
11816 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
11817 (batch-skkdic-convert): Suppress most of the chatter.
11818 It's not needed so much now that machines are faster,
11819 and its non-ASCII component was confusing; see Dmitry Gutov in
11820 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
11821
11822 2013-03-20 Leo Liu <sdl.web@gmail.com>
11823
11824 * ido.el (ido-chop): Fix bug#10994.
11825
11826 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
11827
11828 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
11829 Remove vars.
11830 (whitespace-color-on, whitespace-color-off):
11831 Use `font-lock-fontify-buffer' (Bug#13817).
11832
11833 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
11834
11835 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
11836 remapping in mode-line.
11837 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
11838
11839 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
11840
11841 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
11842 value for `whitespace-line' face (Bug#13875).
11843 (whitespace-font-lock-keywords): Change description.
11844 (whitespace-color-on): Don't save `font-lock-keywords' value, save
11845 the constructed keywords instead.
11846 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
11847
11848 2013-03-19 Leo Liu <sdl.web@gmail.com>
11849
11850 * progmodes/compile.el (compilation-display-error): New command.
11851 (compilation-mode-map, compilation-minor-mode-map): Bind it to
11852 C-o. (Bug#13992)
11853
11854 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
11855
11856 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
11857
11858 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
11859
11860 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
11861
11862 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
11863
11864 * net/tramp-compat.el (tramp-compat-user-error): New defun.
11865
11866 * net/tramp-adb.el (tramp-adb-handle-shell-command):
11867 * net/tramp-gvfs.el (top):
11868 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
11869 (tramp-handle-shell-command): Use it.
11870 (tramp-dissect-file-name): Raise an error when hostname is a
11871 method name, and neither method nor user is specified.
11872
11873 * net/trampver.el: Update release number.
11874
11875 2013-03-18 Leo Liu <sdl.web@gmail.com>
11876
11877 Make sure eldoc can be turned off properly.
11878 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
11879 eldoc-mode.
11880 (eldoc-display-message-p): Revert last change.
11881 (eldoc-display-message-no-interference-p)
11882 (eldoc-print-current-symbol-info): Tweak.
11883
11884 2013-03-18 Tassilo Horn <tsdh@gnu.org>
11885
11886 * doc-view.el (doc-view-new-window-function): Check the new window
11887 overlay's display property instead the char property of the
11888 buffer's first char. Use `with-selected-window' instead of
11889 `save-window-excursion' with `select-window'.
11890 (doc-view-document->bitmap): Check the current doc-view overlay's
11891 display property instead the char property of the buffer's first char.
11892
11893 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
11894
11895 Automate the build of ja-dic.el (Bug#13984).
11896 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
11897 from the input, rather than assume that it's been done for us by the
11898 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
11899 the current date into a ja-dic.el comment, as that complicates
11900 regression testing.
11901
11902 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
11903
11904 * whitespace.el: Fix double evaluation.
11905 (whitespace-space, whitespace-hspace, whitespace-tab)
11906 (whitespace-newline, whitespace-trailing, whitespace-line)
11907 (whitespace-space-before-tab, whitespace-indentation)
11908 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
11909 obsolete defvars.
11910 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
11911 (whitespace-color-on): Use a single font-lock-add-keywords call.
11912 Fix double-evaluation of face variables.
11913
11914 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
11915
11916 * net/tramp-adb.el (tramp-adb-parse-device-names):
11917 Use `start-process' instead of `call-process'. Otherwise, the
11918 function might be blocked under MS Windows. (Bug#13299)
11919
11920 2013-03-17 Leo Liu <sdl.web@gmail.com>
11921
11922 Extend eldoc to display info in the mode-line. (Bug#13978)
11923 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
11924 (eldoc-mode-line-string): New variable.
11925 (eldoc-minibuffer-message): New function.
11926 (eldoc-message-function): New variable.
11927 (eldoc-message): Use it.
11928 (eldoc-display-message-p)
11929 (eldoc-display-message-no-interference-p):
11930 Support eldoc-post-insert-mode.
11931
11932 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
11933 (eval-expression): Run it.
11934
11935 2013-03-17 Roland Winkler <winkler@gnu.org>
11936
11937 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
11938 strings in the list of return values.
11939
11940 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
11941
11942 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
11943 radix before checking for HMS forms.
11944
11945 2013-03-16 Leo Liu <sdl.web@gmail.com>
11946
11947 * progmodes/scheme.el: Add indentation and font-locking for λ.
11948 (Bug#13975)
11949
11950 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
11951
11952 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
11953 token before point (bug#13942).
11954
11955 2013-03-16 Leo Liu <sdl.web@gmail.com>
11956
11957 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
11958
11959 2013-03-16 Eli Zaretskii <eliz@gnu.org>
11960
11961 * startup.el (command-line-normalize-file-name): Fix handling of
11962 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
11963 <xfq.free@gmail.com> in
11964 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
11965
11966 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
11967
11968 Sync with Tramp 2.2.7.
11969
11970 * net/trampver.el: Update release number.
11971
11972 2013-03-14 Tassilo Horn <tsdh@gnu.org>
11973
11974 * doc-view.el: Fix bug#13887.
11975 (doc-view-insert-image): Don't modify overlay associated to
11976 non-live windows, and implement horizontal centering of image in
11977 case it's smaller than the window.
11978 (doc-view-new-window-function): Force redisplay of new windows on
11979 doc-view buffers.
11980
11981 2013-03-13 Karl Fogel <kfogel@red-bean.com>
11982
11983 * saveplace.el (save-place-alist-to-file): Don't sort
11984 `save-place-alist', just pretty-print it (bug#13882).
11985
11986 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
11987
11988 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
11989 Check whether `default-file-name-coding-system' is bound.
11990 It isn't in XEmacs.
11991
11992 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
11993
11994 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
11995 backquotes for `obsolete' (bug#13929).
11996
11997 * international/mule.el (find-auto-coding): Include file name in
11998 obsolescence warning (bug#13922).
11999
12000 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
12001
12002 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
12003 for CFEngine 3-specific indentation.
12004 (cfengine3-indent-line): Use it. Fix up category regex.
12005 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
12006
12007 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
12008
12009 * type-break.el (type-break-file-name):
12010 * textmodes/remember.el (remember-data-file):
12011 * strokes.el (strokes-file):
12012 * shadowfile.el (shadow-initialize):
12013 * saveplace.el (save-place-file):
12014 * ps-bdf.el (bdf-cache-file):
12015 * progmodes/idlwave.el (idlwave-config-directory):
12016 * net/quickurl.el (quickurl-url-file):
12017 * international/kkc.el (kkc-init-file-name):
12018 * ido.el (ido-save-directory-list-file):
12019 * emulation/viper.el (viper-custom-file-name):
12020 * emulation/vip.el (vip-startup-file):
12021 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
12022 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
12023
12024 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
12025
12026 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
12027 * language/thai-word.el: Switch to UTF-8.
12028
12029 See ChangeLog.16 for earlier changes.
12030
12031 ;; Local Variables:
12032 ;; coding: utf-8
12033 ;; End:
12034
12035 Copyright (C) 2011-2014 Free Software Foundation, Inc.
12036
12037 This file is part of GNU Emacs.
12038
12039 GNU Emacs is free software: you can redistribute it and/or modify
12040 it under the terms of the GNU General Public License as published by
12041 the Free Software Foundation, either version 3 of the License, or
12042 (at your option) any later version.
12043
12044 GNU Emacs is distributed in the hope that it will be useful,
12045 but WITHOUT ANY WARRANTY; without even the implied warranty of
12046 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12047 GNU General Public License for more details.
12048
12049 You should have received a copy of the GNU General Public License
12050 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.