* lisp/progmodes/ruby-mode.el (ruby-mode-map): Add binding for
[bpt/emacs.git] / lisp / ChangeLog
1 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
2
3 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
4 `smie-down-list'.
5 (ruby-smie--args-separator-p): Check that there's no newline
6 between method call and its arguments.
7
8 2013-10-20 Alan Mackenzie <acm@muc.de>
9
10 Allow comma separated lists after Java "implements".
11
12 * progmodes/cc-engine.el (c-backward-over-enum-header): parse
13 commas.
14 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
15 from a "disallowed" list in enum fontification.
16
17 2013-10-20 Johan Bockgård <bojohan@gnu.org>
18
19 * startup.el (default-frame-background-mode): Remove unused
20 defvar.
21
22 * progmodes/verilog-mode.el (verilog-mode): Don't set
23 comment-indent-function globally.
24
25 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
26
27 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
28 Move Info menu item creation to ns-win.el.
29
30 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
31 in menu bar.
32
33 * menu-bar.el: Move GNUStep specific menus...
34
35 * term/ns-win.el (ns-initialize-window-system): ... to here.
36
37 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
38
39 * simple.el (newline): Only run post-self-insert-hook when
40 called interactively.
41
42 2013-10-19 Johan Bockgård <bojohan@gnu.org>
43
44 * icomplete.el (icomplete-with-completion-tables): Add :version.
45
46 2013-10-19 Alan Mackenzie <acm@muc.de>
47
48 Fix fontification bugs with constructors and const.
49
50 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
51 CASE 2) Remove the check for the absence of a suffix construct
52 after a function declaration with only types (no identifiers) in
53 the parentheses. Also, accept a function declaration with just a
54 type inside the parentheses, if this type can be positively
55 recognised as such, or if a prefix keyword like "explicit" nails
56 down the construct as a declaration.
57
58 2013-10-19 Eli Zaretskii <eliz@gnu.org>
59
60 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
61 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
62 the problem whereby selecting a menu item that leads to a
63 minibuffer prompt moves the cursor out of the minibuffer window,
64 making it hard to type at the prompt. Suggested by Stefan Monnier
65 <monnier@iro.umontreal.ca>.
66
67 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
68
69 * menu-bar.el: Don't make Services menu.
70
71 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
72
73 * ffap.el: Handle "/usr/include/c++/<version>" directories.
74 (ffap-alist): Use ffap-c++-mode for c++-mode.
75 (ffap-c++-path): New variable.
76 (ffap-c++-mode): New function.
77
78 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
79
80 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
81
82 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
83
84 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
85 introduced on 2013-09-08, which results in an infinite loop
86 requesting a password.
87
88 2013-10-18 Glenn Morris <rgm@gnu.org>
89
90 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
91
92 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
93
94 Sync with upstream verilog-mode revision 1a6ecec7.
95 * progmodes/verilog-mode.el (verilog-mode-version): Update.
96 (verilog-mode-release-date): Remove.
97 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
98 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
99 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
100 (verilog-auto-tieoff-ignore-regexp)
101 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
102 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
103 (verilog-signals-with, verilog-dir-cache-preserving)
104 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
105 Doc fixes.
106 (verilog-case-fold): New option, to control case folding in
107 regexp searches, bug597.
108 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
109 (verilog-string-match-fold, verilog-in-paren-count)
110 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
111 (verilog-at-close-struct-p): New functions.
112 (verilog-beg-block-re-ordered, verilog-extended-case-re)
113 (verilog-forward-sexp, verilog-set-auto-endcomments):
114 (verilog-leap-to-case-head): Handle "unique0" case.
115 (verilog-in-constraint-re): New constant.
116 (verilog-keywords, verilog-type-font-keywords):
117 Add some SystemVerilog 1800-2012 keywords.
118 (verilog-label-be): Remove unimplemented argument, bug669.
119 (verilog-batch-execute-func): When batch expanding clear
120 create-lockfiles to prevent spurious user locks when a file ends
121 up not changing.
122 (verilog-calculate-indent, verilog-calc-1)
123 (verilog-at-close-constraint-p, verilog-at-constraint-p)
124 (verilog-do-indent): Fix indentation of nested constraints
125 and structures.
126 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
127 (verilog-auto-inst-param): Use verilog-string-match-fold.
128 (verilog-read-inst-module-matcher):
129 Fix AUTOINST on gate primitives with #1.
130 (verilog-read-decls): Fix double-declaring user-defined typed signals.
131 Reads all user-defined typed variables.
132 (verilog-read-defines): Fix reading definitions inside comments, bug647.
133 (verilog-signals-matching-regexp)
134 (verilog-signals-not-matching-regexp, verilog-auto):
135 Respect verilog-case-fold.
136 (verilog-diff-report): Fix line count.
137 (verilog-auto-assign-modport): Remove unused local `modi'.
138 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
139 better handle multidimensional arrays.
140 Fix packed array ports misadding bit index in AUTOINST, bug637.
141 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
142 to not double-declare existing outputs and inputs, respectively.
143 (verilog-template-map): Bind U to verilog-sk-uvm-component.
144 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
145 (verilog-sk-uvm-component): New skeleton.
146 (verilog-submit-bug-report): Add verilog-case-fold,
147 remove verilog-mode-release-date.
148
149 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
150
151 * lisp/subr.el (sit-for): Call (input-pending-p t) so as to behave
152 as before.
153
154 2013-10-18 Reuben Thomas <rrt@sc3d.org>
155
156 * textmodes/remember.el (remember): set buffer-offer-save in
157 remember buffers (bug#13566).
158
159 2013-10-18 Daniel Colascione <dancol@dancol.org>
160
161 When evaluating forms in ielm, direct standard output to ielm
162 buffer. Add new ielm-return-for-effect command. Remove trailing
163 whitespace throughout.
164
165 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
166 (ielm-return-for-effect): New command.
167 (ielm-send-input): Accept optional `for-effect' parameter.
168 (ielm-eval-input): Accept optional `for-effect' parameter. Bind
169 `standard-output' to stream we create using
170 `ielm-standard-output-impl'. Suppress printing result when
171 `for-effect'.
172 (ielm-standard-output-impl): New function.
173 (inferior-emacs-lisp-mode): Explain new features in documentation.
174
175 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
176
177 Code cleanup.
178
179 * net/tramp.el (tramp-debug-message): Do not check for connection
180 buffer.
181 (tramp-message): Use "vector" connection property.
182
183 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
184 (tramp-equal-remote, tramp-eshell-directory-change)
185 * net/tramp-adb.el (tramp-adb-handle-copy-file)
186 (tramp-adb-handle-rename-file)
187 * net/tramp-cmds.el (tramp-list-remote-buffers)
188 (tramp-cleanup-connection, tramp-cleanup-this-connection)
189 * net/tramp-compat.el (tramp-compat-process-running-p)
190 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
191 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
192 (tramp-gvfs-handle-rename-file)
193 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
194 (tramp-set-file-uid-gid)
195 * net/tramp-smb.el (tramp-smb-handle-copy-file)
196 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
197 of `file-remote-p'.
198
199 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
200 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
201 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
202 (tramp-gw-open-network-stream): Suppress unrelated traces.
203
204 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
205 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
206 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
207 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
208 connection property.
209
210 * net/tramp-cache.el (top): Suppress traces when reading
211 persistency file.
212
213 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
214 Refactor common code. Improve debug message.
215 (tramp-maybe-open-connection)
216 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
217 connection buffer too early.
218
219 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
220 from `tramp-smb-actions-with-acl'.
221 (tramp-smb-actions-set-acl): New defconst.
222 (tramp-smb-handle-copy-directory)
223 (tramp-smb-action-get-acl): New defun, renamed from
224 `tramp-smb-action-with-acl'.
225 (tramp-smb-action-set-acl): New defun.
226 (tramp-smb-handle-set-file-acl): Rewrite.
227
228 2013-10-17 Glenn Morris <rgm@gnu.org>
229
230 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
231
232 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
233
234 * skeleton.el (skeleton-newline): Remove.
235 (skeleton-internal-1): Use (insert "\n") instead.
236
237 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
238 let-bindings.
239
240 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
241 forward-sexp-function while we redo its job (bug#15613).
242
243 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
244
245 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
246 represented by lists.
247
248 2013-10-16 Glenn Morris <rgm@gnu.org>
249
250 * tmm.el (tmm--history): New dynamic variable.
251 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
252
253 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
254
255 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
256 (tramp-smb-errors): Add error messages.
257 (tramp-smb-actions-with-acl): New defconst.
258 (tramp-smb-file-name-handler-alist) [set-file-acl]: Add handler.
259 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
260 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
261 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
262 (tramp-smb-get-stat-capability): Fix tests.
263
264 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
265
266 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
267 (bug#15580).
268
269 2013-10-16 Glenn Morris <rgm@gnu.org>
270
271 * ansi-color.el (ansi-color-drop-regexp):
272 Add 1J, 1K, 2K. (Bug#15617)
273
274 * files.el (hack-local-variables--warned-lexical): New.
275 (hack-local-variables):
276 Warn about misplaced lexical-binding. (Bug#15616)
277
278 * net/eww.el (eww-render): Always set eww-current-url,
279 and update header line. (Bug#15622)
280 (eww-display-html): ... Rather than just doing it here.
281
282 2013-10-15 Eli Zaretskii <eliz@gnu.org>
283
284 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
285 menu navigations commands.
286
287 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
288
289 * progmodes/subword.el (subword-capitalize): Be careful when
290 the search for [[:alpha:]] fails (bug#15580).
291
292 2013-10-14 Eli Zaretskii <eliz@gnu.org>
293
294 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
295 to commands that scroll the menu.
296
297 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
298
299 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
300 Handle methods ending with `?' and `!'.
301
302 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
303
304 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
305 `japanese-cp932' to `cp932' to fix the problem where saving a
306 source file written in Shift_JIS twice would end up having
307 `coding: japanese-cp932' which Ruby could not recognize.
308 (ruby-mode-set-encoding): Add support for encodings mapped to nil
309 in `ruby-encoding-map'.
310 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
311 doesn't need to be explicitly declared in magic comment.
312 (ruby-encoding-map): Add type declaration for better customize UI.
313
314 2013-10-13 Glenn Morris <rgm@gnu.org>
315
316 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
317 Occur buffers are read-only. http://bugs.debian.org/720775
318
319 * emacs-lisp/authors.el (authors-fixed-entries):
320 Comment out old alpha stuff.
321
322 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
323
324 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
325 to `after-save-hook' instead of `before-save-hook'.
326 (ruby-mode-set-encoding): Use the value of coding system used to
327 write the file. Call `basic-save-buffer-1' after modifying the
328 buffer.
329
330 2013-10-13 Alan Mackenzie <acm@muc.de>
331
332 Fix indentation/fontification of Java enum with
333 "implements"/generic.
334
335 * progmodes/cc-engine.el (c-backward-over-enum-header):
336 Extracted from the three other places and enhanced to handle generics.
337 (c-inside-bracelist-p): Uses new function above.
338 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
339 function above.
340 (c-font-lock-enum-tail): Uses new function above.
341
342 2013-10-13 Kenichi Handa <handa@gnu.org>
343
344 * international/mule-cmds.el (select-safe-coding-system): Remove a
345 superfluous condition in chekcing whether a coding system is safe
346 or not.
347
348 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
349
350 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
351
352 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
353
354 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
355
356 2013-10-13 Glenn Morris <rgm@gnu.org>
357
358 * menu-bar.el (menu-bar-update-buffers):
359 Unify Buffers menu prompt string. (Bug#15576)
360
361 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
362
363 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
364 Add some entries.
365 (authors-fixed-entries): Use accented form of name.
366
367 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
368
369 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
370 method calls (bug#15594).
371 (ruby-smie--args-separator-p): New function.
372 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
373 recognize paren-free method calls.
374
375 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
376 internals of universal-argument.
377
378 2013-10-11 Eli Zaretskii <eliz@gnu.org>
379
380 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
381 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
382 dropped menu on second mouse click on the menu bar.
383
384 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
385
386 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
387 (explicit-shell-file-name): Declare.
388 (sh--vars-before-point, sh--cmd-completion-table): New functions.
389 (sh-completion-at-point-function): New function.
390 (sh-mode): Use it.
391 (sh-smie--keyword-p): Remove unused argument.
392 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
393 vars.
394 (sh-set-shell): Always setup SMIE, even if we use the
395 old indentation code.
396
397 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
398
399 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
400 cases of ? and =.
401 (ruby-smie-rules): Simplify the "do" rule. The cases when the
402 predicate would return nil are almost non-existent.
403 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
404
405 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
406 cache also after commands that modify the buffer but don't move
407 point.
408
409 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
410
411 * env.el (substitute-env-in-file-name): New function.
412 (substitute-env-vars): Extend the meaning of the optional arg.
413
414 2013-10-10 Eli Zaretskii <eliz@gnu.org>
415
416 * term/w32-win.el (dynamic-library-alist): Define separate lists
417 of GIF DLLs for versions before and after 5.0.0 of giflib.
418 (Bug#15531)
419
420 2013-10-10 João Távora <joaotavora@gmail.com>
421
422 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
423 not locked, use last revision and current source as
424 defaults. (Bug#15569)
425
426 2013-10-10 Masatake YAMATO <yamato@redhat.com>
427
428 * menu-bar.el (menu-bar-open): Don't use popup-menu if
429 menu-bar is hidden.
430
431 2013-10-10 Martin Rudalics <rudalics@gmx.at>
432
433 * window.el (pop-to-buffer-same-window): Fix doc-string.
434 (Bug#15492)
435
436 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
437
438 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
439
440 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
441
442 * calendar/icalendar.el (icalendar-import-file):
443 Fix interactive spec. (Bug#15482)
444
445 2013-10-10 Glenn Morris <rgm@gnu.org>
446
447 * desktop.el (desktop-save): Default to saving in .emacs.d,
448 since PWD is no longer in desktop-path by default. (Bug#15319)
449
450 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
451 now that text mode has a menu with the same entry.
452 (menu-bar-text-mode-auto-fill): Remove now unused func.
453 * textmodes/text-mode.el (text-mode-map):
454 Use auto-fill help text from menu-bar.el.
455
456 2013-10-10 John Anthony <john@jo.hnanthony.com> (tiny change)
457
458 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
459
460 2013-10-09 Juri Linkov <juri@jurta.org>
461
462 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
463 instead of this-command-keys. Add universal-argument-more and
464 universal-argument-minus to the list of prefix commands. (Bug#15568)
465
466 2013-10-09 Glenn Morris <rgm@gnu.org>
467
468 * vc/vc-svn.el (vc-svn-create-repo):
469 Expand paths in file://... url. (Bug#15446)
470
471 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
472 Add some entries.
473 (authors): Remove unused local variables.
474
475 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
476
477 * profiler.el: Create a more coherent calltree from partial backtraces.
478 (profiler-format): Hide the tail with `invisible' so that C-s can still
479 find the hidden elements.
480 (profiler-calltree-depth): Don't recurse so enthusiastically.
481 (profiler-function-equal): New hash-table-test.
482 (profiler-calltree-build-unified): New function.
483 (profiler-calltree-build): Use it.
484 (profiler-report-make-name-part): Indent the calltree less.
485 (profiler-report-mode): Add visibility specs for profiler-format.
486 (profiler-report-expand-entry, profiler-report-toggle-entry):
487 Expand the whole subtree when provided with a prefix arg.
488
489 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
490
491 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
492 iuwu-mod token.
493 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
494 hanging iuwu-mod token.
495 (ruby-smie--forward-token): Do not include a dot after a token in
496 that token.
497 (ruby-smie--backward-token): Likewise.
498
499 2013-10-08 Juri Linkov <juri@jurta.org>
500
501 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
502 to isearch-other-control-char.
503 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
504 and isearch-post-command-hook to post-command-hook.
505 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
506 and isearch-post-command-hook from post-command-hook.
507 (isearch-unread-key-sequence)
508 (isearch-reread-key-sequence-naturally)
509 (isearch-lookup-scroll-key, isearch-other-control-char)
510 (isearch-other-meta-char): Remove functions.
511 (isearch-pre-command-hook, isearch-post-command-hook):
512 New functions based on isearch-other-meta-char rewritten
513 relying on the new behavior of overriding-terminal-local-map
514 that does not replace the local keymaps any more. (Bug#15200)
515
516 2013-10-08 Eli Zaretskii <eliz@gnu.org>
517
518 Support menus on text-mode terminals.
519 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
520 functionality.
521
522 * tooltip.el (tooltip-mode): Don't error out on TTYs.
523
524 * menu-bar.el (popup-menu, popup-menu-normalize-position):
525 Move here from mouse.el.
526 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
527 and arrow keys.
528 (tty-menu-navigation-map): New map for TTY menu navigation.
529
530 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
531
532 * frame.el (display-mouse-p): Report text-mode mouse as available
533 on w32.
534 (display-popup-menus-p): Report availability if mouse is
535 available; don't condition on window-system.
536
537 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
538 (tty-menu-selected-face): New faces.
539
540 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
541
542 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
543 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
544 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
545 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
546 New constants.
547 (lisp-mode-variables): New `elisp' argument.
548 (emacs-lisp-mode): Use it.
549 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
550 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
551
552 * indent.el: Use lexical-binding.
553 (indent-region): Add progress reporter.
554 (tab-stop-list): Make it implicitly extend to infinity by repeating the
555 last step.
556 (indent--next-tab-stop): New function to implement this behavior.
557 (tab-to-tab-stop, move-to-tab-stop): Use it.
558
559 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
560
561 * indent.el (indent-rigidly--current-indentation): New function.
562 (indent-rigidly-map): New var.
563 (indent-rigidly): Use it to provide interactive mode (bug#8196).
564
565 2013-10-08 Bastien Guerry <bzg@gnu.org>
566
567 * register.el (insert-register): Fix 2013-10-07T01:28:34Z!sdl.web@gmail.com.
568
569 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
570
571 * progmodes/perl-mode.el: Use lexical-binding.
572 Remove redundant :group args.
573 (perl-nochange): Change default to be closer to other major modes's
574 standard behavior.
575 (perl-indent-line): Don't consider text on current line as a
576 valid beginning of function from which to indent.
577
578 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
579 with more than one argument (bug#15538).
580
581 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
582
583 * vc/pcvs.el: Use lexical-binding.
584 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
585 environment of `eval'.
586 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
587 than a list of expressions. Adjust callers.
588 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
589
590 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
591
592 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
593 case of the dot in a chained method call being on the following line.
594
595 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
596
597 * electric.el (electric-indent-inhibit): New var.
598 (electric-indent-post-self-insert-function): Use it.
599 * progmodes/python.el (python-mode): Set it.
600
601 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
602 open braces.
603
604 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
605
606 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
607 (css-mode): Use electric-indent-chars.
608
609 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
610 (font-lock-beg, font-lock-end): Move before first use.
611 (nxml-mode): Use syntax-propertize-function.
612 (nxml-after-change, nxml-after-change1): Adjust accordingly.
613 (nxml-extend-after-change-region): Remove.
614 * nxml/xmltok.el: Use lexical-binding.
615 (xmltok-save): Use `declare'.
616 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
617 * nxml/nxml-util.el: Use lexical-binding.
618 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
619 Use `declare'.
620 * nxml/nxml-ns.el: Use lexical-binding.
621 (nxml-ns-save): Use `declare'.
622 (nxml-ns-prefixes-for): Avoid add-to-list.
623 * nxml/rng-match.el: Use lexical-binding.
624 (rng--ipattern): Use cl-defstruct.
625 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
626 (rng-cons-group-after, rng-subst-group-after)
627 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
628 Use closures instead of `(lambda...).
629
630 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
631
632 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
633 of BEG and END.
634
635 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
636 Use `tramp-handle-insert-file-contents'.
637 (tramp-gvfs-handle-insert-file-contents): Remove function.
638
639 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
640 Use `save-restriction' in order to keep markers.
641
642 * net/trampver.el: Update release number.
643
644 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
645
646 * progmodes/compile.el (compilation-parse-errors):
647 Use compilation--put-prop.
648 (compilation--ensure-parse): Check compilation-multiline.
649
650 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
651
652 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
653 lexical-binding.
654
655 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
656
657 * progmodes/ruby-mode.el: Fix recently added tests.
658 (ruby-smie-grammar): Add - and +.
659 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
660 (ruby-smie--backward-id): New functions.
661 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
662 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
663 any more.
664
665 2013-10-07 Leo Liu <sdl.web@gmail.com>
666
667 * register.el (register-preview-delay)
668 (register-preview-functions): New variables.
669 (register-read-with-preview, register-preview)
670 (register-describe-oneline): New functions.
671 (point-to-register, window-configuration-to-register)
672 (frame-configuration-to-register, jump-to-register)
673 (number-to-register, view-register, insert-register)
674 (copy-to-register, append-to-register, prepend-to-register)
675 (copy-rectangle-to-register): Use register-read-with-preview to
676 read register. (Bug#15525)
677
678 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
679
680 * net/network-stream.el (network-stream-open-starttls): Don't add
681 --insecure if it's already present, because that gnutls-cli
682 rejects getting that parameter twice.
683
684 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
685
686 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
687 keyword, too.
688
689 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
690
691 * newcomment.el (comment-use-global-state): Change default value
692 to t, mark obsolete (Bug#15251).
693 (comment-beginning): In addition to `comment-to-syntax', check the
694 value of `comment-use-global-state'.
695
696 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
697
698 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
699 (ruby-comment-column): Follow the global default, by default.
700 (ruby-smie-grammar): Add assignment syntax.
701 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
702 open-paren, a comma, or a \.
703 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
704 and line continuations.
705 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
706 followed by implicit semi-colons. Add rule for string concatenation
707 and for indentation at BOB.
708 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
709
710 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
711 calling next-sexp, since next-token may have skipped chars which
712 next-sexp doesn't know should be skipped!
713
714 2013-10-05 Leo Liu <sdl.web@gmail.com>
715
716 * progmodes/octave.el (octave-send-region):
717 Call compilation-forget-errors.
718
719 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
720
721 * vc/vc-svn.el (vc-svn-find-admin-dir):
722 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
723 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
724 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
725 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
726
727 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
728
729 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
730
731 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
732
733 * subr.el (read-passwd): Hide chars even when called within a context
734 where after-change-functions is disabled (bug#15501).
735 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
736 until we removed ourself from overriding-terminal-local-map.
737
738 2013-10-04 Leo Liu <sdl.web@gmail.com>
739
740 * progmodes/octave.el (inferior-octave-mode):
741 Call compilation-forget-errors.
742
743 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
744
745 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
746
747 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
748
749 * net/secrets.el (secrets-create-collection): Add optional
750 argument ALIAS. Use proper Label keyword. Append ALIAS as
751 dbus-call-method argument. (Bug#15516)
752
753 2013-10-04 Leo Liu <sdl.web@gmail.com>
754
755 * progmodes/octave.el (inferior-octave-error-regexp-alist)
756 (inferior-octave-compilation-font-lock-keywords): New variables.
757 (compilation-error-regexp-alist)
758 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
759 (inferior-octave-mode): Use compilation-shell-minor-mode.
760
761 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
762
763 * minibuffer.el (completion--replace): Be careful that `end' might be
764 a marker.
765
766 2013-10-03 Daiki Ueno <ueno@gnu.org>
767
768 Add support for package signature checking.
769 * emacs-lisp/package.el (url-http-file-exists-p)
770 (epg-make-context, epg-context-set-home-directory)
771 (epg-verify-string, epg-context-result-for)
772 (epg-signature-status, epg-signature-to-string)
773 (epg-check-configuration, epg-configuration)
774 (epg-import-keys-from-file): Declare.
775 (package-check-signature): New user option.
776 (package-unsigned-archives): New user option.
777 (package-desc): Add `signed' field.
778 (package-load-descriptor): Set `signed' field if .signed file exists.
779 (package--archive-file-exists-p): New function.
780 (package--check-signature): New function.
781 (package-install-from-archive): Check package signature.
782 (package--download-one-archive): Check archive signature.
783 (package-delete): Remove .signed file.
784 (package-import-keyring): New command.
785 (package-refresh-contents): Import default keyring.
786 (package-desc-status): Add "unsigned" status.
787 (describe-package-1, package-menu--print-info)
788 (package-menu-mark-delete, package-menu--find-upgrades)
789 (package-menu--status-predicate): Support "unsigned" status.
790
791 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
792
793 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
794 the new compilation scheme using the new byte-codes.
795
796 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
797 (byte-pophandler): New byte codes.
798 (byte-goto-ops): Adjust accordingly.
799 (byte-compile--use-old-handlers): New var.
800 (byte-compile-catch): Use new byte codes depending on
801 byte-compile--use-old-handlers.
802 (byte-compile-condition-case--old): Rename from
803 byte-compile-condition-case.
804 (byte-compile-condition-case--new): New function.
805 (byte-compile-condition-case): New function that dispatches depending
806 on byte-compile--use-old-handlers.
807 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
808 when we can.
809
810 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
811 Optimize under `condition-case' and `catch' if
812 byte-compile--use-old-handlers is nil.
813 (disassemble-offset): Handle new bytecodes.
814
815 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
816
817 * subr.el (error): Use `declare'.
818 (decode-char, encode-char): Use advertised-calling-convention instead
819 of the docstring to discourage use of the `restriction' arg.
820
821 2013-10-03 Daiki Ueno <ueno@gnu.org>
822
823 * epg.el (epg-verify-file): Add a comment saying that it does not
824 notify verification error as a return value nor a signal.
825 (epg-verify-string): Ditto.
826
827 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
828
829 * progmodes/compile.el (compilation-start): Try globbing the arg to
830 `cd' (bug#15417).
831
832 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
833
834 Sync with Tramp 2.2.8.
835
836 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
837 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
838 * net/trampver.el: Update release number.
839
840 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
841
842 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
843 and default-process-coding-system for darwin only.
844
845 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
846
847 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
848
849 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
850
851 * vc/vc-git.el (vc-git-grep): Disable pager.
852
853 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
854
855 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
856 Use :url instead of :homepage, as per
857 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
858
859 * newcomment.el (comment-beginning): When `comment-use-syntax' is
860 non-nil, use `syntax-ppss' (Bug#15251).
861
862 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
863
864 * progmodes/octave.el (inferior-octave-startup-file):
865 Prefer ~/.emacs.d/init_octave.m.
866
867 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
868
869 * emacs-lisp/package.el (package-desc-from-define):
870 Accept additional arguments as plist, convert them to an alist and store
871 them in the `extras' slot.
872 (package-generate-description-file): Convert extras alist back to
873 plist and append to the `define-package' form arguments.
874 (package--alist-to-plist): New function.
875 (package--ac-desc): Add `extras' slot.
876 (package--add-to-archive-contents): Check if the archive-contents
877 vector is long enough, and if it is, pass its `extras' slot value
878 to `package-desc-create'.
879 (package-buffer-info): Call `lm-homepage', pass the returned value
880 to `package-desc-from-define'.
881 (describe-package-1): Render the homepage button (Bug#13291).
882
883 * emacs-lisp/package-x.el (package-upload-buffer-internal):
884 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
885
886 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
887
888 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
889 and default-process-coding-system to utf-8-unix (Bug#15402).
890
891 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
892
893 * subr.el (looking-back): Do not recommend using looking-back.
894
895 2013-09-28 Alan Mackenzie <acm@muc.de>
896
897 Fix indentation/fontification of Java enum with "implements".
898
899 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
900 regexp which matches "implements", etc., in Java.
901 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
902 specifier clauses coming after "enum".
903 * progmodes/cc-fonts.el (c-font-lock-declarations)
904 (c-font-lock-enum-tail): Check for extra specifier clauses coming
905 after "enum".
906
907 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
908
909 * faces.el (region): Change ns_selection_color to
910 ns_selection_fg_color, add ns_selection_bg_color.
911
912 2013-09-28 Leo Liu <sdl.web@gmail.com>
913
914 * progmodes/octave.el (inferior-octave-completion-table)
915 (inferior-octave-completion-at-point): Minor tweaks.
916
917 * textmodes/ispell.el (ispell-lookup-words): Rename from
918 lookup-words. (Bug#15460)
919 (lookup-words): Obsolete.
920 (ispell-complete-word, ispell-command-loop): All uses changed.
921
922 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
923
924 * lisp/progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
925 (octave-mode-menu): Add octave-send-buffer.
926 (octave-send-buffer): New function.
927
928 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
929
930 * lisp/progmodes/octave.el (octave-mode-map): Add key binding for
931 octave-lookfor.
932 (octave-mode-menu): Add octave-lookfor.
933 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
934 octave-lookfor.
935 (octave-lookfor): New function.
936
937 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
938
939 * emacs-lisp/cl-macs.el:
940 (cl--loop-destr-temps): Remove.
941 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
942 its convention.
943 (cl--loop-set-iterator-function): New function.
944 (cl-loop): Adjust accordingly, so as not to use cl-subst.
945 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
946 Bind `it' with `let' instead of substituting it with `cl-subst'.
947 (cl--unused-var-p): New function.
948 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
949 Eliminate some unused variable warnings (bug#15326).
950
951 2013-09-27 Tassilo Horn <tsdh@gnu.org>
952
953 * doc-view.el (doc-view-scale-reset): Rename from
954 `doc-view-reset-zoom-level'.
955 (doc-view-scale-adjust): New command.
956 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
957 `doc-view-scale-adjust'.
958
959 2013-09-26 Tassilo Horn <tsdh@gnu.org>
960
961 * doc-view.el (doc-view-reset-zoom-level): New command.
962 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
963 zoom commands (bug#15466).
964
965 2013-09-26 Kenichi Handa <handa@gnu.org>
966
967 * international/quail.el (quail-help): Make it not a command.
968
969 2013-09-26 Leo Liu <sdl.web@gmail.com>
970
971 * minibuffer.el (completion-all-sorted-completions): Make args
972 optional as they are.
973
974 2013-09-25 Daniel Colascione <dancol@dancol.org>
975
976 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
977 specs are and that they're not evaluated.
978
979 2013-09-24 Sam Steingold <sds@gnu.org>
980
981 * midnight.el (clean-buffer-list-kill-regexps)
982 (clean-buffer-list-kill-buffer-names): Update for the new Man
983 buffer naming which includes the object name.
984
985 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
986
987 * eshell/esh-cmd.el (eshell--sep-terms): New var.
988 (eshell-parse-command, eshell-parse-pipeline): Use it since
989 eshell-separate-commands requires a dynamic scoped var.
990 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
991
992 2013-09-23 Leo Liu <sdl.web@gmail.com>
993
994 * autoinsert.el (auto-insert-alist): Make the value of
995 lexical-binding match its file setting.
996
997 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
998
999 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
1000
1001 * autoarg.el (autoarg-kp-digit-argument):
1002 * electric.el (Electric-command-loop):
1003 * kmacro.el (kmacro-step-edit-insert):
1004 Do not set universal-argument-num-events.
1005
1006 2013-09-22 Leo Liu <sdl.web@gmail.com>
1007
1008 * files.el (interpreter-mode-alist): Add octave.
1009
1010 2013-09-21 Alan Mackenzie <acm@muc.de>
1011
1012 C++: fontify identifier in declaration following "public:" correctly.
1013 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
1014 to match "public", etc.
1015 (c-decl-prefix-re): Add ":" into the C++ value.
1016 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
1017 bit. Add a check for a ":" preceded by "public", etc.
1018
1019 2013-09-21 Eli Zaretskii <eliz@gnu.org>
1020
1021 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
1022 recognized by GDB 7.5 and later.
1023
1024 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
1025
1026 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
1027
1028 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1029
1030 * subr.el (internal--call-interactively): New const.
1031 (called-interactively-p): Use it (bug#3984).
1032
1033 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
1034
1035 * vc/pcvs.el (cvs-mode-ignore):
1036 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
1037 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
1038
1039 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1040
1041 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
1042 (eshell-ls-orig-insert-directory): Remove.
1043 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
1044 (eshell-ls-use-in-dired): Use advice-add/remove.
1045 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
1046 Add `orig-fun' arg for use in :around advice.
1047 Make it check (redundantly) eshell-ls-use-in-dired.
1048
1049 2013-09-19 Glenn Morris <rgm@gnu.org>
1050
1051 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
1052
1053 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
1054
1055 * emacs-lisp/eieio.el (class-parent): Undo previous change.
1056
1057 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
1058
1059 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
1060 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
1061 (tramp-get-remote-python): New defuns.
1062 (tramp-get-remote-uid-with-perl)
1063 (tramp-get-remote-gid-with-perl): New defuns. Perl code
1064 contributed by yary <not.com@gmail.com> (tiny change).
1065 (tramp-get-remote-uid-with-python)
1066 (tramp-get-remote-gid-with-python): New defuns. Python code
1067 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
1068 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
1069
1070 2013-09-19 Glenn Morris <rgm@gnu.org>
1071
1072 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
1073
1074 * eshell/em-unix.el (eshell-remove-entries):
1075 Rename argument to avoid name-clash with global `top-level'.
1076
1077 * eshell/esh-proc.el (eshell-kill-process-function):
1078 Remove eshell-reset-after-proc from eshell-kill-hook if present.
1079 (eshell-reset-after-proc): Remove unused arg `proc'.
1080
1081 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
1082 (directory-files-and-attributes): Mark unused arg.
1083
1084 * eshell/em-unix.el (eshell-remove-entries):
1085 Remove unused arg `path'. Update callers.
1086
1087 * eshell/em-hist.el (eshell-hist-parse-arguments):
1088 Remove unused arg `silent'. Update callers.
1089
1090 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
1091 Fix (f)boundp mix-up.
1092
1093 * eshell/em-smart.el (eshell-smart-scroll-window)
1094 (eshell-disable-after-change):
1095 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
1096
1097 2013-09-18 Alan Mackenzie <acm@muc.de>
1098
1099 Fix fontification of type when followed by "const".
1100 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
1101 "known" types from fontification.
1102
1103 2013-09-18 Glenn Morris <rgm@gnu.org>
1104
1105 * emacs-lisp/chart.el (x-display-color-cells): Declare.
1106 (chart-face-list): Drop Emacsen without display-color-p.
1107
1108 * net/eww.el (libxml-parse-html-region): Declare.
1109 (eww-display-html): Explicit error if no libxml2 support.
1110
1111 * doc-view.el (doc-view-mode): Silence --without-x compilation.
1112
1113 * image.el (image-type-from-buffer, image-multi-frame-p):
1114 Remove --without-x warning/error.
1115
1116 * mouse.el (mouse-yank-primary):
1117 * term.el (term-mouse-paste):
1118 Reorder to silence --without-x compilation.
1119
1120 * mpc.el (doc-view-mode): Silence --without-x compilation.
1121
1122 * mail/rmailmm.el (rmail-mime-set-bulk-data):
1123 Silence --without-x compilation.
1124
1125 * progmodes/gud.el (gud-find-file, gud-mode):
1126 Silence --without-x compilation.
1127 (tooltip-mode): Declare.
1128
1129 * wdired.el (dired-backup-overwrite): Remove declaration.
1130 (wdired-mode-map): Add doc string.
1131
1132 * custom.el (x-get-resource): Declare.
1133
1134 * eshell/em-glob.el (ange-cache):
1135 * eshell/em-unix.el (ange-cache): Declare.
1136
1137 * faces.el (x-display-list, x-open-connection, x-get-resource):
1138 Declare.
1139
1140 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
1141 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
1142 Declare.
1143
1144 * frame.el (x-display-grayscale-p, x-display-name): Declare.
1145
1146 * net/gnutls.el (gnutls-log-level): Declare.
1147
1148 * net/shr.el (image-size, image-animate): Declare.
1149
1150 * simple.el (font-info): Declare.
1151
1152 * subr.el (x-popup-dialog): Declare.
1153
1154 * term/common-win.el (x-select-enable-primary)
1155 (x-last-selected-text-primary, x-last-selected-text-clipboard):
1156 Declare.
1157
1158 * term/ns-win.el (x-handle-args): Declare.
1159
1160 * term/x-win.el (x-select-enable-clipboard): Declare.
1161
1162 * term/w32-win.el (create-default-fontset): Declare.
1163
1164 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
1165 Declare.
1166
1167 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
1168 (fit-frame-to-buffer): Explicit error if --without-x.
1169 (mouse-autoselect-window-select): Silence compiler.
1170
1171 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
1172
1173 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
1174 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
1175 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
1176 * eshell/esh-util.el (eshell-sublist):
1177 Remove unused local variables.
1178
1179 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
1180
1181 * textmodes/two-column.el: Make 2C-split work for --without-x.
1182 (scroll-bar-columns): Autoload.
1183 (top-level): Require fringe when compiling.
1184
1185 2013-09-18 Leo Liu <sdl.web@gmail.com>
1186
1187 * subr.el (add-hook): Robustify to handle closure as well.
1188
1189 2013-09-17 Glenn Morris <rgm@gnu.org>
1190
1191 * simple.el (messages-buffer-mode-map): Unbind "g".
1192
1193 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1194
1195 * help-mode.el (help-mode-finish): Use derived-mode-p.
1196 Remove obsolete highlighting.
1197
1198 * play/life.el (life-mode): Use define-derived-mode. Derive from
1199 special-mode.
1200 (life): Let-bind inhibit-read-only.
1201 (life-setup): Avoid `setq'. Use `life-mode'.
1202
1203 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
1204 which should not be needed any more.
1205 (package-menu-refresh, package-menu-describe-package): Use user-error.
1206
1207 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
1208 (eshell-post-rewrite-command-hook): Make obsolete.
1209 (eshell-parse-command): Simplify.
1210 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
1211 (eshell--cmd): Declare.
1212 (eshell-parse-pipeline): Remove unused var `final-p'.
1213 Pass a dynvar to eshell-post-rewrite-command-hook.
1214 Implement the new eshell-post-rewrite-command-function.
1215 (eshell-invoke-directly): Remove unused arg `input'.
1216 * eshell/esh-io.el (eshell-io-initialize):
1217 Use eshell-post-rewrite-command-function (bug#15399).
1218 (eshell--apply-redirections): Rename from eshell-apply-redirections;
1219 adjust to new calling convention.
1220 (eshell-create-handles): Rename args to avoid clashing with dynvar
1221 `standard-output'.
1222
1223 2013-09-17 Glenn Morris <rgm@gnu.org>
1224
1225 * simple.el (messages-buffer-mode): New major mode.
1226 (messages-buffer): New function.
1227 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
1228 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
1229 (ert-run-test): Use `messages-buffer' function.
1230 (ert--force-message-log-buffer-truncation): Ignore read-only.
1231 * help.el (view-echo-area-messages): Use `messages-buffer' function.
1232 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
1233
1234 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1235
1236 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
1237
1238 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15329).
1239
1240 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
1241
1242 * icomplete.el (icomplete-in-buffer): New var.
1243 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
1244 vars and replace them with functions.
1245 (icomplete-minibuffer-setup): Adjust accordingly.
1246 (icomplete--completion-table, icomplete--completion-predicate)
1247 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
1248 New functions.
1249 (icomplete-forward-completions, icomplete-backward-completions)
1250 (icomplete-simple-completing-p, icomplete-exhibit)
1251 (icomplete-completions): Use them.
1252 (icomplete--in-region-buffer): New var.
1253 (icomplete--in-region-setup): New function.
1254 (icomplete-mode): Use it.
1255
1256 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
1257 (bug#15379).
1258 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
1259 return args and options.
1260 (eshell-eval-using-options): Use the new return value of
1261 eshell--do-opts to set the options's vars in their scope.
1262 (eshell--set-option): Rename from eshell-set-option.
1263 Add arg `opt-vals'.
1264 (eshell--process-option): Rename from eshell-process-option.
1265 Add arg `opt-vals'.
1266 (eshell--process-args): Use an `opt-vals' alist to store the options's
1267 values during their processing and return them additionally to the
1268 remaining args.
1269
1270 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
1271
1272 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
1273 continuation character an operator, as far as indentation is
1274 concerned (Bug#15369).
1275
1276 2013-09-15 Martin Rudalics <rudalics@gmx.at>
1277
1278 * window.el (window--state-put-2): Don't process buffer state
1279 when buffer doesn't exist any more (Bug#15382).
1280
1281 2013-09-15 Glenn Morris <rgm@gnu.org>
1282
1283 * eshell/em-unix.el (eshell/rm):
1284 Make -f ignore missing files. (Bug#15373)
1285
1286 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
1287 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
1288 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
1289
1290 2013-09-14 Glenn Morris <rgm@gnu.org>
1291
1292 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
1293
1294 2013-09-13 Glenn Morris <rgm@gnu.org>
1295
1296 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
1297 (dired-guess-default): Make `file' available in the env. (Bug#15363)
1298
1299 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
1300
1301 * frame.el (x-focus-frame): Mark as declared in frame.c.
1302
1303 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
1304
1305 * ls-lisp.el: Use advice-add.
1306 (original-insert-directory): Remove.
1307 (ls-lisp--insert-directory): Rename from insert-directory; add
1308 `orig-fun' argument.
1309 (insert-directory): Advise.
1310
1311 2013-09-13 Eli Zaretskii <eliz@gnu.org>
1312
1313 * term.el (term-emulate-terminal): Decode the command string
1314 before passing it to term-command-hook. (Bug#15337)
1315
1316 2013-09-13 Glenn Morris <rgm@gnu.org>
1317
1318 * eshell/esh-util.el (ange-cache): Move declaration earlier.
1319
1320 * eshell/esh-ext.el (eshell-search-path): Declare.
1321
1322 * eshell/em-prompt.el (eshell/pwd): Autoload it.
1323 Otherwise an error occurs if eshell-dirs module not loaded.
1324
1325 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
1326
1327 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
1328
1329 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
1330 `tramp-check-proper-host'. Check for a valid method name.
1331
1332 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1333 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
1334 * net/tramp-sh.el (tramp-maybe-open-connection):
1335 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
1336
1337 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
1338 also for hash values.
1339
1340 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1341
1342 * term/ns-win.el (parameters): Don't declare as dynamic.
1343 (before-make-frame-hook): Don't add ineffective function.
1344
1345 * eshell/*.el: Use lexical-binding (bug#15231).
1346
1347 2013-09-12 Kenichi Handa <handa@gnu.org>
1348
1349 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
1350
1351 2013-09-12 Glenn Morris <rgm@gnu.org>
1352
1353 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
1354 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
1355
1356 * subr.el (do-after-load-evaluation): Also give compiler warnings
1357 when obsolete files are used (except by obsolete files).
1358
1359 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
1360 in the status output, assume `filename' is the first. (Bug#15322)
1361
1362 * vc/vc.el (vc-deduce-fileset): Doc fix.
1363
1364 * calc/calc-help.el (Info-goto-node):
1365 * progmodes/cperl-mode.el (Info-find-node):
1366 * vc/ediff.el (Info-goto-node): Update declarations.
1367
1368 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
1369
1370 * vc/vc-bzr.el (vc-compilation-mode): Declare.
1371 (vc-bzr-pull): Require vc-dispatcher.
1372 * vc/vc-git.el (vc-compilation-mode): Declare.
1373 (vc-git-pull): Require vc-dispatcher.
1374
1375 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
1376
1377 * progmodes/octave.el (help-button-action): Declare.
1378
1379 * shell.el (shell-directory-tracker): Output error as a message
1380 rather than just returning it as a string.
1381 (shell-process-pushd): Remove useless use of message.
1382
1383 * dframe.el (dframe-timer-fn):
1384 * files.el (dir-locals-read-from-file):
1385 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
1386 (mpc-format):
1387 * reveal.el (reveal-post-command):
1388 * saveplace.el (load-save-place-alist-from-file):
1389 * shell.el (shell-resync-dirs):
1390 * w32-common-fns.el (x-get-selection-value):
1391 * emacs-lisp/copyright.el (copyright-find-copyright):
1392 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
1393 * emulation/tpu-edt.el (tpu-copy-keyfile):
1394 * play/bubbles.el (bubbles--mark-neighbourhood):
1395 * progmodes/executable.el
1396 (executable-make-buffer-file-executable-if-script-p):
1397 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
1398
1399 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1400
1401 Cleanup Eshell to rely less on dynamic scoping.
1402 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
1403 last-value, and ext-command here. Bind `args' closer to `body'.
1404 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
1405 (eshell--args): Declare new dynamic var.
1406 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
1407 last-value, and ext-command. Pass `args' to `body'.
1408 (eshell-process-args): Bind eshell--args.
1409 (eshell-set-option): Use eshell--args.
1410 * eshell/eshell.el (eshell): Use derived-mode-p.
1411 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
1412 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
1413 (eshell-glob-function): Declare.
1414 * eshell/esh-util.el: Require cl-lib.
1415 (eshell-read-hosts-file): Avoid add-to-list.
1416 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
1417 `err'.
1418 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
1419 Declare.
1420 (eshell/diff): Remove unused var `err'.
1421 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
1422 `killflag'.
1423 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
1424 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
1425 first use.
1426 * eshell/em-glob.el (eshell-glob-matches, message-shown):
1427 Move declaration before first use.
1428 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
1429 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
1430 rely on cl-return.
1431
1432 2013-09-12 Glenn Morris <rgm@gnu.org>
1433
1434 * term/ns-win.el (global-map): Remove binding for ispell-next,
1435 deleted 1999-05-29. (Bug#15357)
1436
1437 2013-09-11 Glenn Morris <rgm@gnu.org>
1438
1439 * echistory.el (electric-command-history): Remove call to deleted func.
1440
1441 * play/landmark.el (landmark-mode): Fix typos.
1442
1443 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
1444 Check cvs-sort-ignore-file is bound.
1445
1446 * savehist.el: No need for cl when compiling on Emacs.
1447
1448 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
1449
1450 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
1451 (bug#15338).
1452 (eshell-self-insert-command, eshell-send-invisible):
1453 Remove unused argument.
1454 (eshell-handle-control-codes): Remove unused var `orig'.
1455 Avoid delete-backward-char.
1456
1457 * files.el (set-auto-mode): Simplify a bit further.
1458
1459 2013-09-11 Glenn Morris <rgm@gnu.org>
1460
1461 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
1462 (set-auto-mode): Don't regexp-quote elements.
1463 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
1464 * progmodes/cc-mode.el (interpreter-mode-alist):
1465 * progmodes/ruby-mode.el (interpreter-mode-alist):
1466 Revert previous change.
1467
1468 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
1469
1470 * play/snake.el (snake-mode):
1471 * play/mpuz.el (mpuz-mode):
1472 * play/landmark.el (lm-mode):
1473 * play/blackbox.el (blackbox-mode):
1474 * play/5x5.el (5x5-mode):
1475 * obsolete/options.el (Edit-options-mode):
1476 * net/quickurl.el (quickurl-list-mode):
1477 * net/newst-treeview.el (newsticker-treeview-mode):
1478 * mail/rmailsum.el (rmail-summary-mode):
1479 * mail/mspools.el (mspools-mode):
1480 * locate.el (locate-mode):
1481 * ibuffer.el (ibuffer-mode):
1482 * emulation/ws-mode.el (wordstar-mode):
1483 * emacs-lisp/debug.el (debugger-mode):
1484 * array.el (array-mode):
1485 * net/eudc.el (eudc-mode): Use define-derived-mode.
1486 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
1487 Move initialization into declaration.
1488 (mairix-searches-mode): Use define-derived-mode.
1489 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
1490 (eudc-edit-hotlist): Use dolist.
1491 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
1492 (Man-mode): Use define-derived-mode.
1493 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
1494 (Info-edit-mode): Use define-derived-mode.
1495 (Info-cease-edit): Use Info-mode.
1496 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
1497 into declaration.
1498 (eshell-mode): Use define-derived-mode.
1499 * chistory.el (command-history-mode-map): Rename from
1500 command-history-map.
1501 (command-history-mode): Use define-derived-mode.
1502 (Command-history-setup): Remove function.
1503 * calc/calc.el (calc-trail-mode-map): New var.
1504 (calc-trail-mode): Use define-derived-mode.
1505 (calc-trail-buffer): Set calc-main-buffer manually.
1506 * bookmark.el (bookmark-insert-annotation): New function.
1507 (bookmark-edit-annotation): Use it.
1508 (bookmark-edit-annotation-mode): Make it a proper major mode.
1509 (bookmark-send-edited-annotation): Use derived-mode-p.
1510 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
1511 closer to its ideal place. Use \' to match EOS.
1512
1513 * profiler.el (profiler-calltree-find): Use function-equal.
1514
1515 2013-09-10 Glenn Morris <rgm@gnu.org>
1516
1517 * files.el (interpreter-mode-alist): Convert to regexps.
1518 (set-auto-mode): Adapt for this. (Bug#15306)
1519 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
1520 Comment out unused variable.
1521 * progmodes/cc-mode.el (interpreter-mode-alist):
1522 * progmodes/python.el (interpreter-mode-alist):
1523 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
1524 * progmodes/sh-script.el (sh-set-shell):
1525 No longer use interpreter-mode-alist to get list of shells.
1526
1527 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
1528
1529 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
1530
1531 * simple.el: Use set-temporary-overlay-map for universal-argument.
1532 (universal-argument-map): Don't use default-bindings (bug#15317).
1533 Bind switch-frame explicitly. Replace universal-argument-minus with
1534 a conditional binding.
1535 (universal-argument-num-events, saved-overriding-map): Remove.
1536 (restore-overriding-map): Remove.
1537 (universal-argument--mode): Rename from save&set-overriding-map,
1538 and rewrite.
1539 (universal-argument, universal-argument-more, negative-argument)
1540 (digit-argument): Adjust accordingly.
1541 (universal-argument-minus): Remove.
1542 (universal-argument-other-key): Remove.
1543
1544 * subr.el (with-demoted-errors): Add `format' argument.
1545
1546 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
1547
1548 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
1549 `tramp-cleanup-connection'.
1550
1551 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
1552 parameters KEEP-DEBUG and KEEP-PASSWORD.
1553
1554 * net/tramp.el (tramp-file-name-handler):
1555 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1556 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
1557 (tramp-maybe-open-connection):
1558 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1559 Use `tramp-cleanup-connection'.
1560
1561 * net/tramp-sh.el (tramp-maybe-open-connection):
1562 Catch 'uname-changed inside the progress reporter.
1563
1564 2013-09-10 Glenn Morris <rgm@gnu.org>
1565
1566 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
1567
1568 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
1569 returns "alternate access method" in mode (eg "-rw-r--r--.").
1570
1571 2013-09-08 Glenn Morris <rgm@gnu.org>
1572
1573 * saveplace.el (load-save-place-alist-from-file):
1574 Demote errors. (Bug#15305)
1575
1576 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
1577
1578 Improve compatibility with older Emacsen, and XEmacs.
1579
1580 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
1581 only if it is bound. It isn't for XEmacs.
1582 (with-tramp-progress-reporter): Do not let-bind `result'.
1583 This yields to scoping errors in XEmacs.
1584 (tramp-handle-make-auto-save-file-name): New function, moved from
1585 tramp-sh.el.
1586
1587 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
1588 for `make-auto-save-file-name'.
1589 (tramp-adb--gnu-switches-to-ash):
1590 Use `tramp-compat-replace-regexp-in-string'.
1591
1592 * net/tramp-cache.el (tramp-cache-print): Call
1593 `substring-no-properties' only if it is bound. It isn't for XEmacs.
1594
1595 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
1596 bound. It isn't for XEmacs.
1597
1598 * net/tramp-compat.el (tramp-compat-copy-file):
1599 Catch `wrong-number-of-arguments' error.
1600 (tramp-compat-replace-regexp-in-string): New defun.
1601
1602 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
1603 for `make-auto-save-file-name'.
1604 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
1605 `copy-file'.
1606 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
1607 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
1608 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
1609
1610 * net/tramp-gw.el (tramp-gw-open-network-stream):
1611 Use `tramp-compat-replace-regexp-in-string'.
1612
1613 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
1614 Call `tramp-handle-make-auto-save-file-name'.
1615 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
1616 (tramp-sh-file-gvfs-monitor-dir-process-filter)
1617 (tramp-sh-file-inotifywait-process-filter):
1618 Use `tramp-compat-replace-regexp-in-string'.
1619 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
1620
1621 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
1622 for `make-auto-save-file-name'.
1623 (tramp-smb-handle-copy-directory):
1624 Call `tramp-compat-replace-regexp-in-string'.
1625 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
1626 (tramp-smb-handle-copy-file): Improve error message.
1627 (tramp-smb-handle-rename-file): Rename directly only in case
1628 `newname' does not exist yet. This is a restriction of smbclient.
1629 (tramp-smb-maybe-open-connection): Rerun the function only when
1630 `auth-sources' is non-nil.
1631
1632 2013-09-08 Kenichi Handa <handa@gnu.org>
1633
1634 * international/characters.el: Set category "^" (Combining) for
1635 more characters.
1636
1637 2013-09-07 Alan Mackenzie <acm@muc.de>
1638
1639 Correctly fontify Java class constructors.
1640 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
1641 in Java Mode.
1642 (c-recognize-typeless-decls): Set the Java value to t.
1643 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
1644 While handling a "(", add a check for, effectively, Java, and handle a
1645 "typeless" declaration there.
1646
1647 2013-09-07 Roland Winkler <winkler@gnu.org>
1648
1649 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
1650 field subtitle for entry type book.
1651
1652 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1653
1654 * minibuffer.el: Make minibuffer-complete call completion-in-region
1655 rather than other way around.
1656 (completion--some, completion-pcm--find-all-completions):
1657 Don't delay signals when debugging.
1658 (minibuffer-completion-contents): Beware fields within the
1659 minibuffer contents.
1660 (completion-all-sorted-completions): Use defvar-local.
1661 (completion--do-completion, completion--cache-all-sorted-completions)
1662 (completion-all-sorted-completions, minibuffer-force-complete):
1663 Add args `beg' and `end'.
1664 (completion--in-region-1): New fun, extracted from minibuffer-complete.
1665 (minibuffer-complete): Use completion-in-region.
1666 (completion-complete-and-exit): New fun, extracted from
1667 minibuffer-complete-and-exit.
1668 (minibuffer-complete-and-exit): Use it.
1669 (completion--complete-and-exit): Rename from
1670 minibuffer--complete-and-exit.
1671 (completion-in-region--single-word): New function, extracted from
1672 minibuffer-complete-word.
1673 (minibuffer-complete-word): Use it.
1674 (display-completion-list): Make `common-substring' argument obsolete.
1675 (completion--in-region): Call completion--in-region-1 instead of
1676 minibuffer-complete.
1677 (completion-help-at-point): Pass boundaries to
1678 minibuffer-completion-help as args rather than via an overlay.
1679 (completion-pcm--string->pattern): Use `any-delim'.
1680 (completion-pcm--optimize-pattern): New function.
1681 (completion-pcm--pattern->regex): Handle `any-delim'.
1682 * icomplete.el (icomplete-forward-completions)
1683 (icomplete-backward-completions, icomplete-completions):
1684 Adjust calls to completion-all-sorted-completions and
1685 completion--cache-all-sorted-completions.
1686 (icomplete-with-completion-tables): Default to t.
1687 * emacs-lisp/crm.el (crm--current-element): Rename from
1688 crm--select-current-element. Don't put an overlay but return the
1689 boundaries instead.
1690 (crm--completion-command): Take two new args to bind to the boundaries.
1691 (crm-completion-help): Adjust accordingly.
1692 (crm-complete): Use completion-in-region.
1693 (crm-complete-word): Use completion-in-region--single-word.
1694 (crm-complete-and-exit): Use completion-complete-and-exit.
1695
1696 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1697
1698 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
1699 than dynamically.
1700
1701 2013-09-06 Juri Linkov <juri@jurta.org>
1702
1703 * info.el (Info-display-images-node): When image file doesn't exist
1704 display text version of the image if it's provided in the Info file.
1705 Otherwise, display the location of missing image from SRC attribute.
1706 Add help-echo text property from ALT attribute. (Bug#15279)
1707
1708 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1709
1710 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
1711 (edit-abbrevs-mode): Use define-derived-mode.
1712
1713 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
1714 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
1715 that it's defined.
1716 (epa-key-list-mode, epa-key-mode, epa-info-mode):
1717 Use define-derived-mode.
1718
1719 * epg.el (epg-start-encrypt): Minor CSE simplification.
1720
1721 2013-09-06 William Xu <william.xwl@gmail.com>
1722
1723 * arc-mode.el: Add support for 7za (bug#15264).
1724 (archive-7z-program): New var.
1725 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
1726 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
1727 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
1728
1729 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
1730
1731 Remove URL syntax.
1732
1733 * net/tramp.el (tramp-syntax, tramp-prefix-format)
1734 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
1735 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
1736 (tramp-postfix-host-format, tramp-file-name-regexp)
1737 (tramp-completion-file-name-regexp)
1738 (tramp-completion-dissect-file-name)
1739 (tramp-handle-substitute-in-file-name): Remove 'url case.
1740 (tramp-file-name-regexp-url)
1741 (tramp-completion-file-name-regexp-url): Remove constants.
1742
1743 2013-09-06 Glenn Morris <rgm@gnu.org>
1744
1745 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
1746
1747 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
1748
1749 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
1750 keywords" below "here-doc beginnings" (Bug#15270).
1751
1752 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
1753
1754 * subr.el (pop): Use `car-safe'.
1755 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
1756 to detect unused `pop' return value.
1757
1758 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
1759 var `block-regexp'.
1760 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
1761 (python-fill-string): Remove unused var `marker'.
1762 (python-skeleton-add-menu-items): Remove unused var `items'.
1763
1764 * international/mule-cmds.el: Require CL.
1765 (find-coding-systems-for-charsets): Avoid add-to-list.
1766 (sanitize-coding-system-list): New function, extracted from
1767 select-safe-coding-system-interactively.
1768 (select-safe-coding-system-interactively): Use it.
1769 (read-input-method-name): Accept symbols for `default'.
1770
1771 * emacs-lisp/advice.el (defadvice): Add indent rule.
1772
1773 2013-09-05 Daniel Hackney <dan@haxney.org>
1774
1775 * dired-x.el:
1776 * net/ange-ftp.el:
1777 * net/browse-url.el:
1778 * net/dbus.el:
1779 * net/eudc.el:
1780 * net/eudcb-ldap.el:
1781 * net/eww.el:
1782 * net/imap.el:
1783 * printing.el:
1784 * vc/ediff-diff.el:
1785 * vc/ediff-init.el:
1786 * vc/ediff-merg.el:
1787 * vc/ediff-mult.el:
1788 * vc/ediff-util.el:
1789 * vc/ediff-wind.el:
1790 * vc/ediff.el:
1791 * vc/emerge.el:
1792 * vc/pcvs.el:
1793 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
1794 byte compiler. Remove some unused let-bound variables.
1795
1796 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
1797
1798 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
1799 a "ref-cell", since it gets better optimized (bug#14883).
1800
1801 2013-09-05 Glenn Morris <rgm@gnu.org>
1802
1803 * progmodes/cc-awk.el (c-forward-sws): Declare.
1804
1805 2013-09-04 Glenn Morris <rgm@gnu.org>
1806
1807 * generic-x.el [rul-generic-mode]: Require cc-mode.
1808 (c++-mode-syntax-table): Declare.
1809 (rul-generic-mode-syntax-table): Init in the defvar.
1810
1811 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
1812
1813 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
1814 (vc-do-command, vc-set-async-update):
1815 * vc/vc-mtn.el (vc-mtn-dir-status):
1816 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
1817 (vc-hg-pull, vc-hg-merge-branch):
1818 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
1819 (vc-git-merge-branch):
1820 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
1821 (vc-cvs-dir-status-files):
1822 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
1823 (vc-bzr-dir-status-files):
1824 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
1825 * vc/vc-annotate.el: Use lexical-binding.
1826 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
1827 (vc-sentinel-movepoint): Declare.
1828 (vc-annotate): Don't use `goto-line'.
1829 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
1830 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
1831 (vc-sentinel-movepoint): Declare.
1832 * vc/vc-svn.el: Use lexical-binding.
1833 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
1834 * vc/vc-sccs.el:
1835 * vc/vc-rcs.el: Use lexical-binding.
1836
1837 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
1838 `deleted'. Don't drop errors silently.
1839
1840 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
1841
1842 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
1843
1844 * vc/vc.el (vc-ignore): Rewrite.
1845 (vc-default-ignore): New function.
1846 (vc-default-ignore-completion-table): Use find-ignore-file.
1847
1848 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
1849 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
1850 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
1851 Remove. Most code moved to vc.el.
1852
1853 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
1854
1855 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
1856 * net/tramp-smb.el (tramp-smb-get-file-entries):
1857 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
1858 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
1859
1860 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
1861 Update call to it.
1862 (eww-change-select): Remove unused var `properties'.
1863 (eww-make-unique-file-name): Remove unused var `base'.
1864
1865 * finder.el (finder-compile-keywords): Don't mess with windows.
1866
1867 * calculator.el (calculator-funcall): Fix typo in last change.
1868
1869 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
1870
1871 * emacs-lisp/package.el (package-activate-1): Don't let a missing
1872 <pkg>-autoloads.el file stop us.
1873
1874 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
1875 warnings, and factor out common code.
1876
1877 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
1878
1879 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
1880 two-character operators and whether the character preceding them
1881 changes their meaning (Bug#15208).
1882
1883 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
1884
1885 Format code sent to Python shell for robustness.
1886 * progmodes/python.el (python-shell-buffer-substring):
1887 New function.
1888 (python-shell-send-region, python-shell-send-buffer): Use it.
1889
1890 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
1891
1892 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
1893 * net/tramp.el (tramp-user-error): ... here.
1894 (tramp-find-method, tramp-check-proper-host)
1895 (tramp-dissect-file-name, tramp-debug-message)
1896 (tramp-handle-shell-command):
1897 * net/tramp-adb.el (tramp-adb-handle-shell-command):
1898 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
1899
1900 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
1901
1902 2013-09-02 Martin Rudalics <rudalics@gmx.at>
1903
1904 * avoid.el (mouse-avoidance-point-position)
1905 (mouse-avoidance-too-close-p): Handle case where posn-at-point
1906 returns nil.
1907
1908 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
1909
1910 * progmodes/python.el (python-shell-completion-get-completions):
1911 Drop use of deleted `comint-last-prompt-overlay'.
1912 (python-nav-if-name-main): New command.
1913
1914 2013-09-01 Glenn Morris <rgm@gnu.org>
1915
1916 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
1917 Avoid leading space in $wins. Otherwise the sed command used by
1918 eg compile-main ends up containing "/*.el". (Bug#15170)
1919
1920 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
1921
1922 2013-08-30 Glenn Morris <rgm@gnu.org>
1923
1924 * emacs-lisp/bytecomp.el (byte-recompile-directory):
1925 Fix is-this-a-directory logic. (Bug#15220)
1926
1927 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
1928
1929 * textmodes/css-mode.el: Use SMIE.
1930 (css-smie-grammar): New var.
1931 (css-smie--forward-token, css-smie--backward-token)
1932 (css-smie-rules): New functions.
1933 (css-mode): Use them.
1934 (css-navigation-syntax-table): Remove var.
1935 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
1936 (css-indent-calculate, css-indent-line): Remove functions.
1937
1938 Misc changes to reduce use of `(lambda...); and other cleanups.
1939 * cus-edit.el: Use lexical-binding.
1940 (customize-push-and-save, customize-apropos)
1941 (custom-buffer-create-internal): Use closures.
1942 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
1943 * progmodes/ada-xref.el: Use setq.
1944 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
1945 * dframe.el: Use lexical-binding.
1946 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
1947 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
1948 * descr-text.el: Use lexical-binding.
1949 (describe-text-widget, describe-text-sexp, describe-property-list):
1950 Use closures.
1951 * comint.el (comint-history-isearch-push-state): Use a closure.
1952 * calculator.el: Use lexical-binding.
1953 (calculator-number-to-string): Make it work with lexical-binding.
1954 (calculator-funcall): Same and use cl-letf.
1955
1956 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
1957 (lisp--company-doc-string, lisp--company-location): New functions.
1958 (lisp-completion-at-point): Use them to improve Company support.
1959
1960 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
1961 params of lambda expressions.
1962 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
1963 (ruby-smie--opening-pipe-p): New function.
1964 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
1965 symbols and matched |...| for formal params.
1966 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
1967 from being treated as hanging. Handle "rescue".
1968
1969 2013-08-29 Glenn Morris <rgm@gnu.org>
1970
1971 * progmodes/cc-engine.el (c-pull-open-brace):
1972 Move definition before use.
1973
1974 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
1975
1976 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
1977 are immutable. Don't use `unsafe' any more.
1978 (cl--defsubst-expand): Don't substitute at the same time as keeping
1979 a residual unused let-binding. Don't use `unsafe' any more.
1980
1981 2013-08-29 Glenn Morris <rgm@gnu.org>
1982
1983 * calendar/cal-china.el (calendar-chinese-year-cache):
1984 Recenter on 2015.
1985
1986 * nxml/nxml-util.el (nxml-debug-clear-inside):
1987 Use cl-loop rather than loop.
1988
1989 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
1990
1991 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
1992
1993 2013-08-28 Glenn Morris <rgm@gnu.org>
1994
1995 * progmodes/antlr-mode.el: No need to require cc-mode twice.
1996
1997 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
1998
1999 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
2000
2001 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2002
2003 * simple.el (repeat-complex-command--called-interactively-skip):
2004 New function.
2005 (repeat-complex-command): Use it (bug#14136).
2006
2007 * progmodes/cc-mode.el: Minor cleanup of var declarations.
2008 (c-define-abbrev-table): Add `doc' argument.
2009 (c-mode-abbrev-table, c++-mode-abbrev-table)
2010 (objc-mode-abbrev-table, java-mode-abbrev-table)
2011 (idl-mode-abbrev-table, pike-mode-abbrev-table)
2012 (awk-mode-abbrev-table): Use it.
2013 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
2014 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
2015 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
2016 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
2017 Move initialization into the declaration; and remove any
2018 autoload cookie.
2019
2020 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
2021 and dynamic let binding.
2022
2023 * vc/smerge-mode.el: Remove redundant :group args.
2024
2025 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
2026 to load-path.
2027
2028 2013-08-28 Juri Linkov <juri@jurta.org>
2029
2030 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
2031 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
2032 (isearch-other-meta-char): Handle an undefined shifted printing
2033 character by downshifting it. (Bug#15200)
2034
2035 2013-08-28 Juri Linkov <juri@jurta.org>
2036
2037 * isearch.el (isearch-search): Change regexp error message for
2038 non-regexp searches. (Bug#15166)
2039
2040 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
2041
2042 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
2043 for portability to hosts where /bin/sh has problems.
2044
2045 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2046
2047 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
2048
2049 2013-08-27 Juri Linkov <juri@jurta.org>
2050
2051 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
2052 in the keyboard macro. (Bug#15126)
2053
2054 2013-08-27 Juri Linkov <juri@jurta.org>
2055
2056 * isearch.el (isearch-quote-char): Comment out converting unibyte
2057 to multibyte, thus syncing with its `quoted-insert' counterpart.
2058 (Bug#15166)
2059
2060 2013-08-27 Martin Rudalics <rudalics@gmx.at>
2061
2062 * window.el (display-buffer-use-some-window): Add missing
2063 argument in call of get-largest-window (Bug#15185).
2064 Reported by Stephen Leake.
2065
2066 2013-08-27 Glenn Morris <rgm@gnu.org>
2067
2068 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
2069
2070 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
2071
2072 * progmodes/python.el (python-font-lock-keywords): Don't return nil
2073 from a matcher-function unless there's no more matches (bug#15161).
2074
2075 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2076
2077 * minibuffer.el: Revert change from 2013-08-20.
2078
2079 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
2080 with text property `tramp-default', if appropriate.
2081 (tramp-check-proper-host): New defun.
2082 (tramp-dissect-file-name): Do not check hostname. Revert change
2083 of 2013-03-18.
2084 (tramp-backtrace): Make VEC-OR-PROC optional.
2085
2086 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2087 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
2088 * net/tramp-sh.el (tramp-maybe-open-connection):
2089 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2090 Apply `tramp-check-proper-host'.
2091
2092 2013-08-26 Tassilo Horn <tsdh@gnu.org>
2093
2094 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
2095 lambda expression in order to have `describe-variable' display it.
2096
2097 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2098
2099 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
2100 BUF can be optional. (Bug#15186)
2101
2102 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
2103
2104 * progmodes/flymake.el (flymake-get-real-file-name-function):
2105 Fix broken customization. (Bug#15184)
2106
2107 2013-08-25 Alan Mackenzie <acm@muc.de>
2108
2109 Improve indentation of bracelists defined by macros (without "=").
2110
2111 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
2112 expansion begins with "{", regard it as bracelist when it doesn't
2113 contain a ";".
2114
2115 Parse C++ inher-intro when there's a template split over 2 lines.
2116
2117 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
2118 rigorously the search for "class" etc. followed by ":".
2119
2120 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
2121 random languages a regexp which never matches rather than nil.
2122
2123 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
2124
2125 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
2126 (c-awk-regexp-one-line-possibly-open-char-list-re)
2127 (c-awk-one-line-possibly-open-regexp-re)
2128 (c-awk-one-line-non-syn-ws*-re): Remove.
2129 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
2130 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
2131 (c-awk-space*-unclosed-regexp-/-re): New constants.
2132 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
2133 aren't regexp delimiters.
2134
2135 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
2136 handling for a rare situation in AWK Mode involving unterminated
2137 strings/regexps.
2138
2139 2013-08-23 Glenn Morris <rgm@gnu.org>
2140
2141 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
2142
2143 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
2144
2145 * files.el (create-file-buffer): If the result would begin with
2146 spaces, prepend a "|" instead of removing them. (Bug#15162)
2147
2148 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2149
2150 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
2151 text-properties (bug#15155).
2152
2153 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
2154 exist any more.
2155 (calc-keypad-redraw): Remove unused var `pad'.
2156 (calc-keypad-press): Remove unused var `menu'.
2157
2158 2013-08-23 Martin Rudalics <rudalics@gmx.at>
2159
2160 * window.el (display-buffer-pop-up-frame):
2161 Call pop-up-frame-function with BUFFER current so `make-frame' will
2162 use it as the new frame's buffer (Bug#15133).
2163
2164 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
2165
2166 * calendar/timeclock.el: Minor cleanups.
2167 (timeclock-ask-before-exiting, timeclock-use-display-time):
2168 Use `symbol'.
2169 (timeclock-modeline-display): Define as alias before the
2170 actual definition.
2171 (timeclock-mode-line-display): Use define-minor-mode.
2172 (timeclock-day-list-template): Make it a function, add an argument.
2173 (timeclock-day-list-required, timeclock-day-list-length)
2174 (timeclock-day-list-debt, timeclock-day-list-span)
2175 (timeclock-day-list-break): Adjust calls accordingly.
2176
2177 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
2178
2179 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
2180 Use read--expression so that completion works again.
2181
2182 2013-08-21 Sam Steingold <sds@gnu.org>
2183
2184 Add rudimentary inferior shell interaction
2185 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
2186 (sh-set-shell): Reset it.
2187 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
2188 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
2189
2190 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
2191
2192 * align.el: Use lexical-binding.
2193 (align-region): Simplify accordingly.
2194
2195 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
2196
2197 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
2198
2199 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
2200 `non-essential' up.
2201
2202 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
2203
2204 * net/tramp.el:
2205 * net/tramp-adb.el:
2206 * net/tramp-cmds.el:
2207 * net/tramp-ftp.el:
2208 * net/tramp-gvfs.el:
2209 * net/tramp-gw.el:
2210 * net/tramp-sh.el: Don't wrap external variable declarations by
2211 `eval-when-compile'.
2212
2213 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
2214
2215 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
2216 now that Emacs supports ImageMagick animations.
2217
2218 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
2219
2220 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
2221 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
2222
2223 2013-08-16 Martin Rudalics <rudalics@gmx.at>
2224
2225 * window.el (mouse-autoselect-window-select): Do autoselect when
2226 mouse pointer is on margin.
2227
2228 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
2229
2230 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
2231
2232 2013-08-16 Glenn Morris <rgm@gnu.org>
2233
2234 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
2235 Handle "Remote Directory" response of some clients. (Bug#15058)
2236
2237 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
2238 Tweak warning. (Bug#14926)
2239
2240 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
2241 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
2242
2243 * image-mode.el (image-mode-map): Add menu items to reverse,
2244 increase, decrease, reset animation speed.
2245 (image--set-speed, image-increase-speed, image-decrease-speed)
2246 (image-reverse-speed, image-reset-speed): New functions.
2247 (image-mode-map): Add bindings for speed commands.
2248
2249 * image.el (image-animate-get-speed, image-animate-set-speed):
2250 New functions.
2251 (image-animate-timeout): Respect image :speed property.
2252
2253 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
2254
2255 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
2256 previous line (bug#15101).
2257 (debugger-eval-expression, debugger-record-expression):
2258 Use read--expression (bug#15102).
2259
2260 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
2261
2262 Remove byte compiler warnings, visible when compiling with
2263 `byte-compile-force-lexical-warnings' set to t.
2264
2265 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
2266 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
2267 (tramp-handle-unhandled-file-name-directory)
2268 (tramp-handle-file-notify-add-watch, tramp-action-login)
2269 (tramp-action-succeed, tramp-action-permission-denied)
2270 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
2271 arguments with "_".
2272
2273 * net/tramp-adb.el (tramp-adb-parse-device-names)
2274 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
2275 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
2276 (tramp-adb-handle-file-truename): Remove unused arguments.
2277
2278 * net/tramp-cache.el (tramp-flush-directory-property)
2279 (tramp-flush-connection-property, tramp-list-connections)
2280 (tramp-parse-connection-properties): Prefix unused arguments with "_".
2281
2282 * net/tramp-compat.el (tramp-compat-make-temp-file):
2283 Rename FILENAME to F.
2284
2285 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
2286 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
2287 (tramp-zeroconf-parse-workstation-device-names)
2288 (tramp-zeroconf-parse-webdav-device-names)
2289 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
2290
2291 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
2292 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
2293
2294 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
2295 arguments.
2296 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
2297 (tramp-sh-handle-insert-file-contents-literally)
2298 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
2299 with "_".
2300 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
2301 Remove unused variables.
2302
2303 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
2304 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
2305 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
2306
2307 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
2308 Make them a defconst.
2309 (tramp-uuencode-region): Remove unused variable.
2310
2311 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
2312
2313 * frameset.el (frameset--prop-setter): New function.
2314 (frameset-prop): Add gv-setter declaration.
2315 (frameset-filter-minibuffer): Deal with the case that the minibuffer
2316 parameter was already set in FILTERED. Doc fix.
2317 (frameset--record-minibuffer-relationships): Allow saving a
2318 minibufferless frame without its corresponding minibuffer frame.
2319 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
2320 frame, if the frame id matches.
2321 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
2322 frames before orphaned ones.
2323 (frameset-restore): Warn about orphaned windows, instead of error out.
2324
2325 2013-08-14 Martin Rudalics <rudalics@gmx.at>
2326
2327 * window.el (window-make-atom): Don't overwrite parameter
2328 already present.
2329 (display-buffer-in-atom-window): Handle special case where we
2330 split an already atomic window.
2331 (window--major-non-side-window, display-buffer-in-side-window)
2332 (window--side-check): Ignore minibuffer window when walking
2333 window tree.
2334 (window-deletable-p): Return 'frame only if no other frame uses
2335 our minibuffer window.
2336 (record-window-buffer): Run buffer-list-update-hook.
2337 (split-window): Make sure window--check-frame won't destroy an
2338 existing atomic window in case the new window gets nested
2339 inside.
2340 (display-buffer-at-bottom): Ignore minibuffer window when
2341 walking window tree. Don't split a side window.
2342 (pop-to-buffer): Don't set-buffer here, the select-window call
2343 should do that.
2344 (mouse-autoselect-window-select): Autoselect only if we are in the
2345 text portion of the window.
2346
2347 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
2348
2349 * net/shr.el (shr-parse-image-data): New function to grab both the
2350 data itself and the Content-Type.
2351 (shr-put-image): Use it.
2352
2353 * net/eww.el (eww-display-image): Ditto.
2354
2355 * image.el (image-content-type-suffixes): New variable.
2356
2357 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
2358
2359 * progmodes/python.el (python-imenu--build-tree)
2360 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
2361
2362 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
2363
2364 * simple.el (backward-word): Mention the optional argument.
2365
2366 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
2367
2368 * frameset.el (frameset--make): Rename constructor from make-frameset.
2369 (frameset-p, frameset-valid-p): Don't autoload.
2370 (frameset-valid-p): Use normal accessors.
2371
2372 2013-08-13 Glenn Morris <rgm@gnu.org>
2373
2374 * progmodes/compile.el (compile-command): Tweak example in doc.
2375 * obsolete/scribe.el (scribe-mode):
2376 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
2377
2378 * mail/feedmail.el (feedmail-confirm-outgoing)
2379 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
2380
2381 * cus-start.el (truncate-partial-width-windows): Fix type.
2382
2383 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
2384
2385 * net/shr.el (shr-table-horizontal-line): Fix custom type.
2386
2387 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
2388
2389 * emacs-lisp/timer.el (timer--time-setter): New function.
2390 (timer--time): Use it as gv-setter.
2391
2392 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
2393 setter is not a symbol.
2394
2395 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
2396
2397 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
2398 if sending fails. This makes debugging easier.
2399
2400 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
2401
2402 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
2403 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
2404 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
2405
2406 2013-08-12 Eli Zaretskii <eliz@gnu.org>
2407
2408 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
2409
2410 2013-08-12 Glenn Morris <rgm@gnu.org>
2411
2412 * format.el (format-annotate-function):
2413 Handle read-only text properties in the source. (Bug#14887)
2414
2415 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2416
2417 * net/eww.el (eww-display-html): Ignore coding system errors.
2418 One web site uses "utf-8lias" as the coding system.
2419
2420 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
2421
2422 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
2423
2424 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
2425
2426 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
2427 (tutorial--detailed-help): Remove unused local variables.
2428 (tutorial--save-tutorial-to): Use ignore-errors.
2429 (help-with-tutorial): Use looking-at-p.
2430
2431 * view.el (view-buffer-other-window, view-buffer-other-frame):
2432 Mark unused arguments.
2433
2434 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
2435 (woman-select-symbol-fonts, woman, woman-find-file)
2436 (woman-insert-file-contents, woman-non-underline-faces):
2437 Use string-match-p.
2438 (woman1-unquote): Move declaration.
2439
2440 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
2441 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
2442 argument. Remove unused local variable.
2443 (xml-parse-elem-type): Use string-match-p.
2444 (xml-substitute-numeric-entities): Use ignore-errors.
2445
2446 * calculator.el (calculator): Mark unused argument.
2447 (calculator-paste, calculator-quit, calculator-integer-p):
2448 Use ignore-errors.
2449 (calculator-string-to-number, calculator-decimal, calculator-exp)
2450 (calculator-op-or-exp): Use string-match-p.
2451
2452 * dired.el (dired-buffer-more-recently-used-p): Declare.
2453 (dired-insert-set-properties, dired-insert-old-subdirs):
2454 Use ignore-errors.
2455
2456 * dired-aux.el (dired-compress): Use ignore-errors.
2457 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
2458 (dired-do-async-shell-command, dired-do-shell-command)
2459 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
2460 (dired-insert-subdir-validate): Use string-match-p.
2461 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
2462 (dired-add-entry): Use string-match-p, looking-at-p.
2463 (dired-insert-subdir-newpos): Remove unused local variable.
2464
2465 * filenotify.el (file-notify-callback): Remove unused local variable.
2466
2467 * filesets.el (filesets-error): Mark unused argument.
2468 (filesets-which-command-p, filesets-filter-dir-names)
2469 (filesets-directory-files, filesets-get-external-viewer)
2470 (filesets-ingroup-get-data): Use string-match-p.
2471
2472 * find-file.el (ff-other-file-name, ff-other-file-name)
2473 (ff-find-the-other-file, ff-cc-hh-converter):
2474 Remove unused local variables.
2475 (ff-get-file-name): Use string-match-p.
2476 (ff-all-dirs-under): Use ignore-errors.
2477
2478 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
2479 (follow-select-if-visible): Remove unused local variable.
2480
2481 * forms.el (read-file-filter): Move declaration.
2482 (forms--make-format, forms--make-parser, forms-insert-record):
2483 Quote function with #'.
2484 (forms--update): Use string-match-p. Quote function with #'.
2485
2486 * help-mode.el (help-dir-local-var-def): Mark unused argument.
2487 (help-make-xrefs): Use looking-at-p.
2488 (help-xref-on-pp): Use looking-at-p, ignore-errors.
2489
2490 * ibuffer.el (ibuffer-ext-visible-p): Declare.
2491 (ibuffer-confirm-operation-on): Use string-match-p.
2492
2493 * msb.el (msb-item-handler, msb-dired-item-handler):
2494 Mark unused arguments.
2495
2496 * ses.el (ses-decode-cell-symbol)
2497 (ses-kill-override): Remove unused local variable.
2498 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
2499 (ses-load): Use ignore-errors, looking-at-p.
2500 (ses-jump-safe): Use ignore-errors.
2501 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
2502
2503 * tabify.el (untabify, tabify): Mark unused arguments.
2504
2505 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
2506 Mark unused argument.
2507 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
2508 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
2509
2510 * emacs-lisp/timer.el (timer--time): Define setter with
2511 gv-define-setter to avoid deprecation warning.
2512
2513 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
2514 (*record-cmpl-statistics-p*): Remove (was commented out).
2515 (cmpl-statistics-block): Remove (body was commented out).
2516 All callers changed.
2517 (add-completions-from-buffer, load-completions-from-file):
2518 Remove unused variables.
2519
2520 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
2521
2522 * filecache.el (file-cache-delete-file-list):
2523 Print message only when told so.
2524 (file-cache-files-matching): Use #' in mapconcat argument.
2525
2526 * ffap.el (ffap-url-at-point): Fix reference to variable
2527 thing-at-point-default-mail-uri-scheme.
2528
2529 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
2530
2531 * subr.el (define-error): New function.
2532 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
2533 error-file-not-found and define with define-error.
2534 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
2535 and define with define-error.
2536 * userlock.el (file-locked, file-supersession):
2537 * simple.el (mark-inactive):
2538 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
2539 * progmodes/ada-mode.el (ada-mode-errors):
2540 * play/life.el (life-extinct):
2541 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
2542 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
2543 * nxml/rng-util.el (rng-error):
2544 * nxml/rng-uri.el (rng-uri-error):
2545 * nxml/rng-match.el (rng-compile-error):
2546 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
2547 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
2548 * nxml/nxml-rap.el (nxml-scan-error):
2549 * nxml/nxml-outln.el (nxml-outline-error):
2550 * net/soap-client.el (soap-error):
2551 * net/gnutls.el (gnutls-error):
2552 * net/ange-ftp.el (ftp-error):
2553 * mpc.el (mpc-proc-error):
2554 * json.el (json-error, json-readtable-error, json-unknown-keyword)
2555 (json-number-format, json-string-escape, json-string-format)
2556 (json-key-format, json-object-format):
2557 * jka-compr.el (compression-error):
2558 * international/quail.el (quail-error):
2559 * international/kkc.el (kkc-error):
2560 * emacs-lisp/ert.el (ert-test-failed):
2561 * calc/calc.el (calc-error, inexact-result, math-overflow)
2562 (math-underflow):
2563 * bookmark.el (bookmark-error-no-filename):
2564 * epg.el (epg-error): Define with define-error.
2565
2566 * time.el (display-time-event-handler)
2567 (display-time-next-load-average): Don't call sit-for since it seems
2568 unnecessary (bug#15045).
2569
2570 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
2571 Use #' instead of ' to quote functions.
2572 (checkdoc-output-mode): Use setq-local.
2573 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
2574 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
2575 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
2576 (checkdoc-ispell, checkdoc-ispell-current-buffer)
2577 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
2578 (checkdoc-ispell-message-text, checkdoc-ispell-start)
2579 (checkdoc-ispell-continue, checkdoc-ispell-comments)
2580 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
2581
2582 * ido.el (ido-completion-help): Fix up compiler warning.
2583
2584 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
2585
2586 * frameset.el (frameset-p): Add autoload cookie.
2587 (frameset--jump-to-register): New function, based on code moved from
2588 register.el.
2589 (frameset-to-register): Move from register.el. Adapt to `registerv'.
2590
2591 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
2592 (frameset-restore, frameset-save, frameset-session-filter-alist):
2593 Remove declarations.
2594 (register-alist): Doc fix.
2595 (frameset-to-register): Move to frameset.el.
2596 (jump-to-register, describe-register-1): Remove frameset-specific code.
2597
2598 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2599
2600 * allout-widgets.el (allout-widgets-pre-command-business)
2601 (allout-widgets-post-command-business)
2602 (allout-widgets-after-change-handler)
2603 (allout-decorate-item-and-context, allout-set-boundary-marker)
2604 (allout-body-modification-handler)
2605 (allout-graphics-modification-handler): Mark ignored arguments.
2606 (allout-widgets-post-command-business)
2607 (allout-widgets-exposure-change-processor)
2608 (allout-widgets-exposure-undo-processor)
2609 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
2610 (allout-parse-item-at-point, allout-decorate-item-guides)
2611 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
2612 * allout.el (epa-passphrase-callback-function): Declare.
2613 (allout-overlay-insert-in-front-handler)
2614 (allout-overlay-interior-modification-handler)
2615 (allout-isearch-end-handler, allout-chart-siblings)
2616 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
2617 (allout-yank-processing, allout-process-exposed)
2618 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
2619 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
2620 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
2621 (lisp-indent-defform): Mark ignored arguments.
2622 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
2623 (calculate-lisp-indent): Remove unused variables.
2624 * international/characters.el (indian-2-column, arabic-2-column)
2625 (tibetan): Mark ignored arguments.
2626 (use-cjk-char-width-table): Mark ignored arguments.
2627 Remove unused variables.
2628 * international/fontset.el (build-default-fontset-data)
2629 (x-compose-font-name, create-fontset-from-fontset-spec):
2630 Mark ignored arguments.
2631 (fontset-plain-name): Remove unused variables.
2632 * international/mule.el (charset-id, charset-bytes, generic-char-p)
2633 (keyboard-coding-system): Mark ignored arguments.
2634 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
2635 * help.el (resize-temp-buffer-window):
2636 * window.el (display-buffer-in-major-side-window)
2637 (display-buffer-in-side-window, display-buffer-in-previous-window):
2638 Remove unused variables.
2639 * isearch.el (isearch-forward-symbol):
2640 * version.el (emacs-bzr-version-bzr):
2641 * international/mule-cmds.el (current-language-environment):
2642 * term/common-win.el (x-handle-iconic, x-handle-geometry)
2643 (x-handle-display):
2644 * term/pc-win.el (x-list-fonts, x-display-planes)
2645 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
2646 (x-server-version, x-display-screens, x-display-mm-height)
2647 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
2648 (x-selection-owner-p, x-own-selection-internal)
2649 (x-disown-selection-internal, x-get-selection-internal)
2650 (msdos-initialize-window-system):
2651 * term/tty-colors.el (tty-color-alist, tty-color-clear):
2652 * term/x-win.el (x-handle-no-bitmap-icon):
2653 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
2654 (vc-default-find-file-hook, vc-default-extra-menu):
2655 Mark ignored arguments.
2656
2657 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2658
2659 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
2660 break-condition in the context of the debugged code (bug#12685).
2661
2662 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
2663
2664 * comint.el:
2665 Do not use an overlay to highlight the last prompt. (Bug#14744)
2666 (comint-mode): Make comint-last-prompt buffer local.
2667 (comint-last-prompt): New variable.
2668 (comint-last-prompt-overlay): Remove. Superseded by
2669 comint-last-prompt.
2670 (comint-snapshot-last-prompt, comint-output-filter):
2671 Use comint-last-prompt.
2672
2673 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2674
2675 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
2676 (frameset-save): Check validity of the resulting frameset.
2677
2678 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
2679
2680 * ido.el (ido-record-command): Add doc string.
2681
2682 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2683
2684 * frameset.el (frameset): Do not disable creation of the default
2685 frameset-p predicate. Doc fix.
2686 (frameset-valid-p): New function, copied from the old predicate-p.
2687 Add additional checks.
2688 (frameset-restore): Check with frameset-valid-p.
2689 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
2690 (frameset-name, frameset-description, frameset-properties)
2691 (frameset-states): Add docstring.
2692 (frameset-session-filter-alist, frameset-persistent-filter-alist)
2693 (frameset-filter-alist): Doc fixes.
2694
2695 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2696
2697 * frameset.el (frameset-p, frameset-prop): Doc fixes.
2698
2699 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2700
2701 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
2702 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
2703 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
2704 (byte-compile-normal-call): Remove obsolescence check.
2705
2706 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2707
2708 * frameset.el (frameset-restore): Doc fix.
2709
2710 * register.el (frameset-frame-id, frameset-frame-with-id)
2711 (frameset-p, frameset-restore, frameset-save): Declare.
2712 (register-alist): Document framesets.
2713 (frameset-session-filter-alist): Declare.
2714 (frameset-to-register): New function.
2715 (jump-to-register): Implement jumping to framesets. Doc fix.
2716 (describe-register-1): Describe framesets.
2717
2718 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
2719
2720 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
2721
2722 * desktop.el (desktop-save-frameset): Use new frameset-save args.
2723 Use lexical-binding.
2724
2725 * frameset.el (frameset): Use type vector, not list (incompatible
2726 change). Do not declare a new constructor, use the default one.
2727 Upgrade suggested properties `app', `name' and `desc' to slots `app',
2728 `name' and `description', respectively, and add read-only slot
2729 `timestamp'. Doc fixes.
2730 (frameset-copy, frameset-persistent-filter-alist)
2731 (frameset-filter-alist, frameset-switch-to-gui-p)
2732 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
2733 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
2734 (frameset-filter-iconified, frameset-keep-original-display-p):
2735 Doc fixes.
2736 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
2737 Rename from frameset-filter-(save|restore)-param. All callers changed.
2738 Doc fix.
2739 (frameset-p): Adapt to change to vector and be more thorough.
2740 Change arg name to OBJECT. Doc fix.
2741 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
2742 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
2743 All callers changed.
2744 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
2745 All callers changed.
2746 (frameset--record-minibuffer-relationships): Rename from
2747 frameset--process-minibuffer-frames. All callers changed.
2748 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
2749 Use new default constructor (again). Doc fix.
2750 (frameset--find-frame-if): Rename from `frameset--find-frame.
2751 All callers changed.
2752 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
2753 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
2754 Doc fix.
2755 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
2756 PARAMETERS and WINDOW-STATE, respectively.
2757 (frameset-restore): Add new keyword argument PREDICATE.
2758 Reset frameset--target-display to nil. Doc fix.
2759
2760 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
2761
2762 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
2763 (bat-mode): Use it.
2764 (bat-mode-syntax-table): Mark \n as end-of-comment.
2765 (bat-font-lock-keywords): Remove comment rule.
2766
2767 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
2768 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
2769
2770 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
2771 (byte-compile-callargs-warn): Use `push'.
2772 (byte-compile-arglist-warn): Ignore higher-order "calls".
2773 (byte-compile-file-form-autoload): Use `pcase'.
2774 (byte-compile-function-form): If quoting a symbol, check that it exists.
2775
2776 2013-08-07 Eli Zaretskii <eliz@gnu.org>
2777
2778 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
2779 and add a few popular commands found in batch files.
2780 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
2781 (dos-mode): Doc fixes.
2782
2783 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
2784
2785 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
2786 (dos-mode): Use setq-local. Add space after "rem".
2787 (dos-mode-syntax-table): Don't use "w" for symbol chars.
2788 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
2789
2790 2013-08-07 Arni Magnusson <arnima@hafro.is>
2791
2792 * progmodes/dos.el: New file.
2793 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
2794 dos-mode.
2795
2796 2013-08-06 Glenn Morris <rgm@gnu.org>
2797
2798 * calendar/calendar.el: Add new faces, and day-header-array.
2799 (calendar-weekday-header, calendar-weekend-header)
2800 (calendar-month-header): New faces.
2801 (calendar-day-header-construct): New function.
2802 (calendar-day-header-width): Also :set calendar-day-header-array.
2803 (calendar-american-month-header, calendar-european-month-header)
2804 (calendar-iso-month-header): Use calendar- faces.
2805 (calendar-generate-month):
2806 Use calendar-day-header-array for day headers; apply faces to them.
2807 (calendar-mode): Check calendar-font-lock-keywords non-nil.
2808 (calendar-abbrev-construct): Add optional maxlen argument.
2809 (calendar-day-name-array): Doc fix.
2810 (calendar-day-name-array, calendar-abbrev-length)
2811 (calendar-day-abbrev-array):
2812 Also :set calendar-day-header-array, and maybe redraw.
2813 (calendar-day-header-array): New option. (Bug#15007)
2814 (calendar-font-lock-keywords): Set to nil and make obsolete.
2815 (calendar-day-name): Add option to use header array.
2816
2817 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
2818
2819 * net/shr.el (shr-render-td): Remove debugging.
2820 (shr-render-td): Make width computation consistent by defaulting
2821 all zero-width columns to 10 characters. This may not be optimal,
2822 but it's at least consistent.
2823 (shr-make-table-1): Redo last change to fix the real problem in
2824 colspan handling.
2825
2826 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2827
2828 * files.el (cache-long-line-scans):
2829 Make obsolete alias to `cache-long-scans'.
2830
2831 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
2832
2833 * frameset.el (frameset, frameset-filter-alist)
2834 (frameset-filter-params, frameset-save, frameset--reuse-frame)
2835 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
2836 (frameset-compute-pos): Rename from frameset--compute-pos,
2837 and add docstring.
2838 (frameset-move-onscreen): Use frameset-compute-pos.
2839 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
2840
2841 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
2842 Fix typos in docstrings.
2843
2844 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2845
2846 * frame.el (get-other-frame): Tiny cleanup.
2847
2848 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
2849
2850 * vc/vc.el (vc-default-ignore-completion-table):
2851 Silence byte-compiler warning.
2852
2853 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
2854 slot , which can indeed be nil.
2855 (frameset-live-filter-alist, frameset-persistent-filter-alist):
2856 Move entry for `left' from persistent to live filter alist.
2857 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
2858 Doc fixes.
2859 (frameset-filter-params): When restoring a frame, copy items added to
2860 `filtered', to avoid unwittingly modifying the original parameters.
2861 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
2862 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
2863
2864 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
2865 to use looking-at-p instead of looking-at. (Bug#15028)
2866
2867 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
2868
2869 Revert introduction of isearch-filter-predicates (bug#14714).
2870 Rely on add-function instead.
2871 * isearch.el (isearch-filter-predicates): Rename it back to
2872 isearch-filter-predicate.
2873 (isearch-message-prefix): Use advice-function-mapc and advice
2874 properties to get the isearch-message-prefix.
2875 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
2876 instead of run-hook-with-args-until-failure.
2877 (isearch-filter-visible): Not obsolete any more.
2878 * loadup.el: Preload nadvice.
2879 * replace.el (perform-replace): Revert to funcall
2880 instead of run-hook-with-args-until-failure.
2881 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
2882 * dired-aux.el (dired-isearch-filenames-mode): Rename from
2883 dired-isearch-filenames-toggle; make it into a proper minor mode.
2884 Use add/remove-function.
2885 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
2886 Call the minor-mode rather than add/remove-hook.
2887 (dired-isearch-filter-filenames):
2888 Remove isearch-message-prefix property.
2889 * info.el (Info--search-loop): New function, extracted from Info-search.
2890 Funcall isearch-filter-predicate instead of
2891 run-hook-with-args-until-failure isearch-filter-predicates.
2892 (Info-search): Use it.
2893 (Info-mode): Use isearch-filter-predicate instead of
2894 isearch-filter-predicates.
2895
2896 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
2897
2898 Do not call to `selected-window' where it is assumed by default.
2899 Affected functions are `window-minibuffer-p', `window-dedicated-p',
2900 `window-hscroll', `window-width', `window-height', `window-buffer',
2901 `window-frame', `window-start', `window-point', `next-window'
2902 and `window-display-table'.
2903 * abbrev.el (abbrev--default-expand):
2904 * bs.el (bs--show-with-configuration):
2905 * buff-menu.el (Buffer-menu-mouse-select):
2906 * calc/calc.el (calc):
2907 * calendar/calendar.el (calendar-generate-window):
2908 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
2909 (diary-make-entry):
2910 * comint.el (send-invisible, comint-dynamic-complete-filename)
2911 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
2912 * completion.el (complete):
2913 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
2914 * disp-table.el (describe-current-display-table):
2915 * doc-view.el (doc-view-insert-image):
2916 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
2917 * ehelp.el (with-electric-help):
2918 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2919 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
2920 * emacs-lisp/helper.el (Helper-help-scroller):
2921 * emulation/cua-base.el (cua--post-command-handler-1):
2922 * eshell/esh-mode.el (eshell-output-filter):
2923 * ffap.el (ffap-gnus-wrapper):
2924 * help-macro.el (make-help-screen):
2925 * hilit-chg.el (highlight-compare-buffers):
2926 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
2927 * hl-line.el (global-hl-line-highlight):
2928 * icomplete.el (icomplete-simple-completing-p):
2929 * isearch.el (isearch-done):
2930 * jit-lock.el (jit-lock-stealth-fontify):
2931 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
2932 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
2933 * mpc.el (mpc-tagbrowser, mpc):
2934 * net/rcirc.el (rcirc-any-buffer):
2935 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
2936 * play/landmark.el (landmark-max-width, landmark-max-height):
2937 * play/zone.el (zone):
2938 * progmodes/compile.el (compilation-goto-locus):
2939 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
2940 * progmodes/etags.el (find-tag-other-window):
2941 * progmodes/fortran.el (fortran-column-ruler):
2942 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
2943 * progmodes/verilog-mode.el (verilog-point-text):
2944 * reposition.el (reposition-window):
2945 * rot13.el (toggle-rot13-mode):
2946 * server.el (server-switch-buffer):
2947 * shell.el (shell-dynamic-complete-command)
2948 (shell-dynamic-complete-environment-variable):
2949 * simple.el (insert-buffer, set-selective-display)
2950 (delete-completion-window):
2951 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
2952 (speedbar-recenter):
2953 * startup.el (fancy-splash-head):
2954 * textmodes/ispell.el (ispell-command-loop):
2955 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
2956 * tutorial.el (help-with-tutorial):
2957 * vc/add-log.el (add-change-log-entry):
2958 * vc/compare-w.el (compare-windows):
2959 * vc/ediff-help.el (ediff-indent-help-message):
2960 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
2961 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
2962 (ediff-setup-control-frame):
2963 * vc/emerge.el (emerge-position-region):
2964 * vc/pcvs-util.el (cvs-bury-buffer):
2965 * window.el (walk-windows, mouse-autoselect-window-select):
2966 * winner.el (winner-set-conf, winner-undo): Related users changed.
2967
2968 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
2969
2970 * frameset.el (frameset--set-id): Doc fix.
2971 (frameset-frame-id, frameset-frame-id-equal-p)
2972 (frameset-locate-frame-id): New functions.
2973 (frameset--process-minibuffer-frames, frameset--reuse-frame)
2974 (frameset-restore): Use them.
2975
2976 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
2977
2978 Do not call to `selected-frame' where it is assumed by default.
2979 Affected functions are `raise-frame', `redraw-frame',
2980 `frame-first-window', `frame-terminal' and `delete-frame'.
2981 * calendar/appt.el (appt-disp-window):
2982 * epg.el (epg-wait-for-completion):
2983 * follow.el (follow-delete-other-windows-and-split)
2984 (follow-avoid-tail-recenter):
2985 * international/mule.el (set-terminal-coding-system):
2986 * mail/rmail.el (rmail-mail-return):
2987 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
2988 * progmodes/f90.el (f90-add-imenu-menu):
2989 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
2990 * server.el (server-switch-buffer):
2991 * simple.el (delete-completion-window):
2992 * talk.el (talk):
2993 * term/xterm.el (terminal-init-xterm-modify-other-keys)
2994 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
2995 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
2996 * vc/ediff.el (ediff-documentation): Related users changed.
2997 * frame.el (selected-terminal): Remove the leftover.
2998
2999 2013-08-05 Glenn Morris <rgm@gnu.org>
3000
3001 * calendar/calendar.el (calendar-generate-month):
3002 Fix for calendar-column-width != 1 + calendar-day-digit-width.
3003 (calendar-generate-month, calendar-font-lock-keywords):
3004 Fix for calendar-day-header-width > length of any day name.
3005
3006 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
3007
3008 * desktop.el (desktop-clear): Use new name of sort predicate.
3009
3010 * frameset.el (frameset): Add docstring. Move :version property to its
3011 own `version' slot.
3012 (frameset-copy): Rename from copy-frameset.
3013 (frameset-p): Check more thoroughly.
3014 (frameset-prop): Do not check for :version, which is no longer a prop.
3015 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3016 Use new :never value instead of t.
3017 (frameset-filter-alist): Expand and clarify docstring.
3018 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
3019 (frameset-filter-minibuffer, frameset-filter-save-param)
3020 (frameset-filter-restore-param, frameset-filter-iconified):
3021 Add pointer to docstring of frameset-filter-alist.
3022 (frameset-filter-params): Rename filter values to be more meaningful:
3023 :never instead of t, and reverse the meanings of :save and :restore.
3024 (frameset--process-minibuffer-frames): Clarify error message.
3025 (frameset-save): Avoid unnecessary and confusing call to framep.
3026 Use new BOA constructor for framesets.
3027 (frameset--reuse-list): Doc fix.
3028 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
3029 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
3030 (frameset-minibufferless-first-p): Doc fix.
3031 Rename from frameset-sort-frames-for-deletion.
3032 (frameset-restore): Doc fixes. Use new function names.
3033 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3034
3035 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3036
3037 * desktop.el (desktop-restore-forces-onscreen)
3038 (desktop-restore-reuses-frames): Document :keyword constant values.
3039 (desktop-filter-parameters-alist): Remove, now identical to
3040 frameset-filter-alist.
3041 (desktop--filter-tty*): Remove, moved to frameset.el.
3042 (desktop-save-frameset, desktop-restore-frameset):
3043 Do not pass :filters argument.
3044
3045 * frameset.el (frameset-live-filter-alist)
3046 (frameset-persistent-filter-alist): New variables.
3047 (frameset-filter-alist): Use them. Add autoload cookie.
3048 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
3049 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
3050 `frameset--id' (it's supposed to be internal to frameset.el).
3051 (frameset--process-minibuffer-frames): Ditto. Doc fix.
3052 (frameset--initial-params): New function.
3053 (frameset--get-frame): Use it. Doc fix.
3054 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
3055 Accept :all, not 'all.
3056 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
3057 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
3058 with fbound symbols. Fix frame id matching, and remove matching ids if
3059 the frame being restored is deleted. Obey :delete.
3060
3061 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3062
3063 * subr.el (macrop): New function.
3064 (text-clone--maintaining): New var.
3065 (text-clone--maintain): Rename from text-clone-maintain. Use it
3066 instead of inhibit-modification-hooks.
3067
3068 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
3069 a proxy, so as handle autoloads and redefinitions of the target.
3070 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
3071
3072 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
3073 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
3074 (pcase--mutually-exclusive-p): New function.
3075 (pcase--split-consp): Use it.
3076 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
3077 mutually exclusive with the current predicate.
3078
3079 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
3080 (edebug-macrop): Remove. Use `macrop' instead.
3081 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
3082 (ad-macro-p):
3083 * eshell/esh-cmd.el (eshell-macrop):
3084 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
3085
3086 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3087
3088 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
3089 (advice-mapc): New function, using it.
3090 (advice-function-member-p): New function.
3091 (advice--normalize): Store the cdr in advice--saved-rewrite since
3092 that's the part that will be changed.
3093 (advice--symbol-function): New function.
3094 (advice-remove): Handle removal before the function is defined.
3095 Adjust to new advice--saved-rewrite.
3096 (advice-member-p): Use advice-function-member-p and
3097 advice--symbol-function.
3098
3099 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3100
3101 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
3102 (frameset-filter-minibuffer): Doc fix.
3103 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
3104 (frameset--set-id, frameset--process-minibuffer-frames)
3105 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
3106 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
3107
3108 * desktop.el (desktop-clear): Only delete frames when called
3109 interactively and desktop-restore-frames is non-nil. Doc fix.
3110 (desktop-read): Set desktop-saved-frameset to nil.
3111
3112 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
3113
3114 * vc/vc.el (vc-ignore): Rewrite.
3115 (vc-default-ignore-completion-table):
3116 (vc--read-lines):
3117 (vc--add-line, vc--remove-regexp): New functions.
3118
3119 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
3120 (vc-svn-ignore-completion-table): New function.
3121
3122 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
3123 (vc-hg-ignore-completion-table):
3124 (vc-hg-find-ignore-file): New functions.
3125
3126 * vc/vc-git.el (vc-git-ignore): Rewrite.
3127 (vc-git-ignore-completion-table):
3128 (vc-git-find-ignore-file): New functions.
3129
3130 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
3131
3132 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
3133 (vc-bzr-ignore-completion-table):
3134 (vc-bzr-find-ignore-file): New functions.
3135
3136 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
3137
3138 * frameset.el (frameset-prop): New function and setter.
3139 (frameset-save): Do not modify frame list passed by the caller.
3140
3141 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3142
3143 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
3144
3145 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3146
3147 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
3148 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
3149
3150 * custom.el (custom-initialize-default, custom-initialize-set)
3151 (custom-initialize-reset, custom-initialize-changed): Affect the
3152 toplevel-default-value (bug#6275, bug#14586).
3153 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
3154 for bug#6275.
3155
3156 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3157
3158 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
3159 Add cl-def* expressions.
3160
3161 * frameset.el (frameset-filter-params): Fix order of arguments.
3162
3163 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3164
3165 Move code related to saving frames to frameset.el.
3166 * desktop.el: Require frameset.
3167 (desktop-restore-frames): Doc fix.
3168 (desktop-restore-reuses-frames): Rename from
3169 desktop-restoring-reuses-frames.
3170 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
3171 (desktop-clear): Clear frames too.
3172 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
3173 (desktop--filter-tty*, desktop-save, desktop-read):
3174 Use frameset functions.
3175 (desktop-before-saving-frames-functions, desktop--filter-*-color)
3176 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
3177 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
3178 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
3179 (desktop--process-minibuffer-frames, desktop-save-frames)
3180 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
3181 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
3182 (desktop--sort-states, desktop-restoring-frames-p)
3183 (desktop-restore-frames): Remove. Most code moved to frameset.el.
3184 (desktop-restoring-frameset-p, desktop-restore-frameset)
3185 (desktop--check-dont-save, desktop-save-frameset): New functions.
3186 (desktop--app-id): New constant.
3187 (desktop-first-buffer, desktop-buffer-ok-count)
3188 (desktop-buffer-fail-count): Move before first use.
3189 * frameset.el: New file.
3190
3191 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3192
3193 * files.el: Use lexical-binding.
3194 (dir-locals-read-from-file): Remove unused `err' variable.
3195 (hack-dir-local-variables--warned-coding): New var.
3196 (hack-dir-local-variables): Use it to avoid repeated warnings.
3197 (make-backup-file-name--default-function): New function.
3198 (make-backup-file-name-function): Use it as default.
3199 (buffer-stale--default-function): New function.
3200 (buffer-stale-function): Use it as default.
3201 (revert-buffer-insert-file-contents--default-function): New function.
3202 (revert-buffer-insert-file-contents-function): Use it as default.
3203 (insert-directory): Avoid add-to-list.
3204
3205 * autorevert.el (auto-revert-handler): Simplify.
3206 Use buffer-stale--default-function.
3207
3208 2013-08-01 Tassilo Horn <tsdh@gnu.org>
3209
3210 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
3211
3212 * whitespace.el (whitespace-ensure-local-variables): New function.
3213 (whitespace-cleanup-region): Call it.
3214 (whitespace-turn-on): Call it.
3215
3216 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
3217
3218 Complete file name handlers.
3219
3220 * net/tramp.el (tramp-handle-set-visited-file-modtime)
3221 (tramp-handle-verify-visited-file-modtime)
3222 (tramp-handle-file-notify-rm-watch): New functions.
3223 (tramp-call-process): Do not bind `default-directory'.
3224
3225 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3226 Order alphabetically.
3227 [access-file, add-name-to-file, dired-call-process]:
3228 [dired-compress-file, file-acl, file-notify-rm-watch]:
3229 [file-ownership-preserved-p, file-selinux-context]:
3230 [make-directory-internal, make-symbolic-link, set-file-acl]:
3231 [set-file-selinux-context, set-visited-file-modtime]:
3232 [verify-visited-file-modtime]: Add handler.
3233 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
3234
3235 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3236 [file-notify-add-watch, file-notify-rm-watch]:
3237 [set-file-times, set-visited-file-modtime]:
3238 [verify-visited-file-modtime]: Add handler.
3239 (with-tramp-gvfs-error-message)
3240 (tramp-gvfs-handle-set-visited-file-modtime)
3241 (tramp-gvfs-fuse-file-name): Remove.
3242 (tramp-gvfs-handle-file-notify-add-watch)
3243 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
3244 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
3245
3246 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3247 Order alphabetically.
3248 [file-notify-rm-watch ]: Use default Tramp handler.
3249 [executable-find]: Remove private handler.
3250 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
3251 `default-directory'.
3252 (tramp-sh-handle-executable-find)
3253 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
3254 (tramp-sh-file-gvfs-monitor-dir-process-filter)
3255 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
3256 Do not use `format' in `tramp-message'.
3257
3258 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
3259 [file-notify-rm-watch, set-visited-file-modtime]:
3260 [verify-visited-file-modtime]: Add handler.
3261 (tramp-smb-call-winexe): Do not bind `default-directory'.
3262
3263 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
3264
3265 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
3266
3267 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
3268
3269 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
3270 use it.
3271 (log-view-diff-changeset): Same.
3272 (log-view-diff-common): Call backend command `previous-revision'
3273 to find out the previous revision, in both cases. Swap the
3274 variables `to' and `fr', so that `fr' usually refers to the
3275 earlier revision (Bug#14989).
3276
3277 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
3278
3279 * ibuf-ext.el (ibuffer-filter-by-filename):
3280 Make it work with dired buffers too.
3281
3282 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3283
3284 * emacs-lisp/re-builder.el (reb-color-display-p):
3285 * files.el (save-buffers-kill-terminal):
3286 * net/browse-url.el (browse-url):
3287 * server.el (server-save-buffers-kill-terminal):
3288 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
3289 Prefer nil to selected-frame for the first arg of frame-parameter.
3290
3291 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
3292
3293 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
3294
3295 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
3296
3297 * minibuffer.el (completion--twq-all): Try and preserve each
3298 completion's case choice (bug#14907).
3299
3300 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
3301
3302 * net/network-stream.el (open-network-stream): Mention the new
3303 :nogreeting parameter.
3304 (network-stream-open-starttls): Use the :nogreeting parameter
3305 (bug#14938).
3306
3307 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
3308
3309 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
3310 more natural than popping.
3311
3312 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
3313 (shr-urlify): Highlight under mouse.
3314
3315 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
3316
3317 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
3318
3319 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
3320
3321 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
3322 buffer for output.
3323
3324 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
3325 point-min==1. Fix search string. Fix parentheses missing.
3326
3327 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
3328 assume point-min==1. Fix search string. Fix parentheses missing.
3329
3330 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
3331
3332 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
3333 buffer for output.
3334
3335 2013-07-29 Eli Zaretskii <eliz@gnu.org>
3336
3337 * frame.el (frame-notice-user-settings): Avoid inflooping when the
3338 initial frame is minibuffer-less. (Bug#14841)
3339
3340 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
3341
3342 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
3343 option.
3344
3345 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
3346 (tramp-maybe-open-connection): Use it.
3347
3348 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
3349
3350 * desktop.el (desktop--make-frame): Include `minibuffer' in the
3351 minimal set of parameters passed when creating a frame, because
3352 the minibuffer status of a frame cannot be changed later.
3353
3354 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
3355
3356 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
3357 replace-regexp-in-string and inadvertent omissions in previous change.
3358 (todo-filter-items): Ensure only file names are comma-separated in
3359 name of filtered items buffer.
3360
3361 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
3362
3363 * desktop.el: Optionally force offscreen frames back onscreen.
3364 (desktop-restoring-reuses-frames): New option.
3365 (desktop--compute-pos, desktop--move-onscreen): New functions.
3366 (desktop--make-frame): Use desktop--move-onscreen.
3367
3368 2013-07-27 Alan Mackenzie <acm@muc.de>
3369
3370 Fontify a Java generic method as a function.
3371 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
3372 value to t.
3373
3374 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
3375
3376 * calendar/todo-mode.el: Add command to rename todo files.
3377 (todo-rename-file): New command.
3378 (todo-key-bindings-t): Add key binding for it. Change the
3379 bindings of todo-filter-regexp-items(-multifile) to use `x'
3380 instead of `r', since the latter is better suited to the new
3381 renaming command.
3382
3383 2013-07-27 Alan Mackenzie <acm@muc.de>
3384
3385 Make Java try-with-resources statement parse properly.
3386 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
3387 (c-block-stmt-1-2-key): New language constants/variables.
3388 * progmodes/cc-engine.el (c-beginning-of-statement-1)
3389 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
3390 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
3391 with c-block-stmt-1-2-key.
3392
3393 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
3394
3395 * desktop.el (desktop--make-frame): Apply most frame parameters after
3396 creating the frame to force (partially or totally) offscreen frames to
3397 be restored as such.
3398
3399 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
3400
3401 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
3402 (Bug#14948)
3403
3404 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3405
3406 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
3407 `base' arg of backtrace-frame.
3408
3409 2013-07-26 Eli Zaretskii <eliz@gnu.org>
3410
3411 * simple.el (list-processes): Doc fix.
3412
3413 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
3414
3415 * desktop.el (desktop--select-frame):
3416 Try harder to reuse existing frames.
3417
3418 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3419
3420 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
3421 (edebug-eval): Use backtrace-eval.
3422 (edebug--display, edebug--recursive-edit): Don't let-bind the
3423 edebug-outer-* vars that keep track of variables we locally let-bind.
3424 (edebug-outside-excursion): Don't restore outside values of locally
3425 let-bound vars.
3426 (edebug--display): Use user-error.
3427 (cl-lexical-debug, cl-debug-env): Remove.
3428
3429 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
3430
3431 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
3432 are restored to be sure that they are visible before deleting any
3433 remaining ones.
3434
3435 2013-07-26 Matthias Meulien <orontee@gmail.com>
3436
3437 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
3438 vc-print-root-log. (Bug#14948)
3439
3440 2013-07-26 Richard Stallman <rms@gnu.org>
3441
3442 Add aliases for encrypting mail.
3443 * epa.el (epa-mail-aliases): New option.
3444 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
3445 Bind inhibit-read-only so read-only text doesn't ruin everything.
3446 (epa-mail-default-recipients): New subroutine broken out.
3447 Handle epa-mail-aliases.
3448
3449 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3450
3451 Add support for lexical variables to the debugger's `e' command.
3452 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
3453 vars, except for debugger-outer-match-data.
3454 (debugger-frame-number): Move check for "on a function call" from
3455 callers into it. Add `skip-base' argument.
3456 (debugger-frame, debugger-frame-clear): Simplify accordingly.
3457 (debugger-env-macro): Only reset the state stored in non-variables,
3458 i.e. current-buffer and match-data.
3459 (debugger-eval-expression): Rewrite using backtrace-eval.
3460 * subr.el (internal--called-interactively-p--get-frame): Remove.
3461 (called-interactively-p):
3462 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
3463 `base' arg of backtrace-frame instead.
3464
3465 2013-07-26 Glenn Morris <rgm@gnu.org>
3466
3467 * align.el (align-regexp): Doc fix. (Bug#14857)
3468 (align-region): Explicit error if subexpression missing/does not match.
3469
3470 * simple.el (global-visual-line-mode):
3471 Do not duplicate the mode lighter. (Bug#14858)
3472
3473 2013-07-25 Martin Rudalics <rudalics@gmx.at>
3474
3475 * window.el (display-buffer): In display-buffer bind
3476 split-window-keep-point to t, bug#14829.
3477
3478 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
3479
3480 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
3481 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
3482 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
3483 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
3484 Change accordingly.
3485 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
3486 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
3487
3488 2013-07-25 Glenn Morris <rgm@gnu.org>
3489
3490 * dired-x.el (dired-mark-extension): Convert comment to doc string.
3491
3492 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
3493
3494 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
3495 parameter to modify-frame-parameters if the value has not changed;
3496 this is a workaround for bug#14949.
3497 (desktop--make-frame): On cl-delete-if call, check parameter name,
3498 not full parameter.
3499
3500 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
3501
3502 * vc/vc.el (vc-ignore): New function.
3503
3504 * vc/vc-svn.el (vc-svn-ignore): New function.
3505
3506 * vc/vc-hg.el (vc-hg-ignore): New function.
3507
3508 * vc/vc-git.el (vc-git-ignore): New function.
3509
3510 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
3511 (vc-dir-ignore): New function.
3512
3513 * vc/vc-cvs.el (vc-cvs-ignore): New function.
3514 (cvs-append-to-ignore): Move here from pcvs.el.
3515
3516 * vc/vc-bzr.el (vc-bzr-ignore): New function.
3517
3518 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
3519
3520 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
3521
3522 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
3523 (desktop-restore-frames): Warn when deleting an existing frame failed.
3524
3525 2013-07-24 Glenn Morris <rgm@gnu.org>
3526
3527 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
3528
3529 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
3530
3531 * filenotify.el (file-notify-supported-p):
3532 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
3533 Remove functions.
3534
3535 * autorevert.el (auto-revert-use-notify):
3536 (auto-revert-notify-add-watch):
3537 * net/tramp.el (tramp-file-name-for-operation):
3538 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3539 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3540 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3541 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3542 Remove `file-notify-supported-p' entry.
3543
3544 2013-07-24 Glenn Morris <rgm@gnu.org>
3545
3546 * printing.el: Replace all uses of deleted ps-windows-system,
3547 ps-lp-system, ps-flatten-list with lpr- versions.
3548
3549 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
3550
3551 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
3552 checked with memq (bug#14935).
3553
3554 * files.el (revert-buffer-function): Use a non-nil default.
3555 (revert-buffer-preserve-modes): Declare var to
3556 provide access to the `preserve-modes' argument.
3557 (revert-buffer): Let-bind it.
3558 (revert-buffer--default): New function, extracted from revert-buffer.
3559
3560 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
3561
3562 * lpr.el: Signal print errors more prominently.
3563 (print-region-function): Don't default to nil.
3564 (lpr-print-region): New function, extracted from print-region-1.
3565 Check lpr's return value and signal an error in case of problem.
3566 (print-region-1): Use it.
3567 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
3568 versions instead.
3569 (ps-printer-name): Default to nil.
3570 (ps-printer-name-option): Default to lpr-printer-switch.
3571 (ps-print-region-function): Don't default to nil.
3572 (ps-postscript-code-directory): Simplify default.
3573 (ps-do-despool): Use lpr-print-region to properly check the outcome.
3574 (ps-string-list, ps-eval-switch, ps-flatten-list)
3575 (ps-flatten-list-1): Remove.
3576 (ps-multibyte-buffer): Avoid setq.
3577 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
3578 (print-region-function, ps-print-region-function): Don't set them here.
3579
3580 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
3581
3582 * ido.el (ido-fractionp):
3583 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
3584 (ido-max-file-prompt-width, ido-unc-hosts-cache)
3585 (ido-max-directory-size, ido-max-dir-file-cache)
3586 (ido-decorations): Doc fix.
3587
3588 * ansi-color.el: Fix old URL.
3589
3590 2013-07-23 Michael R. Mauger <michael@mauger.com>
3591
3592 * progmodes/sql.el: Version 3.3
3593 (sql-product-alist): Improve oracle :prompt-cont-regexp.
3594 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
3595 (sql-interactive-remove-continuation-prompt): Rewrite, use
3596 functions above. Fix continuation prompt and complete output line
3597 handling.
3598 (sql-redirect-one, sql-execute): Use `read-only-mode' on
3599 redirected output buffer.
3600 (sql-mode): Restore deleted code (Bug#13591).
3601
3602 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
3603
3604 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
3605
3606 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
3607
3608 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
3609
3610 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3611 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3612 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
3613
3614 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
3615
3616 * desktop.el (desktop-clear): Simplify; remove useless checks
3617 against invalid buffer names.
3618 (desktop-list*): Use cl-list*.
3619 (desktop-buffer-info, desktop-create-buffer): Simplify.
3620
3621 2013-07-23 Leo Liu <sdl.web@gmail.com>
3622
3623 * bookmark.el (bookmark-make-record): Restore NAME as a default
3624 value. (Bug#14933)
3625
3626 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
3627
3628 * emacs-lisp/autoload.el (autoload--setup-output): New function,
3629 extracted from autoload--insert-text.
3630 (autoload--insert-text): Remove.
3631 (autoload--print-cookie-text): New function, extracted from
3632 autoload--insert-cookie-text.
3633 (autoload--insert-cookie-text): Remove.
3634 (autoload-generate-file-autoloads): Adjust calls accordingly.
3635
3636 * winner.el (winner-hook-installed-p): Remove.
3637 (winner-mode): Simplify accordingly.
3638
3639 * subr.el (add-to-list): Fix compiler-macro when `append' is
3640 not constant. Don't use `cl-member' for the base case.
3641
3642 * progmodes/subword.el: Fix boundary case (bug#13758).
3643 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
3644 own group.
3645 (subword-backward-regexp): Make it a constant.
3646 (subword-forward-internal): Don't treat a trailing capital as the
3647 beginning of a word.
3648
3649 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
3650
3651 * emacs-lisp/package.el (package-menu-mode): Don't modify the
3652 global value of tabulated-list-revert-hook (bug#14930).
3653
3654 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
3655
3656 * desktop.el: Require 'cl-lib.
3657 (desktop-before-saving-frames-functions): New hook.
3658 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
3659 for frames being saved. Rename from desktop--save-minibuffer-frames.
3660 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
3661 Do not save frames with non-nil `desktop-dont-save' parameter.
3662 Filter out deleted frames.
3663 (desktop--find-frame): Use cl-find-if.
3664 (desktop--select-frame): Use cl-(first|second|third) to access values
3665 of desktop-mini.
3666 (desktop--make-frame): Use cl-delete-if.
3667 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
3668 (desktop-restore-frames): Use cl-(first|second|third) to access values
3669 of desktop-mini. Look for visible frame at the end, not while
3670 restoring frames.
3671
3672 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
3673 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
3674 Use string-match-p, looking-at-p (bug#14927).
3675
3676 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
3677
3678 * desktop.el (desktop-saved-frame-states):
3679 Rename from desktop--saved-states; all users changed.
3680 (desktop-save-frames): Rename from desktop--save-frames.
3681 Do not save state to desktop file.
3682 (desktop-save): Save desktop-saved-frame-states to desktop file
3683 and reset to nil.
3684 (desktop-restoring-frames-p): New function.
3685 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
3686 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
3687 buffer-lists when restoring frames. Suggested by Martin Rudalics.
3688
3689 * desktop.el: Correctly restore iconified frames.
3690 (desktop--filter-iconified-position): New function.
3691 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
3692
3693 2013-07-20 Glenn Morris <rgm@gnu.org>
3694
3695 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
3696 Let `message' do the formatting.
3697 (def-gdb-preempt-display-buffer): Add explicit format.
3698
3699 * image-dired.el (image-dired-track-original-file):
3700 Use with-current-buffer.
3701 (image-dired-track-thumbnail): Use with-current-buffer.
3702 Avoid changing point of wrong window.
3703
3704 * image-dired.el (image-dired-track-original-file):
3705 Avoid changing point of wrong window. (Bug#14909)
3706
3707 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
3708
3709 * progmodes/gdb-mi.el (gdb-done-or-error):
3710 Guard against "%" in gdb output. (Bug#14127)
3711
3712 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
3713
3714 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
3715 (Bug#14826)
3716
3717 * international/mule.el (coding-system-iso-2022-flags): Fix last
3718 change.
3719
3720 2013-07-20 Kenichi Handa <handa@gnu.org>
3721
3722 * international/mule.el (coding-system-iso-2022-flags):
3723 Add `8-bit-level-4'. (Bug#8522)
3724
3725 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3726
3727 * net/shr.el (shr-mouse-browse-url): New command and keystroke
3728 (bug#14815).
3729
3730 * net/eww.el (eww-process-text-input): Allow inputting when the
3731 point is at the start of the line, as the properties aren't
3732 front-sticky.
3733
3734 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
3735 degenerate widths.
3736
3737 2013-07-19 Richard Stallman <rms@gnu.org>
3738
3739 * epa.el (epa-popup-info-window): Doc fix.
3740
3741 * subr.el (split-string): New arg TRIM.
3742
3743 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
3744
3745 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
3746 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
3747
3748 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
3749
3750 * filenotify.el (file-notify--library): Rename from
3751 `file-notify-support'. Do not autoload. Adapt all uses.
3752 (file-notify-supported-p): New defun.
3753
3754 * autorevert.el (auto-revert-use-notify):
3755 Use `file-notify-supported-p' instead of `file-notify-support'.
3756 Adapt docstring.
3757 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
3758
3759 * net/tramp.el (tramp-file-name-for-operation):
3760 Add `file-notify-supported-p'.
3761
3762 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
3763 New defun.
3764 (tramp-sh-file-name-handler-alist): Add it as handler for
3765 `file-notify-supported-p '.
3766
3767 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3768 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3769 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3770 Add `ignore' as handler for `file-notify-*' functions.
3771
3772 2013-07-17 Eli Zaretskii <eliz@gnu.org>
3773
3774 * simple.el (line-move-partial, line-move): Don't start vscroll or
3775 scroll-up if the current line is not taller than the window.
3776 (Bug#14881)
3777
3778 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
3779
3780 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
3781 highlight question marks in the method names as strings.
3782 (ruby-block-beg-keywords): Inline.
3783 (ruby-font-lock-keyword-beg-re): Extract from
3784 `ruby-font-lock-keywords'.
3785
3786 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
3787
3788 * frame.el (blink-cursor-blinks): New defcustom.
3789 (blink-cursor-blinks-done): New defvar.
3790 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
3791 (blink-cursor-timer-function): Check if number of blinks has been
3792 done on X and NS.
3793 (blink-cursor-suspend, blink-cursor-check): New defuns.
3794
3795 2013-07-15 Glenn Morris <rgm@gnu.org>
3796
3797 * edmacro.el (edmacro-format-keys): Fix previous change.
3798
3799 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
3800
3801 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
3802 The hack didn't work outside English locales anyway.
3803
3804 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
3805
3806 * simple.el (define-alternatives): Rename from alternatives-define,
3807 per RMS' suggestion.
3808
3809 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
3810
3811 * desktop.el (desktop-restore-frames): Change default to t.
3812 (desktop-restore-in-current-display): Now offer more options.
3813 (desktop-restoring-reuses-frames): New customization option.
3814 (desktop--saved-states): Doc fix.
3815 (desktop-filter-parameters-alist): New variable, renamed and expanded
3816 from desktop--excluded-frame-parameters.
3817 (desktop--target-display): New variable.
3818 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
3819 (desktop--filter-tty*, desktop--filter-*-color)
3820 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
3821 (desktop--filter-save-desktop-parm)
3822 (desktop-restore-in-original-display-p): New functions.
3823 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
3824 (desktop--save-minibuffer-frames): New function, inspired by a similar
3825 function from Martin Rudalics.
3826 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
3827 (desktop--restore-in-this-display-p): Remove.
3828 (desktop--find-frame): Rename from desktop--find-frame-in-display
3829 and add predicate argument.
3830 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
3831 (desktop--reuse-list): New variable.
3832 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
3833 New functions.
3834 (desktop--restore-frames): Add support for "minibuffer-special" frames.
3835
3836 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
3837
3838 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
3839
3840 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
3841
3842 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3843 Highlight conversion methods on Kernel.
3844
3845 2013-07-13 Alan Mackenzie <acm@muc.de>
3846
3847 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
3848 and comment it out. This out-commenting enables certain C++
3849 declarations to be parsed correctly.
3850
3851 2013-07-13 Eli Zaretskii <eliz@gnu.org>
3852
3853 * international/mule.el (define-coding-system): Doc fix.
3854
3855 * simple.el (default-font-height): Don't call font-info if the
3856 frame's default font didn't change since the frame was created.
3857 (Bug#14838)
3858
3859 2013-07-13 Leo Liu <sdl.web@gmail.com>
3860
3861 * ido.el (ido-read-file-name): Guard against non-symbol value.
3862
3863 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
3864
3865 * progmodes/python.el (python-imenu--build-tree): Fix corner case
3866 in nested defuns.
3867
3868 2013-07-13 Leo Liu <sdl.web@gmail.com>
3869
3870 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
3871 ido-set-matches call. (Bug#6852)
3872
3873 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
3874
3875 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
3876 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
3877 Ruby 2.0.
3878 (ruby-font-lock-keywords): Distinguish calls to functions with
3879 module-like names from module references. Highlight character
3880 literals.
3881
3882 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
3883
3884 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
3885 (gdb-send): Handle continued commands. (Bug#14847)
3886
3887 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
3888
3889 * desktop.el (desktop--v2s): Remove unused local variable.
3890 (desktop-save-buffer): Make defvar-local; adjust docstring.
3891 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
3892 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
3893
3894 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
3895
3896 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
3897
3898 2013-07-12 Eli Zaretskii <eliz@gnu.org>
3899
3900 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
3901 (Bug#14842)
3902
3903 2013-07-12 Glenn Morris <rgm@gnu.org>
3904
3905 * doc-view.el: Require cl-lib at runtime too.
3906 (doc-view-remove-if): Remove.
3907 (doc-view-search-next-match, doc-view-search-previous-match):
3908 Use cl-remove-if.
3909
3910 * edmacro.el: Require cl-lib at runtime too.
3911 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
3912 (edmacro-mismatch, edmacro-subseq): Remove.
3913
3914 * shadowfile.el: Require cl-lib.
3915 (shadow-remove-if): Remove.
3916 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
3917 Use cl-remove-if.
3918
3919 * wid-edit.el: Require cl-lib.
3920 (widget-choose): Use cl-remove-if.
3921 (widget-remove-if): Remove.
3922
3923 * progmodes/ebrowse.el: Require cl-lib at runtime too.
3924 (ebrowse-delete-if-not): Remove.
3925 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
3926 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
3927 Use cl-delete-if-not.
3928
3929 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
3930
3931 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
3932 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
3933
3934 2013-07-12 Leo Liu <sdl.web@gmail.com>
3935
3936 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
3937
3938 2013-07-11 Glenn Morris <rgm@gnu.org>
3939
3940 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
3941 (edebug-gensym-index, edebug-gensym):
3942 Remove reimplementation of cl-gensym.
3943 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
3944
3945 * thumbs.el: Require cl-lib at run-time too.
3946 (thumbs-gensym-counter, thumbs-gensym):
3947 Remove reimplementation of cl-gensym.
3948 (thumbs-temp-file): Use cl-gensym.
3949
3950 * emacs-lisp/ert.el: Require cl-lib at runtime too.
3951 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
3952 (ert--intersection, ert--set-difference, ert--set-difference-eq)
3953 (ert--union, ert--gensym-counter, ert--gensym-counter)
3954 (ert--coerce-to-vector, ert--remove*, ert--string-position)
3955 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
3956 (ert-make-test-unbound, ert--expand-should-1)
3957 (ert--expand-should, ert--should-error-handle-error)
3958 (should-error, ert--explain-equal-rec)
3959 (ert--plist-difference-explanation, ert-select-tests)
3960 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
3961 Use cl-lib functions rather than reimplementations.
3962
3963 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
3964
3965 * net/tramp.el (tramp-methods): Extend docstring.
3966 (tramp-connection-timeout): New defcustom.
3967 (tramp-error-with-buffer): Reset timestamp only when appropriate.
3968 (with-tramp-progress-reporter): Simplify.
3969 (tramp-process-actions): Improve messages.
3970
3971 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
3972 * net/tramp-sh.el (tramp-maybe-open-connection):
3973 Use `tramp-connection-timeout'.
3974 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
3975 (Bug#14808)
3976
3977 2013-07-11 Leo Liu <sdl.web@gmail.com>
3978
3979 * ido.el (ido-read-file-name): Conform to the requirements of
3980 read-file-name. (Bug#11861)
3981 (ido-read-directory-name): Conform to the requirements of
3982 read-directory-name.
3983
3984 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
3985
3986 * subr.el (delay-warning): New function.
3987
3988 2013-07-10 Eli Zaretskii <eliz@gnu.org>
3989
3990 * simple.el (default-line-height): New function.
3991 (line-move-partial, line-move): Use it instead of computing the
3992 line height inline.
3993 (line-move-partial): Always compute ROWH. If the last line is
3994 partially-visible, but its text is completely visible, allow
3995 cursor to enter such a partially-visible line.
3996
3997 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
3998
3999 Improve error messages. (Bug#14808)
4000
4001 * net/tramp.el (tramp-current-connection): New defvar, moved from
4002 tramp-sh.el.
4003 (tramp-message-show-progress-reporter-message): Remove, not
4004 needed anymore.
4005 (tramp-error-with-buffer): Show message in minibuffer.
4006 Discard input before waiting. Reset connection timestamp.
4007 (with-tramp-progress-reporter): Improve messages.
4008 (tramp-process-actions): Use progress reporter. Delete process in
4009 case of error. Improve messages.
4010
4011 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
4012 Call `tramp-error-with-buffer' with vector and buffer.
4013 (tramp-current-connection): Remove.
4014 (tramp-maybe-open-connection): The car of
4015 `tramp-current-connection' are the first 3 slots of the vector.
4016
4017 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
4018
4019 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
4020 inside continued strings.
4021
4022 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
4023
4024 Timestamp fixes for undo (Bug#14824).
4025 * files.el (clear-visited-file-modtime): Move here from fileio.c.
4026
4027 2013-07-10 Leo Liu <sdl.web@gmail.com>
4028
4029 * files.el (require-final-newline): Allow safe local value.
4030 (Bug#14834)
4031
4032 2013-07-09 Leo Liu <sdl.web@gmail.com>
4033
4034 * ido.el (ido-read-directory-name): Handle fallback.
4035 (ido-read-file-name): Update DIR to ido-current-directory.
4036 (Bug#1516)
4037 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
4038
4039 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
4040
4041 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
4042 "autoload". Remove "warn lower camel case" section, previously
4043 commented out. Highlight negation char. Do not highlight the
4044 target in singleton method definitions.
4045
4046 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4047
4048 * faces.el (tty-setup-hook): Declare the hook.
4049
4050 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
4051 and detect when a guard/pred depends on local vars (bug#14773).
4052 (pcase--u1): Adjust caller.
4053
4054 2013-07-08 Eli Zaretskii <eliz@gnu.org>
4055
4056 * simple.el (line-move-partial, line-move): Account for
4057 line-spacing.
4058 (line-move-partial): Avoid setting vscroll when the last
4059 partially-visible line in window is of default height.
4060
4061 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4062
4063 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
4064 been used a while.
4065
4066 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
4067
4068 * subr.el (read-quoted-char): Remove unused local variable `char'.
4069
4070 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
4071
4072 * ediff.el (ediff-version): Version update.
4073 (ediff-files-command, ediff3-files-command, ediff-merge-command)
4074 (ediff-merge-with-ancestor-command, ediff-directories-command)
4075 (ediff-directories3-command, ediff-merge-directories-command)
4076 (ediff-merge-directories-with-ancestor-command): New functions.
4077 All are command-line interfaces to ediff: to facilitate calling
4078 Emacs with the appropriate ediff functions invoked.
4079
4080 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
4081 (viper-save-kill-buffer): Check if buffer is modified.
4082
4083 * viper.el (viper-version): Version update.
4084 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
4085
4086 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
4087
4088 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
4089 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
4090 (viper-intercept-ESC-key): Simplify.
4091 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
4092 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
4093 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
4094 (viper-setup-ESC-to-escape): New functions.
4095 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
4096 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
4097
4098 2013-07-07 Eli Zaretskii <eliz@gnu.org>
4099
4100 * simple.el (default-font-height, window-screen-lines):
4101 New functions.
4102 (line-move, line-move-partial): Use them instead of
4103 frame-char-height and window-text-height. This makes scrolling
4104 text smoother when the buffer's default face uses a font that is
4105 different from the frame's default font.
4106
4107 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
4108
4109 * files.el (write-file): Do not display confirm dialog for NS,
4110 it does its own dialog, which can't be cancelled (Bug#14578).
4111
4112 2013-07-06 Eli Zaretskii <eliz@gnu.org>
4113
4114 * simple.el (line-move-partial): Adjust the row returned by
4115 posn-at-point for the current window-vscroll. (Bug#14567)
4116
4117 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
4118
4119 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
4120 (tramp-sh-file-inotifywait-process-filter): Handle file names with
4121 spaces.
4122
4123 2013-07-06 Martin Rudalics <rudalics@gmx.at>
4124
4125 * window.el (window-state-put-stale-windows): New variable.
4126 (window--state-put-2): Save list of windows without matching buffer.
4127 (window-state-put): Remove "bufferless" windows if possible.
4128
4129 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4130
4131 * simple.el (alternatives-define): Remove leftover :group keyword.
4132 Tweak docstring.
4133
4134 2013-07-06 Leo Liu <sdl.web@gmail.com>
4135
4136 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
4137 (ido-enable-virtual-buffers): New variable.
4138 (ido-buffer-internal, ido-toggle-virtual-buffers)
4139 (ido-make-buffer-list): Use it.
4140 (ido-exhibit): Support turning on and off virtual buffers
4141 automatically.
4142
4143 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4144
4145 * simple.el (alternatives-define): New macro.
4146
4147 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
4148
4149 * subr.el (read-quoted-char): Use read-key.
4150 (sit-for): Let read-event decode tty input (bug#14782).
4151
4152 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
4153
4154 * calendar/todo-mode.el: Add handling of file deletion, both by
4155 mode command and externally. Fix various related bugs.
4156 Clarify Commentary and improve some documentation strings and code.
4157 (todo-delete-file): New command.
4158 (todo-check-file): New function.
4159 (todo-show): Handle external deletion of the file we're trying to
4160 show (bug#14688). Replace called-interactively-p by an optional
4161 prefix argument to avoid problematic interaction with catch form
4162 when byte compiled (bug#14702).
4163 (todo-quit): Handle external deletion of the archive's todo file.
4164 Make sure the buffer that was visiting the archive file is still
4165 live before trying to bury it.
4166 (todo-category-completions): Handle external deletion of any
4167 category completion files.
4168 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
4169 of todo files, in case of external deletion.
4170 (todo-add-file): Replace unnecessary setq by let-binding.
4171 (todo-find-archive): Check whether there are any archives.
4172 Replace unnecessary setq by let-binding.
4173 (todo-archive-done-item): Use find-file-noselect to get the
4174 archive buffer whether or not the archive already exists.
4175 Remove superfluous code. Use file size instead of buffer-file-name to
4176 check if the archive is new; if it is, update list of archives.
4177 (todo-default-todo-file): Allow nil to be a valid value for when
4178 there are no todo files.
4179 (todo-reevaluate-default-file-defcustom): Use corrected definition
4180 of todo-default-todo-file.
4181 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
4182 (todo-delete-category, todo-show-categories-table)
4183 (todo-category-number): Clarify comment.
4184 (todo-filter-items): Clarify documentation string.
4185 (todo-show-current-file, todo-display-as-todo-file)
4186 (todo-reset-and-enable-done-separator): Tweak documentation string.
4187 (todo-done-separator): Make separator length window-width, since
4188 bug#2749 is now fixed.
4189
4190 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
4191
4192 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
4193 Support both "gvfs-monitor-dir" and "inotifywait".
4194 (tramp-sh-file-inotifywait-process-filter): Rename from
4195 `tramp-sh-file-notify-process-filter'.
4196 (tramp-sh-file-gvfs-monitor-dir-process-filter)
4197 (tramp-get-remote-gvfs-monitor-dir): New defuns.
4198
4199 2013-07-05 Leo Liu <sdl.web@gmail.com>
4200
4201 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
4202
4203 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4204
4205 * frame.el (display-pixel-height, display-pixel-width)
4206 (display-mm-height, display-mm-width): Mention behavior on
4207 multi-monitor setups in docstrings.
4208 (w32-display-monitor-attributes-list): Declare function.
4209 (display-monitor-attributes-list): Use it.
4210
4211 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
4212
4213 * filenotify.el: New package.
4214
4215 * autorevert.el (top): Require filenotify.el.
4216 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
4217 instead.
4218 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
4219 (auto-revert-notify-handler): Use `file-notify-*' functions.
4220
4221 * subr.el (file-notify-handle-event): Move function to filenotify.el.
4222
4223 * net/tramp.el (tramp-file-name-for-operation):
4224 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
4225
4226 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
4227 for `file-notify-add-watch' and `file-notify-rm-watch'.
4228 (tramp-process-sentinel): Improve trace.
4229 (tramp-sh-handle-file-notify-add-watch)
4230 (tramp-sh-file-notify-process-filter)
4231 (tramp-sh-handle-file-notify-rm-watch)
4232 (tramp-get-remote-inotifywait): New defuns.
4233
4234 2013-07-03 Juri Linkov <juri@jurta.org>
4235
4236 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
4237 call of `occur-read-primary-args' to interactive spec.
4238
4239 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
4240 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
4241
4242 2013-07-03 Matthias Meulien <orontee@gmail.com>
4243
4244 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
4245 `Buffer-menu-multi-occur'. Add it to the menu.
4246 (Buffer-menu-mode): Document it in docstring.
4247 (Buffer-menu-multi-occur): New command. (Bug#14673)
4248
4249 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4250
4251 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
4252 keywords and built-ins.
4253
4254 2013-07-03 Glenn Morris <rgm@gnu.org>
4255
4256 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
4257
4258 Make info-xref checks case-sensitive by default
4259 * info.el (Info-find-node, Info-find-in-tag-table)
4260 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
4261 Add option for exact case matching of nodes.
4262 * info-xref.el (info-xref): New custom group.
4263 (info-xref-case-fold): New option.
4264 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
4265
4266 2013-07-03 Leo Liu <sdl.web@gmail.com>
4267
4268 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
4269
4270 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4271
4272 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
4273 middle of block statement initially, lower the depth. Remove
4274 FIXME comment, not longer valid. Remove middle of block statement
4275 detection, no need to do that anymore since we've been using
4276 `ruby-parse-region' here.
4277
4278 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
4279
4280 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
4281
4282 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
4283
4284 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
4285
4286 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
4287
4288 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
4289 (desktop-restore-in-current-display): New customization option.
4290 (desktop--excluded-frame-parameters): Add `font'.
4291 (desktop--save-frames): Rename from desktop--save-windows.
4292 (desktop--restore-in-this-display-p): New function.
4293 (desktop--make-full-frame): Remove unwanted width/height from
4294 full(width|height) frames.
4295 (desktop--restore-frames): Rename from desktop--restore-windows.
4296 Obey desktop-restore-current-display. Do not delete old frames or
4297 select a new frame unless we were able to restore at least one frame.
4298
4299 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
4300
4301 * files.el (find-file-noselect): Simplify conditional expression.
4302
4303 * remember.el (remember-append-to-file):
4304 Don't mix `find-buffer-visiting' and `get-file-buffer'.
4305
4306 Add `remember-notes' function to store random notes across Emacs
4307 restarts.
4308 * remember.el (remember-data-file): Add :set callback to affect
4309 notes buffer (if any).
4310 (remember-notes): New command.
4311 (remember-notes-buffer-name, bury-remember-notes-on-kill):
4312 New defcustoms for the `remember-notes' function.
4313 (remember-notes-save-and-bury-buffer): New command.
4314 (remember-notes-mode-map): New variable.
4315 (remember-mode): New minor mode.
4316 (remember-notes--kill-buffer-query): New function.
4317 * startup.el (initial-buffer-choice): Add notes to custom type.
4318
4319 2013-06-30 Eli Zaretskii <eliz@gnu.org>
4320
4321 * bindings.el (right-char, left-char): Don't call sit-for, this is
4322 no longer needed. Use arithmetic comparison only for numerical
4323 arguments.
4324
4325 * international/mule-cmds.el (select-safe-coding-system):
4326 Handle the case of FROM being a string correctly. (Bug#14755)
4327
4328 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4329
4330 * net/shr.el (shr-make-table-1): Add a sanity check that allows
4331 progression on degenerate tables.
4332 (shr-rescale-image): ImageMagick animated images currently don't work.
4333
4334 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
4335
4336 Some fixes and improvements for desktop frame restoration.
4337 It is still experimental and disabled by default.
4338 * desktop.el (desktop--save-windows): Put the selected frame at
4339 the head of the list.
4340 (desktop--make-full-frame): New function.
4341 (desktop--restore-windows): Try to re-select the frame that was
4342 selected upon saving. Do not abort if some frames fail to restore,
4343 just show an error message and continue. Set up maximized frames
4344 so they have default non-maximized dimensions.
4345
4346 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
4347
4348 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
4349 Don't start heredoc inside a string or comment.
4350
4351 2013-06-29 Eli Zaretskii <eliz@gnu.org>
4352
4353 * bindings.el (visual-order-cursor-movement): New defcustom.
4354 (right-char, left-char): Provide visual-order cursor motion by
4355 calling move-point-visually. Update the doc strings.
4356
4357 2013-06-28 Kenichi Handa <handa@gnu.org>
4358
4359 * international/mule.el (define-coding-system): New coding system
4360 properties :inhibit-null-byte-detection,
4361 :inhibit-iso-escape-detection, and :prefer-utf-8.
4362 (set-buffer-file-coding-system): If :charset-list property of
4363 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
4364 appropriate for setting.
4365
4366 * international/mule-cmds.el (select-safe-coding-system):
4367 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
4368 multibyte characters, return utf-8 (or one of its siblings).
4369
4370 * international/mule-conf.el (prefer-utf-8): New coding system.
4371 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
4372 files.
4373
4374 2013-06-28 Ivan Kanis <ivan@kanis.fr>
4375
4376 * net/shr.el (shr-render-region): New function.
4377
4378 * net/eww.el: Autoload `eww-browse-url'.
4379
4380 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
4381
4382 * emacs-lisp/package-x.el (package-upload-buffer-internal):
4383 Adapt to `package-desc-version' being a list.
4384 Use `package--ac-desc-version' to retrieve version from a package
4385 archive element.
4386
4387 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
4388
4389 New experimental feature to save&restore window and frame setup.
4390 * desktop.el (desktop-save-windows): New defcustom.
4391 (desktop--saved-states): New var.
4392 (desktop--excluded-frame-parameters): New defconst.
4393 (desktop--filter-frame-parms, desktop--find-frame-in-display)
4394 (desktop--restore-windows, desktop--save-windows): New functions.
4395 (desktop-save): Call `desktop--save-windows'.
4396 (desktop-read): Call `desktop--restore-windows'.
4397
4398 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4399
4400 * net/shr.el (add-face-text-property): Remove compat definition.
4401
4402 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
4403
4404 * info.el (Info-try-follow-nearest-node): Move search for footnote
4405 above search for node name to prevent missing a footnote (bug#14717).
4406
4407 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
4408
4409 * obsolete/otodo-mode.el: Add obsolescence info to file header.
4410
4411 2013-06-27 Leo Liu <sdl.web@gmail.com>
4412
4413 * net/eww.el (eww-read-bookmarks): Check file size.
4414
4415 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
4416
4417 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
4418 advice--pending if newdef is nil or an autoload (bug#13820).
4419 (advice-mapc): New function.
4420
4421 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4422
4423 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
4424 probably.
4425 (eww-mode-map): Add a menu bar.
4426 (eww-add-bookmark): New command.
4427 (eww-bookmark-mode): New mode and commands.
4428 (eww-add-bookmark): Remove newlines from the title.
4429 (eww-bookmark-browse): Don't bug out if it's the only window.
4430
4431 2013-06-26 Glenn Morris <rgm@gnu.org>
4432
4433 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
4434 (hfy-size): Handle ttys. (Bug#14668)
4435
4436 * info-xref.el: Update for Texinfo 5 change in *note format.
4437 (info-xref-node-re, info-xref-note-re): New constants.
4438 (info-xref-check-buffer): Use info-xref-note-re.
4439
4440 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
4441
4442 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
4443
4444 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
4445 nil terminate the loop (bug#14718).
4446
4447 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4448
4449 * net/eww.el: Rework history traversal. When going forward/back,
4450 put these actions into the history, too, so that they can be
4451 replayed.
4452 (eww-render): Move the history reset to the correct buffer.
4453
4454 2013-06-25 Juri Linkov <juri@jurta.org>
4455
4456 * files-x.el (modify-dir-local-variable): Change the header comment
4457 in the file with directory local variables. (Bug#14692)
4458
4459 * files-x.el (read-file-local-variable-value): Add `default'.
4460 (Bug#14710)
4461
4462 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4463
4464 * net/eww.el (eww-make-unique-file-name): Create a unique file
4465 name before saving to entering `y' accidentally asynchronously.
4466
4467 2013-06-25 Ivan Kanis <ivan@kanis.fr>
4468
4469 * net/eww.el (eww-download): New command and keystroke.
4470
4471 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4472
4473 * net/eww.el (eww-copy-page-url): Change name of command.
4474
4475 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
4476 be more consistent with Info and dired.
4477
4478 * net/eww.el (eww-mode-map): Ditto.
4479
4480 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4481
4482 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
4483 packages from archives.
4484 (package-archive-contents): Change format; include obsolete packages.
4485 (package-desc): Use `dir' to mark builtin packages.
4486 (package--from-builtin): Set the `dir' field to `builtin'.
4487 (generated-autoload-file, version-control): Declare.
4488 (package-compute-transaction): Change first arg and return value to be
4489 lists of package-descs. Adjust to new package-archive-contents format.
4490 (package--add-to-archive-contents): Adjust to new
4491 package-archive-contents format.
4492 (package-download-transaction): Arg is now a list of package-descs.
4493 (package-install): If `pkg' is a package name, pass it as
4494 a requirement, so it is subject to the usual (e.g. disabled) checks.
4495 (describe-package): Accept package-desc as well.
4496 (describe-package-1): Describe a specific package-desc. Add links to
4497 other package-descs for the same package name.
4498 (package-menu-describe-package): Pass the actual package-desc.
4499 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
4500 works correctly.
4501 (package-desc-status): New function.
4502 (package-menu--refresh): New function, extracted
4503 from package-menu--generate.
4504 (package-menu--generate): Use it.
4505 (package-delete): Update package-alist.
4506 (package-menu-execute): Don't call package-initialize.
4507
4508 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
4509 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
4510 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
4511 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
4512 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
4513 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
4514
4515 2013-06-25 Martin Rudalics <rudalics@gmx.at>
4516
4517 * window.el (window--state-get-1): Workaround for bug#14527.
4518 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
4519
4520 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4521
4522 * net/eww.el (eww-back-url): Implement the history by stashing all
4523 the data into a list.
4524 (eww-forward-url): Allow going forward in the history, too.
4525
4526 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4527
4528 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
4529 for values and use read--expression for expressions (bug#14710).
4530 (read-file-local-variable): Avoid setq.
4531 (read-file-local-variable-mode): Use minor-mode-list.
4532
4533 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4534
4535 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
4536 for DOI URLs.
4537
4538 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4539
4540 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
4541 Update imenu-support when dialect changes.
4542
4543 2013-06-25 Leo Liu <sdl.web@gmail.com>
4544
4545 * ido.el (ido-read-internal): Allow forward slash on windows.
4546
4547 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4548
4549 * net/eww.el (eww): Start of strings is \\`, not ^.
4550
4551 2013-06-24 Ivan Kanis <ivan@kanis.fr>
4552
4553 * net/shr.el (shr-browse-url): Fix interactive spec.
4554
4555 * net/eww.el (eww): Add a trailing slash to domain names.
4556
4557 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
4558
4559 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
4560
4561 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4562
4563 * net/shr.el (shr-browse-url): Use an external browser if given a
4564 prefix.
4565
4566 * net/eww.el (eww-external-browser): Move to shr.
4567
4568 2013-06-24 Ivan Kanis <ivan@kanis.fr>
4569
4570 * net/eww.el (eww): Work more correctly for file: URLs.
4571 (eww-detect-charset): Allow quoted charsets.
4572 (eww-yank-page-url): New command and keystroke.
4573
4574 2013-06-24 Daiki Ueno <ueno@gnu.org>
4575
4576 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
4577 file name of gpg executable.
4578 (epg-context-program): New function.
4579 (epg-context-home-directory): New function.
4580 (epg-context-set-program): New function.
4581 (epg-context-set-home-directory): New function.
4582 (epg--start): Use `epg-context-program' instead of
4583 'epg-gpg-program'.
4584 (epg--list-keys-1): Likewise.
4585
4586 2013-06-24 Leo Liu <sdl.web@gmail.com>
4587
4588 * ido.el (ido-read-internal): Fix bug#14620.
4589
4590 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
4591
4592 * faces.el (face-documentation): Simplify.
4593 (read-face-attribute, tty-find-type, x-resolve-font-name):
4594 Use `string-match-p'.
4595 (list-faces-display): Use `string-match-p'. Simplify.
4596 (face-spec-recalc): Check face to avoid face alias loops.
4597 (read-color): Use `string-match-p' and non-capturing parenthesis.
4598
4599 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4600
4601 * net/shr.el (shr-rescale-image): Use the new
4602 :max-width/:max-height functionality.
4603
4604 2013-06-23 Ivan Kanis <ivan@kanis.fr>
4605
4606 * net/eww.el (eww-search-prefix): New variable.
4607 (eww): Use it.
4608 (eww-external-browser): New variable.
4609 (eww-mode-map): New keystroke.
4610 (eww-browse-with-external-browser): New command.
4611
4612 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
4613
4614 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
4615
4616 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
4617 Don't skip aligning the next header field when padding is 0;
4618 otherwise, field width is not respected unless the title is as
4619 wide as the field.
4620
4621 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
4622
4623 * emacs-lisp/package.el (package-el-version): Remove.
4624 (package-process-define-package): Fix inf-loop.
4625 (package-install): Allow symbols as arguments again.
4626
4627 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
4628
4629 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
4630 add some more keyword-like methods.
4631 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
4632
4633 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
4634
4635 * bs.el (bs-buffer-show-mark): Make defvar-local.
4636 (bs-mode): Use setq-local.
4637
4638 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
4639 (emacs-lock--try-unlocking): Make defvar-local.
4640
4641 2013-06-22 Glenn Morris <rgm@gnu.org>
4642
4643 * play/cookie1.el (cookie-apropos): Minor simplification.
4644
4645 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
4646
4647 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
4648
4649 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
4650 `regexp-opt', it breaks the build during dumping.
4651
4652 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
4653
4654 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4655 Highlight keyword-like methods on Kernel and Module with
4656 font-lock-builtin-face.
4657 (auto-mode-alist): Consolidate different entries into one regexp
4658 and add more *file-s.
4659
4660 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
4661
4662 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
4663
4664 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
4665 (diary-entry): Use it in the action of this button type instead of
4666 diary-goto-entry.
4667
4668 * calendar/todo-mode.el: New version.
4669 (todo-add-category): Append new category to end of file and give
4670 it the highest number, instead of putting it at the beginning and
4671 giving it 0. Incorporate noninteractive functionality.
4672 (todo-forward-category): Adapt to 1-based category numbering.
4673 Allow skipping over archived categories.
4674 (todo-backward-category): Derive from todo-forward-category.
4675 (todo-backward-item, todo-forward-item): Make noninteractive and
4676 delegate interactive part to new commands. Make sensitive to done items.
4677 (todo-categories): Make value an alist of category names and
4678 vectors of item counts.
4679 (todo-category-beg): Make a defconst.
4680 (todo-category-number): Use 1 instead of 0 as initial value.
4681 (todo-category-select): Make sensitive to overlays, optional item
4682 highlighting and done items.
4683 (todo-delete-item): Make sensitive to overlays and marked and done items.
4684 (todo-edit-item): Make sensitive to overlays and editing of
4685 date/time header optional. Add format checks.
4686 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
4687 no-op if point is not on an item. Advertise using todo-edit-quit.
4688 (todo-edit-mode): Make sensitive to new format, font-locking, and
4689 multiple todo files.
4690 (todo-insert-item, todo-insert-item-here): Derive from
4691 todo-basic-insert-item and extend functionality.
4692 (todo-item-end, todo-item-start): Make sensitive to done items.
4693 (todo-item-string): Don't return text properties. Restore point.
4694 (todo-jump-to-category): Make sensitive to multiple todo files and
4695 todo archives. Use extended category completion.
4696 (todo-lower-item, todo-raise-item): Rename to *-priority and
4697 derive from todo-set-item-priority.
4698 (todo-mode): Derive from special-mode. Make sensitive to new
4699 format, font-locking and multiple todo files. Make read-only.
4700 (todo-mode-map): Don't suppress digit keys, so they can supply
4701 prefix arguments. Add many new key bindings.
4702 (todo-prefix): Insert as an overlay instead of file text.
4703 Change semantics from diary date expression to purely visual mark.
4704 (todo-print): Rename to todo-print-buffer. Make buffer display
4705 features printable. Remove option to restrict number of items
4706 printed. Add option to print to file.
4707 (todo-print-function): Rename to todo-print-buffer-function.
4708 (todo-quit): Extend to handle exiting new todo modes.
4709 (todo-remove-item): Make sensitive to overlays.
4710 (todo-save): Extend to buffers of filtered items.
4711 (todo-show): Make sensitive to done items, multiple todo files and
4712 new todo modes. Offer to convert legacy todo file before creating
4713 first new todo file.
4714 (todo-show-priorities): Rename to todo-top-priorities.
4715 Change semantics of value 0.
4716 (todo-top-priorities): Rename to todo-filter-top-priorities,
4717 derive from todo-filter-items and extend functionality.
4718 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
4719 and extend functionality to other types of filtered items.
4720 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
4721 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
4722 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
4723 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
4724 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
4725 (todo-edit-mode-hook, todo-entry-prefix-function)
4726 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
4727 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
4728 (todo-initials, todo-insert-threshold, todo-item-string-start)
4729 (todo-line-string, todo-menu, todo-mode-hook)
4730 (todo-more-important-p, todo-previous-answer, todo-previous-line)
4731 (todo-print-priorities, todo-remove-separator)
4732 (todo-save-top-priorities-too, todo-string-count-lines)
4733 (todo-string-multiline-p, todo-time-string-format)
4734 (todo-tmp-buffer-name): Remove.
4735 (todo-add-file, todo-archive-done-item, todo-choose-archive)
4736 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
4737 (todo-edit-category-diary-inclusion)
4738 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
4739 (todo-edit-file, todo-edit-item-date-day)
4740 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
4741 (todo-edit-item-date-month, todo-edit-item-date-to-today)
4742 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
4743 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
4744 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
4745 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
4746 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
4747 (todo-filter-top-priorities-multifile, todo-find-archive)
4748 (todo-find-filtered-items-file, todo-go-to-source-item)
4749 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
4750 (todo-jump-to-archive-category, todo-lower-category)
4751 (todo-mark-category, todo-marked-item-p, todo-merge-category)
4752 (todo-move-category, todo-move-item, todo-next-button)
4753 (todo-next-item, todo-padded-string, todo-powerset)
4754 (todo-previous-button, todo-previous-item)
4755 (todo-print-buffer-to-file, todo-raise-category)
4756 (todo-rename-category, todo-repair-categories-sexp, todo-search)
4757 (todo-set-category-number, todo-set-item-priority)
4758 (todo-set-top-priorities-in-category)
4759 (todo-set-top-priorities-in-file, todo-show-categories-table)
4760 (todo-sort-categories-alphabetically-or-numerically)
4761 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
4762 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
4763 (todo-toggle-item-header, todo-toggle-item-highlighting)
4764 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
4765 (todo-toggle-view-done-items, todo-toggle-view-done-only)
4766 (todo-unarchive-items, todo-unmark-category): New commands.
4767 (todo-absolute-file-name, todo-add-to-buffer-list)
4768 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
4769 (todo-basic-insert-item, todo-category-completions)
4770 (todo-category-number, todo-category-string-matcher-1)
4771 (todo-category-string-matcher-2, todo-check-filtered-items-file)
4772 (todo-check-format, todo-clear-matches)
4773 (todo-comment-string-matcher, todo-convert-legacy-date-time)
4774 (todo-current-category, todo-date-string-matcher)
4775 (todo-define-insertion-command, todo-diary-expired-matcher)
4776 (todo-diary-goto-entry, todo-diary-item-p)
4777 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
4778 (todo-display-categories, todo-display-sorted, todo-done-item-p)
4779 (todo-done-item-section-p, todo-done-separator)
4780 (todo-done-string-matcher, todo-files, todo-filter-items)
4781 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
4782 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
4783 (todo-insert-category-line, todo-insert-item-from-calendar)
4784 (todo-insert-sort-button, todo-insert-with-overlays)
4785 (todo-insertion-command-name, todo-insertion-key-bindings)
4786 (todo-label-to-key, todo-longest-category-name-length)
4787 (todo-make-categories-list, todo-mode-external-set)
4788 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
4789 (todo-modes-set-3, todo-multiple-filter-files)
4790 (todo-nondiary-marker-matcher, todo-prefix-overlays)
4791 (todo-read-category, todo-read-date, todo-read-dayname)
4792 (todo-read-file-name, todo-read-time)
4793 (todo-reevaluate-category-completions-files-defcustom)
4794 (todo-reevaluate-default-file-defcustom)
4795 (todo-reevaluate-filelist-defcustoms)
4796 (todo-reevaluate-filter-files-defcustom)
4797 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
4798 (todo-reset-done-separator, todo-reset-done-separator-string)
4799 (todo-reset-done-string, todo-reset-global-current-todo-file)
4800 (todo-reset-highlight-item, todo-reset-nondiary-marker)
4801 (todo-reset-prefix, todo-set-categories)
4802 (todo-set-date-from-calendar, todo-set-show-current-file)
4803 (todo-set-top-priorities, todo-short-file-name)
4804 (todo-show-current-file, todo-sort, todo-time-string-matcher)
4805 (todo-total-item-counts, todo-update-buffer-list)
4806 (todo-update-categories-display, todo-update-categories-sexp)
4807 (todo-update-count, todo-validate-name, todo-y-or-n-p):
4808 New functions.
4809 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
4810 New major modes.
4811 (todo-categories, todo-display, todo-edit, todo-faces)
4812 (todo-filtered): New defgroups.
4813 (todo-archived-only, todo-button, todo-category-string, todo-date)
4814 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
4815 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
4816 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
4817 (todo-add-item-if-new-category, todo-always-add-time-string)
4818 (todo-categories-align, todo-categories-archived-label)
4819 (todo-categories-category-label, todo-categories-diary-label)
4820 (todo-categories-done-label, todo-categories-number-separator)
4821 (todo-categories-todo-label, todo-categories-totals-label)
4822 (todo-category-completions-files, todo-completion-ignore-case)
4823 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
4824 (todo-done-separator-string, todo-done-string)
4825 (todo-files-function, todo-filter-done-items, todo-filter-files)
4826 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
4827 (todo-initial-category, todo-initial-file, todo-item-mark)
4828 (todo-legacy-date-time-regexp, todo-mode-line-function)
4829 (todo-nondiary-marker, todo-number-prefix)
4830 (todo-print-buffer-function, todo-show-current-file)
4831 (todo-show-done-only, todo-show-first, todo-show-with-done)
4832 (todo-skip-archived-categories, todo-top-priorities-overrides)
4833 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
4834 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
4835 New defcustoms.
4836 (todo-category-done, todo-date-pattern, todo-date-string-start)
4837 (todo-diary-items-buffer, todo-done-string-start)
4838 (todo-filtered-items-buffer, todo-item-start)
4839 (todo-month-abbrev-array, todo-month-name-array)
4840 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
4841 (todo-top-priorities-buffer): New defconsts.
4842 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
4843 (todo-categories-with-marks, todo-category-string-face)
4844 (todo-comment-face, todo-comment-string, todo-current-todo-file)
4845 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
4846 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
4847 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
4848 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
4849 (todo-font-lock-keywords, todo-global-current-todo-file)
4850 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
4851 (todo-insertion-commands-args)
4852 (todo-insertion-commands-args-genlist)
4853 (todo-insertion-commands-names, todo-insertion-map)
4854 (todo-key-bindings-t, todo-key-bindings-t+a)
4855 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
4856 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
4857 (todo-nondiary-face, todo-print-buffer, todo-time-face)
4858 (todo-visited): New variables.
4859
4860 2013-06-21 Glenn Morris <rgm@gnu.org>
4861
4862 * play/cookie1.el (cookie-apropos): Add optional display argument.
4863 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
4864 (psychoanalyze-pinhead): Use cookie-doctor.
4865
4866 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
4867
4868 * emacs-lisp/package.el (tar-get-file-descriptor)
4869 (tar--extract): Declare.
4870
4871 2013-06-21 Eduard Wiebe <usenet@pusto.de>
4872
4873 Extend flymake's warning predicate to be a function (bug#14217).
4874 * progmodes/flymake.el (flymake-warning-predicate): New.
4875 (flymake-parse-line): Use it.
4876 (flymake-warning-re): Make obsolete alias to
4877 `flymake-warning-predicate'.
4878
4879 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
4880
4881 * emacs-lisp/package.el (package-alist): Include obsolete packages.
4882 (package-obsolete-list): Remove.
4883 (package-activate): Remove min-version argument. Add `force' argument.
4884 Adjust to new package-alist format.
4885 (package-mark-obsolete): Remove.
4886 (package-unpack): Force reload of the package's autoloads.
4887 (package-installed-p): Check builtins if the installed package is not
4888 recent enough.
4889 (package-initialize): Don't reset package-obsolete-list.
4890 Don't specify which package version to activate.
4891 (package-process-define-package, describe-package-1)
4892 (package-menu--generate): Adjust to new package-alist format.
4893
4894 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
4895
4896 * allout-widgets.el (allout-widgets-mode-off)
4897 (allout-widgets-mode-on, allout-widgets-pre-command-business)
4898 (allout-widgets-post-command-business)
4899 (allout-widgets-after-copy-or-kill-function)
4900 (allout-widgets-after-undo-function, allout-test-range-overlaps)
4901 (allout-decorate-item-and-context)
4902 (allout-graphics-modification-handler): Fix typos in docstrings.
4903 (allout-get-or-create-parent-widget): Use `looking-at-p'.
4904
4905 * cmuscheme.el (scheme-start-file): Doc fix.
4906 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
4907 (scheme-input-filter): Use `string-match-p'.
4908
4909 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
4910
4911 * dired-x.el: Use Dired consistently in docstrings.
4912
4913 * dired.el: Use Dired consistently in docstrings.
4914 (dired-readin, dired-mode): Use `setq-local'.
4915 (dired-switches-alist): Make defvar-local.
4916 (dired-buffers-for-dir): Use `zerop'.
4917 (dired-safe-switches-p, dired-switches-escape-p)
4918 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
4919 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
4920 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
4921 (dired-goto-next-nontrivial-file): Use `string-match-p'.
4922 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
4923 (dired-toggle-marks, dired-mark-files-containing-regexp)
4924 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
4925 (dired-flag-auto-save-files, dired-flag-backup-files):
4926 Use `looking-at-p'.
4927 (dired-mark-files-regexp, dired-build-subdir-alist):
4928 Use `string-match-p', `looking-at-p'.
4929
4930 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
4931 (direct-print-region-helper): Use `string-match-p'.
4932
4933 2013-06-21 Leo Liu <sdl.web@gmail.com>
4934
4935 * comint.el (comint-redirect-results-list-from-process):
4936 Fix infinite loop.
4937
4938 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
4939
4940 * net/eww.el (eww-update-header-line-format): Quote % characters.
4941
4942 2013-06-21 Glenn Morris <rgm@gnu.org>
4943
4944 * play/cookie1.el (cookie): New custom group.
4945 (cookie-file): New option.
4946 (cookie-check-file): New function.
4947 (cookie): Make it interactive. Make start and end messages optional.
4948 Interactively, display the result. Default to cookie-file.
4949 (cookie-insert): Default to cookie-file.
4950 (cookie-snarf): Make start and end messages optional.
4951 Default to cookie-file. Use with-temp-buffer.
4952 (cookie-read): Rename from read-cookie.
4953 Make start and end messages optional. Default to cookie-file.
4954 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
4955 Do not autoload it.
4956 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
4957 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
4958
4959 2013-06-21 Leo Liu <sdl.web@gmail.com>
4960
4961 * progmodes/octave.el (octave-mode): Backward compatibility fix.
4962
4963 2013-06-21 Glenn Morris <rgm@gnu.org>
4964
4965 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
4966
4967 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
4968 Daniel Hackney <dan@haxney.org>
4969
4970 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
4971 Consolidate the single-file vs tarball code.
4972 (package-desc-suffix): New function.
4973 (package-desc-full-name): Don't bother inlining it.
4974 (package-load-descriptor): Return the new package-desc.
4975 (package-mark-obsolete): Remove unused arg `package'.
4976 (package-unpack): Make it work for single files as well.
4977 Make it update package-alist.
4978 (package--make-autoloads-and-stuff): Rename from
4979 package--make-autoloads-and-compile. Don't compile any more.
4980 (package--compile): New function.
4981 (package-generate-description-file): New function, extracted from
4982 package-unpack-single.
4983 (package-unpack-single): Remove.
4984 (package--with-work-buffer): Add indentation and debugging info.
4985 (package-download-single): Remove.
4986 (package-install-from-archive): Rename from package-download-tar, make
4987 it take a pkg-desc, and make it work for single files as well.
4988 (package-download-transaction): Simplify.
4989 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
4990 external tar program.
4991 (package-install-from-buffer): Remove `pkg-desc' argument.
4992 Use package-tar-file-info for tar-mode buffers.
4993 (package-install-file): Simplify accordingly.
4994 (package-archive-base): Change to take a pkg-desc.
4995 * tar-mode.el (tar--check-descriptor): New function, extracted from
4996 tar-get-descriptor.
4997 (tar-get-descriptor): Use it.
4998 (tar-get-file-descriptor): New function.
4999 (tar--extract): New function, extracted from tar-extract.
5000 (tar--extract): Use it.
5001 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
5002 case the summary uses non-ascii. Adjust to new calling convention of
5003 package-tar-file-info.
5004
5005 2013-06-21 Leo Liu <sdl.web@gmail.com>
5006
5007 * comint.el (comint-redirect-results-list-from-process):
5008 Fix random delay. (Bug#14681)
5009
5010 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5011
5012 * profiler.el (profiler-format-number): Use log, not log10.
5013
5014 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5015
5016 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
5017
5018 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5019
5020 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
5021 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
5022 yet available.
5023 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
5024 (AUTOGENEL): ... here.
5025 * emacs-lisp/cl-macs.el (cl--sublis): New function.
5026 (cl--defsubst-expand): Use it.
5027
5028 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
5029
5030 * subr.el (log10): Move here from C code, and declare as obsolete.
5031 All uses of (log10 X) replaced with (log X 10).
5032
5033 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5034
5035 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
5036 Declare with `defvar-local'.
5037 (tabulated-list-use-header-line, tabulated-list-entries)
5038 (tabulated-list-padding, tabulated-list-printer)
5039 (tabulated-list-sort-key): Declare with `defvar-local'.
5040 (tabulated-list-init-header, tabulated-list-print-fake-header):
5041 Use `setq-local'.
5042
5043 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
5044
5045 * arc-mode.el (archive-mode): Add `archive-write-file' to
5046 `write-contents-functions' also for remote files. (Bug#14652)
5047
5048 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5049
5050 * cus-edit.el (custom-commands): Fix typos.
5051 (custom-display): Fix tooltip text.
5052 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
5053 Fix typos in docstrings.
5054 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
5055 (custom-unlispify-menu-entry, custom-magic-value-create)
5056 (custom-add-see-also, custom-group-value-create): Use ?\s.
5057 (custom-guess-type, customize-apropos, editable-field)
5058 (custom-face-value-create): Use `string-match-p'.
5059 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
5060
5061 * custom.el (custom-load-symbol): Use `string-match-p'.
5062
5063 * ansi-color.el: Convert to lexical binding.
5064 (ansi-colors): Fix URL.
5065 (ansi-color-context, ansi-color-context-region): Use defvar-local.
5066 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
5067 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
5068
5069 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5070
5071 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
5072
5073 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
5074
5075 2013-06-19 Tom Tromey <tromey@redhat.com>
5076
5077 * net/eww.el (eww-top-url): Remove.
5078 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
5079 (eww-render): Set new variables. Don't set eww-top-url.
5080 (eww-handle-link): Handle "prev", "home", and "contents".
5081 Downcase the rel text.
5082 (eww-top-url): Choose best top URL.
5083
5084 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5085
5086 * net/eww.el: Rewrite to implement form elements "by hand" instead of
5087 relying in widget.el. Using widget.el leads to too many
5088 user interface inconsistencies.
5089 (eww-self-insert): Implement entering commands in text fields.
5090 (eww-process-text-input): New function to make text input field editing
5091 work.
5092 (eww-submit): Rewrite to use the new-style form methods.
5093 (eww-select-display): Display the correct selected item.
5094 (eww-change-select): Implement changing the select value.
5095 (eww-toggle-checkbox): Implement radio/checkboxes.
5096 (eww-update-field): Fix compilation error.
5097 (eww-tag-textarea): Implement <textarea>.
5098
5099 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
5100 we don't shadow mode-specific bindings.
5101
5102 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
5103 nothing to push.
5104
5105 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
5106
5107 2013-06-19 Glenn Morris <rgm@gnu.org>
5108
5109 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
5110
5111 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5112
5113 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
5114 not needed.
5115
5116 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
5117
5118 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5119
5120 * net/browse-url.el (browse-url-browser-function):
5121 `eww-browse-url' has the right calling signature, `eww' does not.
5122
5123 2013-06-19 Glenn Morris <rgm@gnu.org>
5124
5125 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
5126 Only eval autoloaded macros.
5127 (byte-compile-autoload): Only give the macro warning for macros.
5128
5129 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
5130 (ps-underlined-faces): Declare.
5131
5132 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
5133 (speedbar-add-supported-extension): Declare.
5134
5135 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
5136 Don't include a date stamp in the header of the generated file;
5137 it leads to needless differences between output files.
5138
5139 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5140
5141 * net/secrets.el (secrets-struct-secret-content-type):
5142 Replace check of introspection data by a test call of "CreateItem".
5143 Some servers do not offer introspection.
5144
5145 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
5146
5147 * electric.el (electric-pair-mode): Improve interaction with
5148 electric-layout-mode.
5149 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
5150 (electric-pair-syntax): Use text-mode-syntax-table in comments
5151 and strings.
5152 (electric-pair--insert): New function.
5153 (electric-pair-post-self-insert-function): Use it and
5154 electric--after-char-pos.
5155
5156 2013-06-19 Leo Liu <sdl.web@gmail.com>
5157
5158 * progmodes/octave.el (octave-help): Fix regexp.
5159
5160 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
5161
5162 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
5163 (shr-table-horizontal-line): Allow nil as a value, and change the
5164 default.
5165 (shr-insert-table-ruler): Respect the nil value.
5166
5167 2013-06-18 Tom Tromey <tromey@barimba>
5168
5169 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5170 New defvars.
5171 (eww-open-file): New defun.
5172 (eww-render): Initialize new variables.
5173 (eww-display-html): Handle "link" and "a".
5174 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
5175 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
5176 (eww-back-url): Rename from eww-previous-url.
5177 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5178 New defuns.
5179
5180 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
5181
5182 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
5183 Distinguish ternary operator tokens from slash symbol and slash
5184 char literal.
5185
5186 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5187
5188 Convert symbol prettification into minor mode and global minor mode.
5189
5190 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
5191 `prog-prettify-symbols', and make a local defvar instead of defcustom.
5192 (prettify-symbols--keywords): Rename from
5193 `prog-prettify-symbols-alist' and make a local defvar.
5194 (prettify-symbols--compose-symbol): Rename from
5195 `prog--prettify-font-lock-compose-symbol'.
5196 (prettify-symbols--make-keywords): Rename from
5197 `prog-prettify-font-lock-symbols-keywords' and simplify.
5198 (prog-prettify-install): Remove.
5199 (prettify-symbols-mode): New minor mode, based on
5200 `prog-prettify-install'.
5201 (turn-on-prettify-symbols-mode): New function.
5202 (global-prettify-symbols-mode): New globalized minor mode.
5203
5204 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5205 * progmodes/cfengine.el (cfengine3-mode):
5206 * progmodes/perl-mode.el (perl-mode): Don't call
5207 `prog-prettify-install'; set `prettify-symbols-alist' instead.
5208
5209 2013-06-18 Juri Linkov <juri@jurta.org>
5210
5211 * files-x.el (modify-file-local-variable-message): New function.
5212 (modify-file-local-variable)
5213 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
5214 and call `modify-file-local-variable-message' when it's non-nil.
5215 (add-file-local-variable, delete-file-local-variable)
5216 (add-file-local-variable-prop-line)
5217 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
5218 and use it. (Bug#9820)
5219
5220 2013-06-18 Juri Linkov <juri@jurta.org>
5221
5222 * emulation/vi.el (vi-shell-op):
5223 * emulation/vip.el (vip-execute-com, ex-command):
5224 * emulation/viper-cmd.el (viper-exec-bang):
5225 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
5226 the call of `shell-command-on-region'. (Bug#14637)
5227
5228 * simple.el (shell-command-on-region): Doc fix.
5229
5230 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5231
5232 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
5233 (bug#14633).
5234
5235 2013-06-18 Glenn Morris <rgm@gnu.org>
5236
5237 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
5238
5239 * newcomment.el (comment-search-forward, comment-search-backward):
5240 Doc fix. (Bug#14376)
5241
5242 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5243
5244 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
5245 (buffer-face-mode-invoke): Doc fix.
5246
5247 2013-06-18 Matthias Meulien <orontee@gmail.com>
5248
5249 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
5250 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
5251
5252 2013-06-18 Glenn Morris <rgm@gnu.org>
5253
5254 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
5255 Replace obsolete function generic-make-keywords with its expansion.
5256
5257 * progmodes/python.el (ffap-alist): Declare.
5258
5259 * textmodes/reftex.el (bibtex-mode-map): Declare.
5260
5261 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5262
5263 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
5264 (package-unpack, package-unpack-single): Return the pkg-dir.
5265 (package-download-transaction): Use it to update package-alist.
5266
5267 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5268
5269 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
5270 possible choice.
5271
5272 2013-06-17 Juri Linkov <juri@jurta.org>
5273
5274 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
5275
5276 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5277
5278 * emacs-lisp/package.el (package-load-descriptor):
5279 Remove `with-syntax-table' call, `read' doesn't need it.
5280 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
5281
5282 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
5283
5284 * startup.el (command-line): Expand package name returned by
5285 `package--description-file' (bug#14639).
5286
5287 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5288
5289 * emacs-lisp/package.el (package-load-descriptor): Do not call
5290 `emacs-lisp-mode', just use its syntax table.
5291
5292 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
5293
5294 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
5295 `font-lock-extra-managed-props' if any prettifying keyword is added.
5296 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
5297 (prog-mode): Use `setq-local'.
5298
5299 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5300
5301 * international/characters.el (standard-case-table): Set syntax of ?»
5302 and ?« to punctuation.
5303
5304 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
5305
5306 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
5307 Save relevant match data before calling `syntax-ppss' (bug#14595).
5308
5309 2013-06-15 Juri Linkov <juri@jurta.org>
5310
5311 * files-x.el (modify-file-local-variable-prop-line): Add local
5312 variables to the end of the existing comment on the first line.
5313 Use `file-auto-mode-skip' to skip interpreter magic line,
5314 and also skip XML declaration.
5315
5316 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5317
5318 * startup.el (package--builtin-versions): New var.
5319 (package-subdirectory-regexp): Remove.
5320 (package--description-file): Hard code its value instead.
5321
5322 * emacs-lisp/package.el: Don't activate packages older than builtin.
5323 (package-obsolete-list): Rename from package-obsolete-alist, and make
5324 it into a simple list of package-desc.
5325 (package-strip-version): Remove.
5326 (package-built-in-p): Use package--builtin-versions.
5327 (package-mark-obsolete): Simplify.
5328 (package-process-define-package): Mark it obsolete if older than the
5329 builtin version.
5330 (package-handle-response): Use line-end-position.
5331 (package-read-archive-contents, package--download-one-archive):
5332 Simplify.
5333 (package--add-to-archive-contents): Skip if older than the builtin or
5334 installed version.
5335 (package-menu-describe-package): Fix last change.
5336 (package-list-unversioned): New var.
5337 (package-menu--generate): Use it.
5338
5339 * emacs-lisp/autoload.el: Manage package--builtin-versions.
5340 (autoload--insert-text, autoload--insert-cookie-text): New functions.
5341 (autoload-builtin-package-versions): New variable.
5342 (autoload-generate-file-autoloads): Use them.
5343 Remove the list of autoloaded functions/macros from the
5344 (autoload...) comments.
5345
5346 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
5347
5348 2013-06-15 Eli Zaretskii <eliz@gnu.org>
5349
5350 * simple.el (line-move-partial): Don't jump to the next screen
5351 line as soon as it becomes visible. Instead, continue enlarging
5352 the vscroll until the portion of a tall screen line that's left on
5353 display is about the height of the frame's default font.
5354 (Bug#14567)
5355
5356 2013-06-15 Glenn Morris <rgm@gnu.org>
5357
5358 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
5359 compilation-error-regexp-alist void, or local while let-bound.
5360
5361 * progmodes/make-mode.el (makefile-mode-syntax-table):
5362 Treat "=" as punctuation. (Bug#14614)
5363
5364 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
5365
5366 * help-fns.el (describe-variable):
5367 Add extra line for permanent-local variables.
5368
5369 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
5370
5371 * progmodes/scheme.el (scheme-font-lock-keywords-2):
5372 Add export, import, library. (Bug#9164)
5373 (library): Set indent function.
5374
5375 2013-06-14 Glenn Morris <rgm@gnu.org>
5376
5377 * term/xterm.el (xterm--query):
5378 Stop after first matching handler. (Bug#14615)
5379
5380 2013-06-14 Ivan Kanis <ivan@kanis.fr>
5381
5382 Add support for dired in saveplace.
5383 * dired.el (dired-initial-position-hook): New variable.
5384 (dired-initial-position): Call hook to place cursor position.
5385 * saveplace.el (save-place-to-alist): Add dired position.
5386 (save-place-dired-hook): New function.
5387
5388 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
5389
5390 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
5391 through a symbol rather than letrec.
5392
5393 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
5394 (package-desc): Add `dir' field.
5395 (package-desc-full-name): New function.
5396 (package-load-descriptor): Combine the two arguments. Don't use `load'.
5397 (package-maybe-load-descriptor): Remove.
5398 (package-load-all-descriptors): Just call package-load-descriptor.
5399 (package--disabled-p): New function.
5400 (package-desc-vers, package-desc-doc): Remove aliases.
5401 (package--dir): Remove function.
5402 (package-activate): Check if a package is disabled.
5403 (package-process-define-package): New function, extracted from
5404 define-package.
5405 (define-package): Turn into a place holder.
5406 (package-unpack-single, package-tar-file-info):
5407 Use package--description-file.
5408 (package-compute-transaction): Use package--disabled-p.
5409 (package-download-transaction): Don't call
5410 package-maybe-load-descriptor since they're all loaded anyway.
5411 (package-install): Change argument to be a pkg-desc.
5412 (package-delete): Use a single pkg-desc argument.
5413 (describe-package-1): Use package-desc-dir instead of package--dir.
5414 Use package-desc property instead of package-symbol.
5415 (package-install-button-action): Adjust accordingly.
5416 (package--push): Rewrite.
5417 (package-menu--print-info): Adjust accordingly. Change the ID format
5418 to be a pkg-desc.
5419 (package-menu-describe-package, package-menu-get-status)
5420 (package-menu--find-upgrades, package-menu-mark-upgrades)
5421 (package-menu-execute, package-menu--name-predicate):
5422 Adjust accordingly.
5423 * startup.el (package--description-file): New function.
5424 (command-line): Use it.
5425 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5426 Use package-desc-version.
5427
5428 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
5429 (byte-compile-preprocess): Use it.
5430 (byte-compile-file-form-defalias): Try a bit harder to use macros we
5431 can't quite recognize.
5432 (byte-compile-add-to-list): Remove.
5433 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
5434 (cconv-closure-convert): Add assertion.
5435
5436 * emacs-lisp/map-ynp.el: Use lexical-binding.
5437 (map-y-or-n-p): Remove unused vars `tail' and `object'.
5438 Factor out some repeated code.
5439
5440 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5441
5442 * subr.el (with-eval-after-load): New macro.
5443 (eval-after-load): Allow form to be a function.
5444 take advantage of lexical-binding.
5445 (do-after-load-evaluation): Use dolist and adjust to new format.
5446 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
5447
5448 2013-06-13 Juri Linkov <juri@jurta.org>
5449
5450 * replace.el (perform-replace): Display "symbol " and other search
5451 modes from `isearch-message-prefix' in the *Help* buffer.
5452
5453 * isearch.el (isearch-query-replace): Add " symbol" and other
5454 possible search modes from `isearch-message-prefix' to the prompt.
5455 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
5456 when reading a regexp to collect.
5457
5458 2013-06-13 Juri Linkov <juri@jurta.org>
5459
5460 * isearch.el (word-search-regexp): Match whitespace if the search
5461 string begins or ends in whitespace. The LAX arg is applied to
5462 both ends of the search string. Use `regexp-quote' and explicit
5463 \< and \> instead of \b. Use \` and \' instead of ^ and $.
5464 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
5465 boundaries are replaced with symbol boundaries, and characters
5466 between symbols match non-word non-symbol syntax. (Bug#14602)
5467
5468 2013-06-13 Juri Linkov <juri@jurta.org>
5469
5470 * isearch.el (isearch-del-char): Don't exceed the length of
5471 `isearch-string' by the prefix arg. (Bug#14563)
5472
5473 2013-06-13 Juri Linkov <juri@jurta.org>
5474
5475 * isearch.el (isearch-yank-word, isearch-yank-line)
5476 (isearch-char-by-name, isearch-quote-char)
5477 (isearch-printing-char, isearch-process-search-char):
5478 Add optional count prefix arg. (Bug#14563)
5479
5480 * international/isearch-x.el
5481 (isearch-process-search-multibyte-characters):
5482 Add optional count prefix arg.
5483
5484 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5485
5486 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
5487 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
5488 lexical-binding.
5489
5490 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
5491
5492 * subr.el (set-temporary-overlay-map): Add on-exit argument.
5493
5494 2013-06-13 Glenn Morris <rgm@gnu.org>
5495
5496 * startup.el (tty-handle-args):
5497 Don't just discard "--" and anything after. (Bug#14608)
5498
5499 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
5500
5501 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
5502
5503 Implement changes in Secret Service API. Make it backward compatible.
5504 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
5505 (secrets-create-item): Use it. Prefix properties with interface.
5506
5507 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
5508
5509 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
5510 (term-emulate-terminal): Respect term-suppress-hard-newline.
5511
5512 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
5513
5514 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
5515 Only remove a `thumb-file' overlay. (Bug#14548)
5516
5517 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
5518
5519 * mail/reporter.el (reporter-submit-bug-report):
5520 Handle missing package-name. (Bug#14600)
5521
5522 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5523
5524 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
5525 (reftex-citation-prompt, reftex-default-bibliography)
5526 (reftex-bib-or-thebib, reftex-get-bibfile-list)
5527 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
5528 (reftex-bib-sort-author, reftex-bib-sort-year)
5529 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
5530 (reftex-extract-bib-entries-from-thebibliography)
5531 (reftex-get-bibkey-default, reftex-get-bib-names)
5532 (reftex-parse-bibtex-entry, reftex-get-bib-field)
5533 (reftex-format-bib-entry, reftex-parse-bibitem)
5534 (reftex-format-bibitem, reftex-do-citation)
5535 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
5536 (reftex-restrict-bib-matches, reftex-extract-bib-file)
5537 (reftex-insert-bib-matches, reftex-format-citation)
5538 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
5539 (reftex-create-bibtex-file): Add docstrings, mostly by converting
5540 existing comments into docstrings.
5541
5542 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
5543
5544 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
5545
5546 2013-06-12 Andreas Schwab <schwab@suse.de>
5547
5548 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
5549 for auto-save files.
5550
5551 2013-06-12 Glenn Morris <rgm@gnu.org>
5552
5553 * ido.el (ido-delete-ignored-files): Remove.
5554 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
5555 Go back to calling ido-ignore-item-p directly.
5556
5557 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
5558
5559 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
5560
5561 * ido.el (ido-delete-ignored-files): New function,
5562 split from ido-make-file-list-1.
5563 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
5564 (ido-make-file-list-1): Use ido-delete-ignored-files.
5565
5566 2013-06-12 Leo Liu <sdl.web@gmail.com>
5567
5568 * progmodes/octave.el (inferior-octave-startup)
5569 (inferior-octave-completion-table)
5570 (inferior-octave-track-window-width-change)
5571 (octave-eldoc-function-signatures, octave-help)
5572 (octave-find-definition): Use single quoted strings.
5573 (inferior-octave-startup-args): Change default value.
5574 (inferior-octave-startup): Do not hard code "-i" and
5575 "--no-line-editing".
5576 (inferior-octave-resync-dirs): Add optional arg NOERROR.
5577 (inferior-octave-directory-tracker): Use it.
5578 (octave-goto-function-definition): Robustify.
5579 (octave-help): Support highlighting operators in 'See also'.
5580 (octave-find-definition): Find subfunctions only in Octave mode.
5581
5582 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
5583
5584 * help-fns.el (help-fns--compiler-macro): If the handler function is
5585 named, then put a link to it.
5586 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
5587 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
5588 (cl-typep): Use it.
5589 (cl-eval-when): Simplify debug spec.
5590 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
5591 compiler-macro function instead of setting `compiler-macro-file'.
5592
5593 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
5594
5595 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
5596 * vc/vc-hooks.el (vc-stay-local): Doc fix.
5597
5598 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
5599 Daniel Hackney <dan@haxney.org>
5600
5601 First part of Daniel Hackney's patch to package.el.
5602 * emacs-lisp/package.el: Use defstruct.
5603 (package-desc): New, main struct.
5604 (package--bi-desc, package--ac-desc): New structs, used to describe the
5605 format in external files.
5606 (package-desc-vers): Replace with package-desc-version accessor.
5607 (package-desc-doc): Replace with package-desc-summary accessor.
5608 (package-activate-1): Remove `package' arg since the pkg-vec now
5609 includes the name.
5610 (define-package): Use package-desc-from-define.
5611 (package-unpack-single): Change file-name arg to be a symbol.
5612 (package--add-to-archive-contents): Use package-desc-create and new
5613 accessor functions to package--ac-desc.
5614 (package-buffer-info, package-tar-file-info): Return a package-desc.
5615 (package-install-from-buffer): Remove `type' argument. Change pkg-info
5616 arg to be a package-desc.
5617 (package-install-file): Adjust accordingly. Use \' to match EOS.
5618 (package--from-builtin): New function.
5619 (describe-package-1, package-menu--generate): Use it.
5620 (package--make-autoloads-and-compile): Change name arg to be a symbol.
5621 (package-generate-autoloads): Idem and return the name of the file.
5622 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5623 Change pkg-info arg to be a package-desc.
5624 Use package-make-ac-desc.
5625 (package-upload-file): Use \' to match EOS.
5626 * finder.el (finder-compile-keywords): Use package-make-builtin.
5627
5628 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5629
5630 * vc/vc.el (vc-deduce-fileset): Change error message.
5631 (vc-read-backend): New function.
5632 (vc-next-action): Use it.
5633
5634 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
5635
5636 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
5637 (prolog-font-lock-keywords): Use regexp-opt instead.
5638 Don't manually highlight strings.
5639 (prolog-mode-variables): Simplify comment-start-skip.
5640 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
5641
5642 * emacs-lisp/generic.el (generic--normalise-comments)
5643 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
5644 (generic-mode-set-comments): Use them.
5645 (generic-bracket-support): Use setq-local.
5646 (generic-make-keywords-list): Declare obsolete.
5647
5648 2013-06-11 Glenn Morris <rgm@gnu.org>
5649
5650 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5651 Prettify after setting font-lock-defaults. (Bug#14574)
5652
5653 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
5654
5655 * replace.el (query-replace, occur-read-regexp-defaults-function)
5656 (replace-search):
5657 * subr.el (declare-function, number-sequence, local-set-key)
5658 (substitute-key-definition, locate-user-emacs-file)
5659 (with-silent-modifications, split-string, eval-after-load):
5660 Fix typos, remove unneeded backslashes and reflow some docstrings.
5661
5662 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5663
5664 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
5665 default for Elisp files.
5666
5667 2013-06-11 Glenn Morris <rgm@gnu.org>
5668
5669 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
5670 although define-derived-mode was doing this anyway. (Bug#14583)
5671
5672 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
5673
5674 * allout.el (allout-encryption-plaintext-sanitization-regexps):
5675 Fix make-variable-buffer-local call to refer to the correct variable.
5676
5677 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
5678
5679 * eshell/em-term.el (eshell-visual-commands)
5680 (eshell-visual-subcommands, eshell-visual-options):
5681 Add summary line to docstrings. Add cross-references.
5682
5683 2013-06-10 Glenn Morris <rgm@gnu.org>
5684
5685 * epa.el (epa-read-file-name): New function. (Bug#14510)
5686 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
5687
5688 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
5689
5690 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
5691 output redirection to be ignored with visual commands.
5692
5693 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
5694
5695 * eshell/em-term.el (eshell-visual-command-p): New function.
5696 (eshell-term-initialize): Move long lambda to separate function
5697 eshell-visual-command-p.
5698 * eshell/em-dirs.el (eshell-dirs-initialise):
5699 * eshell/em-script.el (eshell-script-initialize):
5700 Add missing #' to lambda.
5701
5702 2013-06-08 Leo Liu <sdl.web@gmail.com>
5703
5704 * progmodes/octave.el (octave-add-log-current-defun): New function.
5705 (octave-mode): Set add-log-current-defun-function.
5706 (octave-goto-function-definition): Do not move point if not found.
5707 (octave-find-definition): Enhance to try subfunctions first.
5708
5709 2013-06-08 Glenn Morris <rgm@gnu.org>
5710
5711 * emacs-lisp/bytecomp.el (byte-compile-char-before)
5712 (byte-compile-backward-char, byte-compile-backward-word):
5713 Improve previous change, to handle non-explicit nil.
5714
5715 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
5716
5717 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
5718 (smie--opener/closer-at-point): New function.
5719 (smie--matching-block-data): Use it. Don't match from right after an
5720 opener or right before a closer. Obey smie-blink-matching-inners.
5721 Don't signal a mismatch for repeated inners like "switch..case..case".
5722
5723 2013-06-07 Leo Liu <sdl.web@gmail.com>
5724
5725 * progmodes/octave.el (octave-mode): Set comment-use-global-state
5726 to t. (Bug#14303)
5727 (octave-function-header-regexp): Fix. (Bug#14570)
5728 (octave-help-mode-finish-hook, octave-help-mode-finish):
5729 Remove. Just use temp-buffer-show-hook.
5730
5731 * newcomment.el (comment-search-backward): Revert last change.
5732 (Bug#14434)
5733
5734 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
5735
5736 2013-06-07 Eli Zaretskii <eliz@gnu.org>
5737
5738 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
5739 through xargs, to avoid failure due to MS-Windows limitations on
5740 command-line length.
5741
5742 2013-06-06 Glenn Morris <rgm@gnu.org>
5743
5744 * font-lock.el (lisp-font-lock-keywords-2):
5745 Treat user-error like error.
5746
5747 * emacs-lisp/bytecomp.el (byte-compile-char-before)
5748 (byte-compile-backward-char, byte-compile-backward-word):
5749 Handle explicit nil arguments. (Bug#14565)
5750
5751 2013-06-05 Alan Mackenzie <acm@muc.de>
5752
5753 * isearch.el (isearch-allow-prefix): New user option.
5754 (isearch-other-meta-char): Don't exit isearch when a prefix
5755 argument is typed whilst `isearch-allow-prefix' is non-nil.
5756 (Bug#9706)
5757
5758 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5759
5760 * autorevert.el (auto-revert-notify-handler): Use memq.
5761 Hide assertion failure.
5762
5763 * skeleton.el: Use cl-lib.
5764 (skeleton-further-elements): Use defvar-local.
5765 (skeleton-insert): Use cl-progv.
5766
5767 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
5768
5769 * progmodes/prog-mode.el (prog-prettify-symbols)
5770 (prog-prettify-install): Update docstrings.
5771
5772 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5773
5774 * simple.el: Move all the prog-mode code to prog-mode.el.
5775 * progmodes/prog-mode.el: New file.
5776 * loadup.el: Add prog-mode.el.
5777
5778 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
5779
5780 * simple.el (prog-prettify-symbols): Add version.
5781 (prog-prettify-install): Add convenience function to prettify symbols.
5782
5783 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
5784 (perl--augmented-font-lock-keywords-1)
5785 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
5786 variables and use it.
5787
5788 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
5789 (cfengine3-mode): Remove unneeded variable and use it.
5790
5791 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
5792 (lisp--augmented-font-lock-keywords-1)
5793 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
5794 Remove unneeded variables and use it.
5795
5796 2013-06-05 João Távora <joaotavora@gmail.com>
5797
5798 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
5799 to point when opening the connection. (Bug#14380)
5800
5801 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5802
5803 * subr.el (load-history-regexp, load-history-filename-element)
5804 (eval-after-load, after-load-functions, do-after-load-evaluation)
5805 (eval-next-after-load, display-delayed-warnings)
5806 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
5807 definition of save-match-data.
5808 (overriding-local-map): Remove accidental obsolescence declaration.
5809
5810 * emacs-lisp/edebug.el (edebug-result): Move before first use.
5811
5812 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
5813
5814 Generalize symbol prettify support to prog-mode and implement it
5815 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
5816 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
5817 (prog--prettify-font-lock-compose-symbol)
5818 (prog-prettify-font-lock-symbols-keywords): New variables and
5819 functions to support symbol prettification.
5820 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
5821 (lisp--augmented-font-lock-keywords-1)
5822 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
5823 (lisp--prettify-symbols-alist): Implement prettify of lambda.
5824 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
5825 (cfengine3--prettify-symbols-alist, cfengine3-mode):
5826 Implement prettify of -> => :: strings.
5827 * progmodes/perl-mode.el (perl-prettify-symbols)
5828 (perl--font-lock-compose-symbol)
5829 (perl--font-lock-symbols-keywords): Move to prog-mode.
5830 (perl--prettify-symbols-alist): Prettify -> => :: strings.
5831 (perl-font-lock-keywords-1)
5832 (perl-font-lock-keywords-2): Remove explicit prettify support.
5833 (perl--augmented-font-lock-keywords)
5834 (perl--augmented-font-lock-keywords-1)
5835 (perl--augmented-font-lock-keywords-2, perl-mode):
5836 Implement prettify support.
5837
5838 2013-06-05 Leo Liu <sdl.web@gmail.com>
5839
5840 Re-implement smie matching block highlight using
5841 show-paren-data-function. (Bug#14395)
5842 * emacs-lisp/smie.el (smie-matching-block-highlight)
5843 (smie--highlight-matching-block-overlay)
5844 (smie--highlight-matching-block-lastpos)
5845 (smie-highlight-matching-block)
5846 (smie-highlight-matching-block-mode): Remove.
5847 (smie--matching-block-data-cache): New variable.
5848 (smie--matching-block-data): New function.
5849 (smie-setup): Use smie--matching-block-data for
5850 show-paren-data-function.
5851
5852 * progmodes/octave.el (octave-mode-menu): Fix.
5853 (octave-find-definition): Skip garbage lines.
5854
5855 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5856
5857 Fix compilation error with simultaneous dynamic+lexical scoping.
5858 Add warning when a defvar appears after the first let-binding.
5859 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
5860 (byte-compile-close-variables): Initialize it.
5861 (byte-compile--declare-var): New function.
5862 (byte-compile-file-form-defvar)
5863 (byte-compile-file-form-define-abbrev-table)
5864 (byte-compile-file-form-custom-declare-variable): Use it.
5865 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
5866 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
5867 (byte-compile-bind): Handle dynamic bindings that shadow
5868 lexical bindings.
5869 (byte-compile-unbind): Make arg non-optional.
5870 (byte-compile-let): Simplify.
5871 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
5872 (cconv--analyse-function, cconv-analyse-form): Populate it.
5873 Protect byte-compile-bound-variables to limit the scope of defvars.
5874 (cconv-analyse-form): Add missing rule for (defvar <foo>).
5875 Remove unneeded rule for `declare'.
5876
5877 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
5878 so as to avoid depending on cl-adjoin at run-time.
5879 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
5880
5881 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
5882 (macroexp--warn-and-return): Use it.
5883
5884 2013-06-05 Leo Liu <sdl.web@gmail.com>
5885
5886 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
5887
5888 2013-06-04 Leo Liu <sdl.web@gmail.com>
5889
5890 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
5891 (compilation-auto-jump): Suppress the "Mark set" message to give
5892 way to exit message.
5893
5894 2013-06-04 Alan Mackenzie <acm@muc.de>
5895
5896 Remove faulty optimisation from indentation calculation.
5897 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
5898 search limit based on 2000 characters back from indent-point.
5899
5900 2013-06-03 Tassilo Horn <tsdh@gnu.org>
5901
5902 * eshell/em-term.el (cl-lib): Require `cl-lib'.
5903
5904 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
5905
5906 * emacs-lisp/lisp.el: Use lexical-binding.
5907 (lisp--local-variables-1, lisp--local-variables): New functions.
5908 (lisp--local-variables-completion-table): New var.
5909 (lisp-completion-at-point): Use it complete let-bound vars.
5910
5911 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
5912 eagerly (bug#14422).
5913
5914 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
5915
5916 * autorevert.el (auto-revert-notify-enabled)
5917 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
5918 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
5919 (auto-revert-notify-handler): Handle also gfilenotify.
5920
5921 * subr.el (file-notify-handle-event): New defun. Replacing ...
5922 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
5923 Remove.
5924
5925 2013-06-03 Juri Linkov <juri@jurta.org>
5926
5927 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
5928 `M-s h .'. (Bug#14427)
5929
5930 * hi-lock.el (highlight-symbol-at-point): New alias for the new
5931 command `hi-lock-face-symbol-at-point'.
5932 (hi-lock-face-symbol-at-point): New command.
5933 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
5934 (hi-lock-menu): Add `highlight-symbol-at-point'.
5935 (hi-lock-mode): Doc fix.
5936
5937 * isearch.el (isearch-forward-symbol-at-point): New command.
5938 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
5939 (isearch-highlight-regexp): Add a regexp which matches
5940 words/symbols for word/symbol mode.
5941
5942 * subr.el (find-tag-default-bounds): New function with the body
5943 mostly moved from `find-tag-default'.
5944 (find-tag-default): Move most code to `find-tag-default-bounds',
5945 call it and apply `buffer-substring-no-properties' afterwards.
5946
5947 2013-06-03 Tassilo Horn <tsdh@gnu.org>
5948
5949 * eshell/em-term.el (eshell-term-initialize):
5950 Use `cl-intersection' rather than `intersection'.
5951
5952 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
5953
5954 * vc/log-view.el: Doc fix.
5955 (log-view-mode-map): Copy keymap from `special-mode-map'.
5956
5957 2013-06-02 Eric Ludlam <zappo@gnu.org>
5958
5959 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
5960 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
5961 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
5962 (eieio-unbound, eieio-default-superclass)
5963 (eieio--define-field-accessors, method-static, method-before)
5964 (method-primary, method-after, method-num-lists)
5965 (method-generic-before, method-generic-primary)
5966 (method-generic-after, method-num-slots)
5967 (eieio-specialized-key-to-generic-key)
5968 (eieio--check-type, class-v, class-p)
5969 (eieio-class-name, define-obsolete-function-alias)
5970 (eieio-class-parents-fast, eieio-class-children-fast)
5971 (same-class-fast-p, class-constructor, generic-p)
5972 (generic-primary-only-p, generic-primary-only-one-p)
5973 (class-option-assoc, class-option, eieio-object-p)
5974 (class-abstract-p, class-method-invocation-order)
5975 (eieio-defclass-autoload-map, eieio-defclass-autoload)
5976 (eieio-class-un-autoload, eieio-defclass)
5977 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
5978 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
5979 (eieio--defgeneric-init-form, eieio-defgeneric-form)
5980 (eieio-defgeneric-reset-generic-form)
5981 (eieio-defgeneric-form-primary-only)
5982 (eieio-defgeneric-reset-generic-form-primary-only)
5983 (eieio-defgeneric-form-primary-only-one)
5984 (eieio-defgeneric-reset-generic-form-primary-only-one)
5985 (eieio-unbind-method-implementations)
5986 (eieio--defmethod, eieio--typep)
5987 (eieio-perform-slot-validation, eieio-validate-slot-value)
5988 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
5989 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
5990 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
5991 (eieio-slot-name-index, eieio-class-slot-name-index)
5992 (eieio-set-defaults, eieio-initarg-to-attribute)
5993 (eieio-attribute-to-initarg, eieio-c3-candidate)
5994 (eieio-c3-merge-lists, eieio-class-precedence-c3)
5995 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
5996 (eieio-class-precedence-list, eieio-generic-call-methodname)
5997 (eieio-generic-call-arglst, eieio-generic-call-key)
5998 (eieio-generic-call-next-method-list)
5999 (eieio-pre-method-execution-functions, eieio-generic-call)
6000 (eieio-generic-call-primary-only, eieiomt-method-list)
6001 (eieiomt-optimizing-obarray, eieiomt-install)
6002 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
6003 (eieio-generic-form, eieio-defmethod, make-obsolete)
6004 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
6005 (defclass): Remove `eval-and-compile' from macro.
6006 (call-next-method, shared-initialize): Instead of using
6007 `scoped-class' variable, use new eieio--scoped-class, and
6008 eieio--with-scoped-class.
6009 (initialize-instance): Rename local variable 'scoped-class' to
6010 'this-class' to remove ambiguitity from old global.
6011
6012 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
6013 eieio.el.
6014 (eieio--scoped-class-stack): New variable.
6015 (eieio--scoped-class): New fcn.
6016 (eieio--with-scoped-class): New scoping macro.
6017 (eieio-defclass): Use pushnew instead of add-to-list.
6018 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
6019 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
6020 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
6021 `scoped-class' variable, use new eieio--scoped-class, and
6022 eieio--with-scoped-class.
6023
6024 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
6025
6026 2013-06-02 Tassilo Horn <tsdh@gnu.org>
6027
6028 * eshell/esh-ext.el (eshell-external-command): Pass args to
6029 `eshell-find-interpreter'.
6030 (eshell-find-interpreter): Add new second parameter ARGS.
6031
6032 * eshell/em-script.el (eshell-script-initialize): Add second arg
6033 to the function added as MATCH to `eshell-interpreter-alist'.
6034
6035 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
6036 the function added as MATCH to `eshell-interpreter-alist'.
6037
6038 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
6039 (eshell-visual-options): New defcustom.
6040 (eshell-escape-control-x): Adapt docstring.
6041 (eshell-term-initialize): Test `eshell-visual-subcommands' and
6042 `eshell-visual-options' in addition to `eshell-visual-commands'.
6043 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
6044
6045 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
6046
6047 * progmodes/python.el (python-indent-block-enders): Add break,
6048 continue and raise keywords.
6049
6050 2013-06-01 Glenn Morris <rgm@gnu.org>
6051
6052 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
6053
6054 Plain (f)boundp silences compilation warnings since Emacs 22.1.
6055 * progmodes/cc-cmds.el (delete-forward-p):
6056 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
6057 * progmodes/cc-engine.el (buffer-syntactic-context):
6058 * progmodes/cc-fonts.el (face-property-instance):
6059 * progmodes/cc-mode.el (set-keymap-parents):
6060 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
6061 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
6062 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
6063 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
6064 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
6065
6066 * progmodes/cc-vars.el (other): Emacs has this widget since
6067 at least 21.1, so don't (re)define it.
6068
6069 * eshell/em-cmpl.el (eshell-cmpl-initialize):
6070 Replace the obsolete alias pcomplete-arg-quote-list.
6071
6072 2013-06-01 Leo Liu <sdl.web@gmail.com>
6073
6074 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
6075 punctuation syntax.
6076 (inferior-octave-minimal-columns)
6077 (inferior-octave-last-column-width): New variables.
6078 (inferior-octave-track-window-width-change): New function.
6079 (inferior-octave-mode): Adjust column width so that Octave output,
6080 for example from 'ls', can fit into the window nicely.
6081
6082 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6083
6084 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6085 Highlight expansions inside regexp literals.
6086
6087 2013-05-31 Glenn Morris <rgm@gnu.org>
6088
6089 * obsolete/sym-comp.el (symbol-complete):
6090 Replace obsolete completion-annotate-function.
6091
6092 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
6093
6094 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6095
6096 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6097 New function, checks if point is inside a literal that allows
6098 expression expansion.
6099 (ruby-syntax-propertize-expansion): Use it.
6100 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
6101 around the body.
6102
6103 2013-05-30 Juri Linkov <juri@jurta.org>
6104
6105 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
6106 to "\M-si".
6107 (isearch-invisible): New variable.
6108 (isearch-forward): Doc fix.
6109 (isearch-mode): Set `isearch-invisible'
6110 to the value of `search-invisible'.
6111 (isearch-toggle-case-fold): Doc fix.
6112 (isearch-toggle-invisible): New command.
6113 (isearch-query-replace): Let-bind `search-invisible'
6114 to the value of `isearch-invisible'.
6115 (isearch-search): Use `isearch-invisible' instead of
6116 `search-invisible'. Let-bind `search-invisible'
6117 to the value of `isearch-invisible'. (Bug#11378)
6118
6119 2013-05-30 Juri Linkov <juri@jurta.org>
6120
6121 * replace.el (perform-replace): Avoid `isearch-range-invisible'
6122 call when `query-flag' is nil and `search-invisible' is non-nil.
6123 (Bug#11746)
6124
6125 2013-05-30 Glenn Morris <rgm@gnu.org>
6126
6127 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
6128
6129 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
6130 (cc-require): Suppress spurious "noruntime" warnings.
6131 (cc-require-when-compile): Use fboundp, for sake of compiler.
6132
6133 * progmodes/cc-mode.el: Move load of cc-vars before that of
6134 cc-langs (which in turn loads cc-vars), to quieten compiler.
6135
6136 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6137
6138 * paren.el: Simplify the code.
6139 (show-paren-mode): Always start the timer.
6140 (show-paren--idle-timer): Rename from show-paren-idle-timer.
6141 (show-paren--overlay, show-paren--overlay-1): Rename from
6142 show-paren-overlay and show-paren-overlay-1, and initialize to an
6143 overlay rather than to nil.
6144 (show-paren-function): Misc cleanup and simplifications.
6145
6146 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6147
6148 * paren.el (show-paren-data-function): New hook.
6149 (show-paren--default): New function, extracted from show-paren-function.
6150 (show-paren-function): Use show-paren-data-function.
6151
6152 2013-05-30 Glenn Morris <rgm@gnu.org>
6153
6154 * ielm.el (ielm-map, ielm-complete-symbol):
6155 Use completion-at-point rather than obsolete functions.
6156 (inferior-emacs-lisp-mode): Doc fix.
6157 Set completion-at-point-functions, rather than
6158 comint-dynamic-complete-functions.
6159
6160 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
6161 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
6162 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
6163
6164 * image.el (image-animated-p): Tweak definition.
6165
6166 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
6167 (rlogin-process-connection-type): Tweak default. Add set-after.
6168 (rlogin-host): Doc fix.
6169 (rlogin): Tweak prompt.
6170 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
6171
6172 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
6173 * progmodes/tcl.el (inferior-tcl-mode-map):
6174 Use completion-at-point rather than obsolete alias.
6175
6176 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
6177
6178 * minibuffer.el (read-file-name-completion-ignore-case):
6179 Move before completion--in-region, for eager macro expansion.
6180
6181 2013-05-29 Juri Linkov <juri@jurta.org>
6182
6183 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
6184 for total count of matching lines. Add `global-matches' for total
6185 count of matches. Rename `matches' to `lines' for count of
6186 matching lines. Add `matches' for count of matches.
6187 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
6188 to `prev-line' for line number of prev match endpt.
6189 Increment `matches' for every match. Print the number of
6190 matching lines in the header.
6191 (occur-context-lines): Rename `lines' to `curr-line'.
6192 Rename `prev-lines' to `prev-line'. (Bug#14017)
6193
6194 2013-05-29 Juri Linkov <juri@jurta.org>
6195
6196 * replace.el (perform-replace): Add `skip-read-only-count',
6197 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
6198 Increment them for corresponding conditions and report the number
6199 of skipped occurrences in the final message. (Bug#11746)
6200 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6201 (replace-string, replace-regexp): Doc fix.
6202
6203 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6204
6205 * emacs-lisp/trace.el (trace--read-args): Provide a default.
6206
6207 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
6208 prog-mode-map (bug#14504).
6209
6210 2013-05-29 Leo Liu <sdl.web@gmail.com>
6211
6212 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
6213 (octave-help): Small simplification.
6214
6215 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
6216 off the highlight first.
6217
6218 2013-05-29 Glenn Morris <rgm@gnu.org>
6219
6220 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
6221 Handle idlwave-last-system-routine-info-cons-cell being nil.
6222
6223 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
6224 (idlwave-write-paths): Simplify via with-temp-buffer.
6225
6226 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
6227 * emulation/cua-rect.el: Also load cua-base at run time.
6228
6229 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
6230 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
6231 (cperl-imenu-on-info): Require imenu.
6232
6233 2013-05-28 Alan Mackenzie <acm@muc.de>
6234
6235 Handle "capitalised keywords" correctly.
6236 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
6237
6238 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
6239
6240 * eshell/em-unix.el: Add -r option to cp.
6241
6242 2013-05-28 Glenn Morris <rgm@gnu.org>
6243
6244 * vc/vc-arch.el (vc-exec-after): Declare.
6245 (vc-switches): Autoload.
6246 * vc/vc-bzr.el: No need to require vc when compiling.
6247 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
6248 (vc-resynch-buffer, vc-dir-refresh): Declare.
6249 (vc-setup-buffer, vc-switches): Autoload.
6250 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
6251 (vc-resynch-buffer): Declare.
6252 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
6253 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
6254 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
6255 (grep-read-regexp, grep-read-files, grep-expand-template)
6256 (vc-dir-refresh): Declare.
6257 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
6258 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
6259 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
6260 * vc/vc-mtn.el (vc-exec-after): Declare.
6261 (vc-switches): Autoload.
6262 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
6263 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
6264 (vc-file-tree-walk): Declare.
6265 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
6266 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
6267 (vc-tag-precondition, vc-rename-master): Autoload.
6268 * vc/vc-svn.el (vc-exec-after): Declare.
6269 (vc-switches, vc-setup-buffer): Autoload.
6270 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
6271 Autoload.
6272 (vc-resynch-buffer): Declare.
6273
6274 * obsolete/fast-lock.el (byte-compile-warnings):
6275 Don't warn about obsolete features in this obsolete file.
6276
6277 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
6278 Move definition before use.
6279
6280 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
6281 (dun-unix-verbs): Remove dun-zippy.
6282 (dun-zippy): Remove function.
6283
6284 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
6285
6286 2013-05-27 Juri Linkov <juri@jurta.org>
6287
6288 * replace.el (replace-search): New function with code moved out
6289 from `perform-replace'.
6290 (replace-highlight, replace-dehighlight): Move function definitions
6291 up closer to `replace-search'. (Bug#11746)
6292
6293 2013-05-27 Juri Linkov <juri@jurta.org>
6294
6295 * replace.el (perform-replace): Ignore invisible matches.
6296 In addition to checking `query-replace-skip-read-only', also
6297 filter out matches by calling `run-hook-with-args-until-failure'
6298 on `isearch-filter-predicates', and also check `search-invisible'
6299 for t or call `isearch-range-invisible'.
6300 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
6301
6302 2013-05-27 Juri Linkov <juri@jurta.org>
6303
6304 * isearch.el (isearch-filter-predicates): Rename from
6305 `isearch-filter-predicate'. Doc fix. (Bug#11378)
6306 (isearch-message-prefix): Display text from the property
6307 `isearch-message-prefix' of the currently active filters.
6308 (isearch-search): Don't compare `isearch-filter-predicate' with
6309 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
6310 on `isearch-filter-predicates'. Also check `search-invisible' for t
6311 or call `isearch-range-invisible'.
6312 (isearch-filter-visible): Make obsolete.
6313 (isearch-lazy-highlight-search):
6314 Call `run-hook-with-args-until-failure' on
6315 `isearch-filter-predicates' and use `isearch-range-invisible'.
6316
6317 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
6318 `isearch-filter-predicates' instead of `funcall'ing
6319 `isearch-filter-predicate'.
6320 (Info-mode): Set `Info-isearch-filter' to
6321 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
6322
6323 * dired-aux.el (dired-isearch-filter-predicate-orig):
6324 Remove variable.
6325 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
6326 (dired-isearch-filenames-end): Add and remove
6327 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
6328 instead of changing the value of `isearch-filter-predicate'.
6329 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
6330 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
6331 Put property `isearch-message-prefix' to "filename " on
6332 `dired-isearch-filter-filenames'.
6333
6334 * wdired.el (wdired-change-to-wdired-mode):
6335 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
6336 locally instead of changing `isearch-filter-predicate'.
6337 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
6338
6339 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
6340
6341 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
6342 return the commit hash (Bug#14459). Also set the
6343 `vc-git-detached' property.
6344 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
6345 (vc-git-mode-line-string): Use the same help-echo format whether
6346 in detached mode or not, because we know the actual revision now.
6347 When in detached mode, shorten the revision to 7 chars.
6348
6349 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6350
6351 * emacs-lisp/easy-mmode.el (define-minor-mode):
6352 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
6353 mode hook and provide a docstring.
6354
6355 2013-05-27 Alan Mackenzie <acm@muc.de>
6356
6357 Remove spurious syntax-table text properties inserted by C-y.
6358 * progmodes/cc-mode.el (c-after-change): Also clear hard
6359 syntax-table property with value nil.
6360
6361 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
6362
6363 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
6364 when reading the events; the buffer layout shall not be changed.
6365
6366 2013-05-27 Leo Liu <sdl.web@gmail.com>
6367
6368 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
6369 New variable.
6370 (inferior-octave-directory-tracker): Automatically re-sync
6371 default-directory.
6372 (octave-help): Improve handling of 'See also'.
6373
6374 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6375
6376 * doc-view.el: Minor naming convention tweaks.
6377 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
6378
6379 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
6380 even if there's no `display' property yet (bug#14435).
6381
6382 2013-05-25 Eli Zaretskii <eliz@gnu.org>
6383
6384 * subr.el (unmsys--file-name): Rename from reveal-filename.
6385
6386 * Makefile.in (custom-deps, finder-data, autoloads)
6387 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
6388 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
6389 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
6390
6391 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6392
6393 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
6394 error-completion on the first 2 args of condition-case (bug#14446).
6395 Don't burp at EOB.
6396
6397 2013-05-25 Leo Liu <sdl.web@gmail.com>
6398
6399 * comint.el (comint-previous-matching-input): Do not flood the
6400 *Messages* buffer with trivial messages.
6401
6402 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6403
6404 * progmodes/flymake.el (flymake-nop): Don't return a string.
6405 (flymake-set-at): Fix typo.
6406
6407 * simple.el (read--expression): New function, extracted from
6408 eval-expression. Set completion-at-point-functions (bug#14465).
6409 (eval-expression, eval-minibuffer): Use it.
6410
6411 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
6412
6413 * progmodes/flymake.el (flymake-save-buffer-in-file)
6414 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
6415 (flymake-selected-frame, flymake-log, flymake-ins-after)
6416 (flymake-set-at, flymake-get-buildfile-from-cache)
6417 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
6418 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
6419 Refine the doc string.
6420 (flymake-get-file-name-mode-and-masks): Reformat.
6421 (flymake-get-real-file-name-function): Fix a minor bug.
6422
6423 2013-05-24 Juri Linkov <juri@jurta.org>
6424
6425 * progmodes/grep.el (grep-mode-font-lock-keywords):
6426 Support =linenumber= format used by git-grep for lines with
6427 function names. (Bug#13549)
6428
6429 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6430
6431 * progmodes/octave.el (octave-smie-rules): Return nil rather than
6432 0 after a semi-colon; it works better for smie-auto-fill.
6433 (octave--indent-new-comment-line): New function.
6434 (octave-indent-new-comment-line): Use it (indirectly).
6435 (octave-mode): Don't disable smie-auto-fill. Use add-function to
6436 modify comment-line-break-function.
6437
6438 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
6439 (smie-setup): Use add-function to set it.
6440
6441 2013-05-24 Sam Steingold <sds@gnu.org>
6442
6443 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
6444 argument (before the `interactive' argument).
6445
6446 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6447
6448 * image-mode.el (image-mode-winprops): Add winprops to
6449 image-mode-winprops-alist before running
6450 image-mode-new-window-functions.
6451 * doc-view.el (doc-view-new-window-function): Don't delay
6452 doc-view-goto-page via timers (bug#14435).
6453
6454 2013-05-24 Tassilo Horn <tsdh@gnu.org>
6455
6456 * doc-view.el: Integrate with desktop.el. (Bug#14435)
6457 (doc-view-desktop-save-buffer): New function.
6458 (doc-view-restore-desktop-buffer): New function.
6459 (desktop-buffer-mode-handlers):
6460 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
6461 handler.
6462 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
6463 `desktop-save-buffer' function.
6464
6465 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
6466
6467 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
6468 (tramp-gvfs-file-name-handler): Raise a user error when
6469 `tramp-gvfs-enabled' is nil.
6470 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
6471 Do not raise a user error when loading package. (Bug#14447)
6472
6473 * net/xesam.el: Move to obsolete/.
6474
6475 2013-05-24 Glenn Morris <rgm@gnu.org>
6476
6477 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
6478
6479 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
6480
6481 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
6482 (Info-find-node, Man-getpage-in-background): Declare.
6483
6484 * mail/unrmail.el (unrmail):
6485 Replace obsolete detect-coding-with-priority.
6486
6487 * net/socks.el (socks-split-string): Use this rather than split-string.
6488 (socks-nslookup-host): Update for above change.
6489 (dynamic-choice, s5-dynamic-choice-match)
6490 (s5-dynamic-choice-match-inline, s5-widget-value-create):
6491 Comment out unused code.
6492
6493 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
6494 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
6495 (gud-tooltip-echo-area): Make obsolete.
6496 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
6497
6498 * progmodes/js.el (js--optimize-arglist): Declare.
6499
6500 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
6501
6502 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
6503 (ediff-window-C): Declare.
6504
6505 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
6506 Tweak requires to silence compiler.
6507
6508 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
6509 (he-search-string, he-tried-table, he-expand-list)
6510 (he-init-string, he-string-member, he-substitute-string)
6511 (he-reset-string): Declare.
6512
6513 * obsolete/options.el (list-options): Use custom-variable-p,
6514 rather than obsolete alias.
6515
6516 2013-05-23 Sam Steingold <sds@gnu.org>
6517
6518 * simple.el (shell-command-on-region): Pass the `replace' argument
6519 down to `call-process-region' to comply with the doc as reported on
6520 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
6521
6522 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6523
6524 * emacs-lisp/smie.el (smie-indent-forward-token)
6525 (smie-indent-backward-token): Handle string tokens (bug#14381).
6526
6527 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6528
6529 * ielm.el (ielm-menu): New menu.
6530 (inferior-emacs-lisp-mode): Set comment-start.
6531
6532 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6533
6534 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
6535 Fix deactivate action.
6536
6537 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
6538 Add cleveref macros.
6539
6540 * lisp/textmodes/reftex-parse.el
6541 (reftex-locate-bibliography-files): Accept options for
6542 bibliography commands.
6543 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
6544 Add addbibresource. Basic Biblatex support.
6545
6546 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
6547
6548 * net/tramp-gvfs.el (top):
6549 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
6550 when loading package. (Bug#14447)
6551
6552 2013-05-23 Glenn Morris <rgm@gnu.org>
6553
6554 * progmodes/js.el: No need to load comint when compiling.
6555 (ring-insert, comint-send-string, comint-send-input)
6556 (comint-last-input-end, ido-chop): Declare.
6557
6558 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
6559 * vc/ediff-mult.el: Adjust requires.
6560 (ediff-directories-internal, ediff-directory-revisions-internal)
6561 (ediff-patch-file-internal): Declare.
6562 * vc/ediff-ptch.el: Adjust requires.
6563 (ediff-use-last-dir, ediff-buffers-internal): Declare.
6564 (ediff-find-file): Autoload.
6565 * vc/ediff-util.el: No need to load ediff when compiling.
6566 (ediff-regions-internal): Declare.
6567 * vc/ediff-wind.el: Adjust requires.
6568 (ediff-compute-toolbar-width): Define when compiling.
6569 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
6570 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
6571 (dired-get-filename, dired-get-marked-files)
6572 (ediff-last-dir-patch, ediff-patch-default-directory)
6573 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
6574 (ediff-patch-buffer-internal): Declare.
6575
6576 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
6577 (ispell-process, ispell-buffer-local-words, lm-summary)
6578 (lm-section-start, lm-section-end): Declare.
6579 (checkdoc-ispell-init): Simplify.
6580
6581 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
6582 (he-string-member, he-reset-string, he-substitute-string): Declare.
6583
6584 * eshell/em-ls.el: Adjust requires.
6585 (eshell-glob-regexp): Declare.
6586 * eshell/em-tramp.el: Adjust requires.
6587 (eshell-parse-command): Autoload.
6588 * eshell/em-xtra.el: Adjust requires.
6589 (eshell-parse-command): Autoload.
6590 * eshell/esh-ext.el: Adjust requires.
6591 (eshell-parse-command, eshell-close-handles): Autoload.
6592 * eshell/esh-io.el: Adjust requires.
6593 (eshell-output-filter): Autoload.
6594 * eshell/esh-util.el: No need to load tramp when compiling.
6595 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
6596 Declare.
6597 (eshell-parse-ange-ls): Require ange-ftp and tramp.
6598 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
6599 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
6600 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
6601 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
6602 * eshell/esh-opt.el, eshell/esh-proc.el:
6603 * eshell/esh-var.el: Adjust requires.
6604 * eshell/eshell.el: Do not require esh-util twice.
6605 (eshell-add-input-to-history): Declare.
6606 (eshell-command): Check history module is active before using it.
6607
6608 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
6609
6610 2013-05-22 Leo Liu <sdl.web@gmail.com>
6611
6612 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
6613
6614 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
6615
6616 * autorevert.el (auto-revert-notify-add-watch)
6617 (auto-revert-notify-handler): Add `attrib' for the inotify case,
6618 it indicates changes in file modification time.
6619
6620 2013-05-22 Glenn Morris <rgm@gnu.org>
6621
6622 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
6623 Always delete the autoloaded function from the noruntime and
6624 unresolved functions lists.
6625
6626 * allout.el: No need to load epa, epg, overlay when compiling.
6627 (epg-context-set-passphrase-callback, epg-list-keys)
6628 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
6629 (epg-key-user-id-list): Declare.
6630
6631 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
6632 (viper-set-parsing-style-toggling-macro)
6633 (viper-set-emacs-state-searchstyle-macros):
6634 Use called-interactively-p on Emacs.
6635 (viper-looking-back): Make it an obsolete alias. Update callers.
6636 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
6637 Use looking-back rather than viper-looking-back.
6638 (viper-tmp-insert-at-eob, viper-enlarge-region)
6639 (viper-read-string-with-history, viper-register-to-point)
6640 (viper-append-to-register, viper-change-state-to-vi)
6641 (viper-backward-char-carefully, viper-forward-char-carefully)
6642 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
6643 (viper-change-state-to-emacs): Declare.
6644 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
6645 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
6646 * emulation/viper-mous.el: Do not load viper-cmd.
6647 (viper-backward-char-carefully, viper-forward-char-carefully)
6648 (viper-forward-word, viper-adjust-window): Declare.
6649
6650 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
6651
6652 * progmodes/idlw-help.el (idlwave-help-fontify):
6653 Use called-interactively-p.
6654
6655 * term/w32console.el (w32-get-console-codepage)
6656 (w32-get-console-output-codepage): Declare.
6657
6658 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
6659 Remove unnecessary declarations.
6660 (dframe-message): Doc fix.
6661
6662 * info.el (dframe-select-attached-frame, dframe-current-frame):
6663 Declare.
6664
6665 * speedbar.el (speedbar-message): Make it an obsolete alias.
6666 Update all callers.
6667 (speedbar-with-attached-buffer)
6668 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
6669 (speedbar-with-writable): Use backquote.
6670 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
6671 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
6672 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
6673 rather than speedbar- aliases.
6674 * mail/rmail.el: Load dframe rather than speedbar when compiling.
6675 (speedbar-make-specialized-keymap, speedbar-insert-button)
6676 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
6677 (speedbar-do-function-pointer): Declare.
6678 (rmail-speedbar-button, rmail-speedbar-find-file)
6679 (rmail-speedbar-move-message):
6680 Use dframe-with-attached-buffer rather than speedbar- alias.
6681 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
6682 (dframe-message, speedbar-make-specialized-keymap)
6683 (speedbar-add-expansion-list, speedbar-mode-functions-list)
6684 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
6685 (speedbar-insert-button, dframe-select-attached-frame)
6686 (dframe-maybee-jump-to-attached-frame)
6687 (speedbar-change-initial-expansion-list)
6688 (speedbar-previously-used-expansion-list-name): Declare.
6689 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
6690 Use dframe-message, dframe-with-attached-buffer rather than
6691 speedbar- aliases.
6692 (gud-sentinel): Silence compiler.
6693 * progmodes/vhdl-mode.el (speedbar-refresh)
6694 (speedbar-do-function-pointer, speedbar-add-supported-extension)
6695 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
6696 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
6697 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
6698 (speedbar-file-lists, speedbar-make-tag-line)
6699 (speedbar-line-directory, speedbar-goto-this-file)
6700 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
6701 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
6702 (speedbar-make-button, speedbar-reset-scanners)
6703 (speedbar-files-item-info, speedbar-line-text)
6704 (speedbar-find-file-in-frame, speedbar-set-timer)
6705 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
6706 (speedbar-with-writable): Do not (re)define it.
6707 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
6708 rather than speedbar- alias.
6709
6710 2013-05-21 Leo Liu <sdl.web@gmail.com>
6711
6712 * progmodes/octave.el (octave-mode-menu): Update and re-organize
6713 menu items.
6714 (octave-mode): Tweak fill-nobreak-predicate.
6715 (inferior-octave-startup): Check process to avoid infinite loop.
6716 (inferior-octave): Pop to buffer first to show abornmal process
6717 exit information.
6718
6719 2013-05-21 Glenn Morris <rgm@gnu.org>
6720
6721 * printing.el (pr-menu-bar): Define when compiling.
6722
6723 2013-05-21 Leo Liu <sdl.web@gmail.com>
6724
6725 * progmodes/octave.el (octave-auto-fill): Remove.
6726 (octave-indent-new-comment-line): Improve.
6727 (octave-mode): Use auto fill mode through
6728 comment-line-break-function and fill-nobreak-predicate.
6729 (octave-goto-function-definition): Support DEFUN_DLD.
6730 (octave-beginning-of-defun): Small tweak.
6731 (octave-help): Show parent directory.
6732
6733 2013-05-21 Glenn Morris <rgm@gnu.org>
6734
6735 * files.el (dired-unmark):
6736 * progmodes/gud.el (gdb-input): Update declarations.
6737
6738 * calculator.el (electric, ehelp): No need to load when compiling.
6739 (Electric-command-loop, electric-describe-mode): Declare.
6740
6741 * doc-view.el (doc-view-current-converter-processes): Move before use.
6742
6743 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6744 Move MODE-set-explicitly definition before use.
6745
6746 * international/mule-diag.el (mule-diag):
6747 Don't use obsolete window-system-version.
6748
6749 * mail/feedmail.el (smtpmail): No need to load when compiling.
6750 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
6751
6752 * mail/mail-utils.el (rfc822): No need to load when compiling.
6753 (rfc822-addresses): Autoload it.
6754 (mail-strip-quoted-names): Trivial simplification.
6755
6756 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
6757 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
6758
6759 * net/snmp-mode.el (tempo): Don't duplicate requires.
6760
6761 * progmodes/prolog.el (info): No need to load when compiling.
6762 (comint): Require before shell requires it.
6763 (Info-goto-node): Autoload it.
6764 (Info-follow-nearest-node): Declare.
6765 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
6766
6767 * textmodes/artist.el (picture-mode-exit): Declare.
6768
6769 * textmodes/reftex-parse.el (reftex-parse-from-file):
6770 Trivial rewrite so the compiler can parse it better.
6771
6772 2013-05-20 Leo Liu <sdl.web@gmail.com>
6773
6774 * progmodes/octave.el (octave-help-mode-map)
6775 (octave-help-mode-finish-hook): New variables.
6776 (octave-help-mode, octave-help-mode-finish): New functions.
6777 (octave-help): Use octave-help-mode.
6778
6779 2013-05-20 Glenn Morris <rgm@gnu.org>
6780
6781 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
6782
6783 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
6784
6785 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
6786 start at point, so that expansion starting right after opening
6787 slash in a regexp is recognized.
6788 (ruby-syntax-before-regexp-re): New defvar, extracted from
6789 ruby-syntax-propertize-function. Since the value of this regexp
6790 is looked up at runtime now, we should be able to turn
6791 `ruby-syntax-methods-before-regexp' into a defcustom later.
6792 (ruby-syntax-propertize-function): Split regexp matching into two
6793 parts, for opening and closing slashes. That allows us to skip
6794 over string interpolations and support multiline regexps.
6795 Don't call `ruby-syntax-propertize-expansions', instead use another rule
6796 for them, which calls `ruby-syntax-propertize-expansion'.
6797 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
6798 call to `ruby-syntax-propertize-function'.
6799 (ruby-syntax-propertize-expansion): Extracted from
6800 `ruby-syntax-propertize-expansions'. Handles one expansion.
6801 (ruby-syntax-propertize-percent-literal): Leave point right after
6802 the percent symbol, so that the expression expansion rule can
6803 propertize the contents.
6804 (ruby-syntax-propertize-heredoc): Leave point at bol following the
6805 heredoc openers.
6806 (ruby-syntax-propertize-expansions): Remove.
6807
6808 2013-05-18 Juri Linkov <juri@jurta.org>
6809
6810 * man.el (Man-default-man-entry): Remove `-' from the end
6811 of the default value. (Bug#14400)
6812
6813 2013-05-18 Glenn Morris <rgm@gnu.org>
6814
6815 * comint.el (comint-password-prompt-regexp):
6816 Allow "password for XXX" where XXX contains colons (eg https://...).
6817
6818 2013-05-18 Leo Liu <sdl.web@gmail.com>
6819
6820 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
6821 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
6822 (octave-source-directories): Don't check process.
6823 (octave-source-directories, octave-find-definition): Doc fix.
6824
6825 2013-05-18 Glenn Morris <rgm@gnu.org>
6826
6827 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
6828 Remove backspace/delete bindings. (Bug#14392)
6829
6830 * cus-dep.el (custom-make-dependencies): Sort the output.
6831 (custom-versions-load-alist): Convert comment to doc.
6832
6833 2013-05-17 Leo Liu <sdl.web@gmail.com>
6834
6835 * newcomment.el (comment-search-backward): Stricter in finding
6836 comment start. (Bug#14303)
6837
6838 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
6839 (octave-comment-start-skip): Properly anchored.
6840
6841 2013-05-17 Leo Liu <sdl.web@gmail.com>
6842
6843 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
6844 Clean up when turned off. (Bug#14395)
6845 (smie--highlight-matching-block-overlay): No longer buffer-local.
6846 (smie-highlight-matching-block): Adjust.
6847
6848 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
6849
6850 Doc string fix for "nanoseconds" (Bug#14406).
6851 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
6852 Fix doc string typo that had "nanoseconds" instead of "microseconds".
6853
6854 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
6855
6856 * calc/calc-units.el (math-extract-units): Preserve powers
6857 of units.
6858
6859 2013-05-17 Leo Liu <sdl.web@gmail.com>
6860
6861 * subr.el (delete-consecutive-dups): New function.
6862 * ido.el (ido-set-matches-1): Use it.
6863 * progmodes/octave.el (inferior-octave-completion-table): Use it.
6864 * ido.el (ido-remove-consecutive-dups): Remove.
6865
6866 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
6867
6868 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
6869 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
6870 regexp-opt's `words'.
6871
6872 2013-05-16 Leo Liu <sdl.web@gmail.com>
6873
6874 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
6875 (smie--highlight-matching-block-overlay)
6876 (smie--highlight-matching-block-lastpos)
6877 (smie--highlight-matching-block-timer): New variables.
6878 (smie-highlight-matching-block): New function.
6879 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
6880 (smie-setup): Conditionally enable smie-blink-matching-open.
6881
6882 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
6883
6884 Sync with upstream verilog-mode r840.
6885 * progmodes/verilog-mode.el (verilog-mode-version)
6886 (verilog-mode-release-date): Update.
6887 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
6888 (verilog-sig-tieoff): Fix string error on
6889 AUTORESET with colon define, bug594. Reported by Andrew Hou.
6890 (verilog-read-decls): Fix parameters confusing
6891 AUTOINST interfaces, bug565. Reported by Leith Johnson.
6892
6893 2013-05-16 Eli Zaretskii <eliz@gnu.org>
6894
6895 * subr.el (reveal-filename): New function.
6896
6897 * loadup.el: Compute Emacs executable versions on MS-Windows,
6898 where executables have the .exe extension. Add a hard link
6899 emacs-XX.YY.ZZ.exe on MS-Windows.
6900
6901 * Makefile.in (XARGS_LIMIT): New variable.
6902 (custom-deps, finder-data, autoloads)
6903 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
6904 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
6905 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
6906 (compile-main): Limit xargs according to $(XARGS_LIMIT).
6907
6908 2013-05-16 Leo Liu <sdl.web@gmail.com>
6909
6910 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
6911 (octave-mode-menu, octave-mode-map): Remove its uses.
6912
6913 2013-05-16 Reto Zimmermann <reto@gnu.org>
6914
6915 Sync with upstream vhdl mode v3.34.2.
6916 * progmodes/vhdl-mode.el: Use `push' throughout.
6917 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
6918 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
6919 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
6920 (vhdl-actual-generic-name): New option to derive actual generic name.
6921 (vhdl-port-paste-signals): Replace formal by actual generics.
6922 (vhdl-beautify): New name for old group vhdl-align. Update users.
6923 (vhdl-beautify-options): New option.
6924 (vhdl-last-input-event): New compat alias. Use throughout.
6925 (vhdl-goto-line): Replace user level function `goto-line'.
6926 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
6927 vhdl-fix-statement-buffer.
6928 (vhdl-create-mode-menu): Add some entries.
6929 (vhdl-align-region-groups): Respect vhdl-beautify-options.
6930 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
6931 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
6932 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
6933 to force statements on one line.
6934 (vhdl-remove-trailing-spaces-region):
6935 New, split from vhdl-remove-trailing-spaces.
6936 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
6937 Respect vhdl-beautify-options.
6938 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
6939 (vhdl-update-sensitivity-list): Not add with index if exists without.
6940 Not include array index with signal. Ignore keywords in comments.
6941 (vhdl-get-visible-signals): Regexp tweaks.
6942 (vhdl-template-component-inst): Handle empty library.
6943 (vhdl-template-type): Add template for 'enum' type.
6944 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
6945 Use vhdl-replace-string.
6946 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
6947 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
6948 (vhdl-speedbar-initialize): Update for above name change.
6949 (vhdl-compose-wire-components): Fix in handling of constants.
6950 (vhdl-error-regexp-emacs-alist): New variable.
6951 (vhdl-error-regexp-add-emacs): New function;
6952 adds support for new compile.el (Emacs 22+)
6953 (vhdl-generate-makefile-1): Change target order for single lib. units.
6954 Allow use of absolute file names.
6955
6956 2013-05-16 Leo Liu <sdl.web@gmail.com>
6957
6958 * simple.el (prog-indent-sexp): Indent enclosing defun.
6959
6960 2013-05-15 Glenn Morris <rgm@gnu.org>
6961
6962 * cus-start.el (show-trailing-whitespace): Move to editing basics.
6963 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
6964 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
6965 (whitespace-highlight): Move to whitespace group.
6966
6967 * comint.el (comint-source):
6968 * pcmpl-linux.el (pcmpl-linux):
6969 * shell.el (shell-faces):
6970 * eshell/esh-opt.el (eshell-opt):
6971 * international/ccl.el (ccl): Remove empty custom groups.
6972
6973 * completion.el (dynamic-completion-mode):
6974 * jit-lock.el (jit-lock-debug-mode):
6975 * minibuffer.el (completion-in-region-mode):
6976 * type-break.el (type-break-mode-line-message-mode)
6977 (type-break-query-mode):
6978 * emulation/tpu-edt.el (tpu-edt-mode):
6979 * progmodes/subword.el (global-subword-mode, global-superword-mode):
6980 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
6981 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
6982
6983 * term/xterm.el (xterm): Change parent group to terminals.
6984
6985 * master.el (master): Remove empty custom group.
6986 (master-mode): Remove unused :group argument.
6987 * textmodes/refill.el (refill): Remove empty custom group.
6988 (refill-mode): Remove unused :group argument.
6989
6990 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
6991
6992 * cus-dep.el: Provide a feature.
6993 (custom-make-dependencies): Ignore dotfiles (dir-locals).
6994 Don't mistakenly ignore files whose basenames match a basename
6995 from preloaded-file-list (eg cedet/ede/simple.el).
6996 Add a fallback method for getting :group.
6997
6998 2013-05-15 Juri Linkov <juri@jurta.org>
6999
7000 * isearch.el (isearch-char-by-name): Rename from
7001 `isearch-insert-char-by-name'. Doc fix.
7002 (isearch-forward): Mention `isearch-char-by-name' in
7003 the docstring. (Bug#13348)
7004
7005 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
7006 `exit-minibuffer' instead of
7007 `isearch-nonincremental-exit-minibuffer'.
7008 (isearch-edit-string): Remove mention of
7009 `isearch-nonincremental-exit-minibuffer' from docstring.
7010 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
7011 (isearch-forward-exit-minibuffer)
7012 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
7013
7014 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7015
7016 * loadup.el: Just use unversioned DOC.
7017
7018 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
7019 literals as extending to EOB.
7020 (nxml-last-fontify-end): Remove unused variable.
7021 (nxml-after-change1): Use with-silent-modifications.
7022 (nxml-extend-after-change-region): Simplify.
7023 (nxml-extend-after-change-region1): Remove function.
7024 (nxml-after-change1): Don't adjust for dependent regions.
7025 (nxml-fontify-matcher): Simplify.
7026 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
7027 (xmltok-add-dependent): Remove function.
7028 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
7029 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
7030 (xmltok-scan-prolog-after-processing-instruction-open): Treat
7031 unclosed <[[, <?, comment, and other literals as extending to EOB.
7032 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
7033 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
7034 Remove functions.
7035 (rng-do-some-validation-1): Don't mark dependent regions.
7036 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
7037 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
7038 (nxml-clear-dependent-regions): Remove functions.
7039 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
7040 (nxml-ensure-scan-up-to-date):
7041 Don't clear&mark dependent regions.
7042
7043 2013-05-15 Leo Liu <sdl.web@gmail.com>
7044
7045 * progmodes/octave.el (octave-goto-function-definition):
7046 Improve and fix callers.
7047
7048 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7049
7050 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
7051 the setter (bug#14387).
7052
7053 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
7054 surrounding group (bug#14402).
7055
7056 2013-05-14 Juri Linkov <juri@jurta.org>
7057
7058 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
7059 (Bug#14390)
7060
7061 2013-05-14 Glenn Morris <rgm@gnu.org>
7062
7063 * progmodes/f90.el (f90-imenu-generic-expression):
7064 Fix typo in 2013-05-08 change. (Bug#14402)
7065
7066 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7067
7068 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
7069 Remove signals for which replies are never received.
7070
7071 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7072
7073 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
7074 (gdb-handler-alist, gdb-handler-number): Remove variables.
7075 (gdb-handler-list): New variable.
7076 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
7077 (gdb-pending-handler-p, gdb-handle-reply)
7078 (gdb-remove-all-pending-triggers): New functions.
7079 (gdb-discard-unordered-replies): New defcustom.
7080 (gdb-handler): New defstruct.
7081 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
7082 instead of gdb-pending-triggers. Update docstring.
7083 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
7084 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
7085 (gdb-var-update-handler, def-gdb-auto-update-trigger)
7086 (def-gdb-auto-update-handler, gdb-get-changed-registers)
7087 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
7088 (gdb-frame-handler): Pending triggers are now automatically managed.
7089 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
7090 Remove argument.
7091 (gdb-input): Automatically handles pending triggers. Update docstring.
7092 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
7093 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
7094 Update comments.
7095 (gdb-done-or-error): Now use gdb-handle-reply.
7096
7097 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7098
7099 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
7100 gdb-debug-log.
7101
7102 2013-05-14 Glenn Morris <rgm@gnu.org>
7103
7104 * subr.el (user-emacs-directory-warning): New option.
7105 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
7106
7107 2013-05-14 Leo Liu <sdl.web@gmail.com>
7108
7109 * progmodes/octave.el (octave-font-lock-keywords): Fix error
7110 during redisplay.
7111 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
7112 (octave-font-lock-texinfo-comment): Fix invalid search bound
7113 error: wrong side of point.
7114
7115 2013-05-14 Glenn Morris <rgm@gnu.org>
7116
7117 * progmodes/flymake.el (flymake-xml-program): New option.
7118 (flymake-xml-init): Use it.
7119
7120 * term/xterm.el: Provide a feature.
7121
7122 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
7123
7124 2013-05-13 Glenn Morris <rgm@gnu.org>
7125
7126 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
7127 Add compat aliases as a hack workaround. (Bug#14384)
7128
7129 2013-05-13 Leo Liu <sdl.web@gmail.com>
7130
7131 * progmodes/octave.el (octave-indent-comment): Fix indentation for
7132 ###, and %!.
7133 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
7134 C-M-q.
7135 (octave-comment-start-skip): Include %!.
7136 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
7137
7138 2013-05-12 Leo Liu <sdl.web@gmail.com>
7139
7140 * progmodes/octave.el (inferior-octave-startup): Store the value
7141 of __octave_srcdir__ for octave-source-directories.
7142 (inferior-octave-check-process): New function refactored out of
7143 inferior-octave-send-list-and-digest.
7144 (octave-source-directories)
7145 (octave-find-definition-filename-function): New variables.
7146 (octave-source-directories)
7147 (octave-find-definition-default-filename): New functions.
7148 (octave-find-definition): Improve to find functions implemented in C++.
7149
7150 2013-05-12 Glenn Morris <rgm@gnu.org>
7151
7152 * calendar/diary-lib.el (diary-outlook-format-1):
7153 Don't include dayname in the output. (Bug#14349)
7154
7155 2013-05-11 Glenn Morris <rgm@gnu.org>
7156
7157 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
7158
7159 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
7160 Treat cc-provide like provide.
7161
7162 2013-05-11 Kevin Ryde <user42@zip.com.au>
7163
7164 * cus-dep.el (custom-make-dependencies):
7165 Use generated-autoload-load-name for the sake of files such
7166 such cedet/semantic/bovine/c.el, where the base file name
7167 is not in load-path. (Bug#5277)
7168
7169 2013-05-11 Glenn Morris <rgm@gnu.org>
7170
7171 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
7172 Provide features.
7173
7174 2013-05-11 Leo Liu <sdl.web@gmail.com>
7175
7176 * progmodes/octave.el (octave-indent-comment): Improve.
7177 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
7178 (octave-eldoc-function-signatures, octave-eldoc-function):
7179 New functions.
7180 (octave-mode, inferior-octave-mode): Add eldoc support.
7181
7182 2013-05-11 Richard Stallman <rms@gnu.org>
7183
7184 * epa.el (epa-decrypt-file): Take output file name as argument
7185 and read it using `interactive'.
7186
7187 2013-05-11 Leo Liu <sdl.web@gmail.com>
7188
7189 * progmodes/octave.el (octave-beginning-of-line)
7190 (octave-end-of-line): Check before using up-list because it jumps
7191 out of more syntactic contructs since moving to smie.
7192 (octave-indent-comment): New function.
7193 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
7194 (octave-begin-keywords, octave-end-keywords)
7195 (octave-reserved-words, octave-smie-bnf-table)
7196 (octave-smie-rules): Add new keywords from Octave 3.6.4.
7197
7198 2013-05-11 Glenn Morris <rgm@gnu.org>
7199
7200 * faces.el (internal-face-x-get-resource):
7201 * frame.el (ns-display-monitor-attributes-list):
7202 * calc/calc-aent.el (math-to-radians-2):
7203 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
7204 Fix declarations.
7205
7206 * calc/calc-menu.el: Make it loadable in isolation.
7207
7208 * net/eudcb-bbdb.el: Make it loadable without bbdb.
7209 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
7210 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
7211 (eudc-bbdb-query-internal): Require 'bbdb.
7212
7213 * lpr.el (lpr-headers-switches):
7214 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
7215
7216 * progmodes/sql.el (sql-login-params): Fix and improve :type.
7217
7218 * emulation/edt-mapper.el: In batch mode, error rather than hang.
7219
7220 * term.el (term-set-escape-char): Make it idempotent.
7221
7222 2013-05-10 Leo Liu <sdl.web@gmail.com>
7223
7224 * progmodes/octave.el (inferior-octave-completion-table):
7225 No longer a function and all uses changed. Use cache to speed up
7226 completion due to bug#11906.
7227 (octave-beginning-of-defun): Re-write to be more general.
7228
7229 2013-05-10 Glenn Morris <rgm@gnu.org>
7230
7231 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
7232
7233 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7234
7235 * comint.el (comint-redirect-send-command-to-process): Use :around
7236 rather than :override for comint-redirect-filter.
7237 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
7238 Call it instead of comint-redirect-original-filter-function (which
7239 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
7240
7241 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
7242
7243 * frame.el (display-monitor-attributes-list): Add NS case.
7244 (ns-display-monitor-attributes-list): Declare.
7245
7246 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
7247
7248 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
7249
7250 2013-05-09 Glenn Morris <rgm@gnu.org>
7251
7252 * international/fontset.el (vertical-centering-font-regexp):
7253 Set standard-value.
7254
7255 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
7256
7257 * bookmark.el (bookmark-search-delay):
7258 * cus-start.el (vertical-centering-font-regexp):
7259 * ps-mule.el (ps-mule-font-info-database-default):
7260 * ps-print.el (ps-default-fg, ps-default-bg):
7261 * type-break.el (type-break-good-break-interval):
7262 * whitespace.el (whitespace-indentation-regexp)
7263 (whitespace-space-after-tab-regexp):
7264 * emacs-lisp/testcover.el (testcover-1value-functions)
7265 (testcover-noreturn-functions, testcover-progn-functions)
7266 (testcover-prog1-functions):
7267 * emulation/viper-init.el (viper-emacs-state-cursor-color):
7268 * eshell/em-glob.el (eshell-glob-translate-alist):
7269 * play/tetris.el (tetris-tty-colors):
7270 * progmodes/cpp.el (cpp-face-default-list):
7271 * progmodes/flymake.el (flymake-allowed-file-name-masks):
7272 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
7273 (idlwave-help-browser-generic-args):
7274 * progmodes/make-mode.el (makefile-special-targets-list):
7275 * progmodes/python.el (python-shell-virtualenv-path):
7276 * progmodes/verilog-mode.el (verilog-active-low-regexp)
7277 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
7278 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
7279 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
7280 * textmodes/reftex-vars.el (reftex-format-label-function):
7281 * textmodes/remember.el (remember-diary-file): Fix custom types.
7282
7283 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
7284 Add :version.
7285
7286 2013-05-09 Leo Liu <sdl.web@gmail.com>
7287
7288 * progmodes/octave.el (inferior-octave-completion-at-point):
7289 Restore file completion. (Bug#14300)
7290 (inferior-octave-startup): Fix incorrect highlighting for the
7291 first prompt.
7292
7293 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7294
7295 * progmodes/ruby-mode.el: First cut at SMIE support.
7296 (ruby-use-smie): New var.
7297 (ruby-smie-grammar): New constant.
7298 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
7299 (ruby-smie--forward-token, ruby-smie--backward-token)
7300 (ruby-smie-rules): New functions.
7301 (ruby-mode-variables): Setup SMIE if applicable.
7302
7303 2013-05-08 Eli Zaretskii <eliz@gnu.org>
7304
7305 * simple.el (line-move-visual): Signal beginning/end of buffer
7306 only if vertical-motion moved less than it was requested. Avoids
7307 silly incorrect error messages when there are display strings with
7308 multiple newlines at EOL.
7309
7310 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7311
7312 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
7313 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
7314 (prolog-char-quote-workaround):
7315 * progmodes/cperl-mode.el (cperl-under-as-char):
7316 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
7317 Mark as obsolete.
7318 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
7319 their declaration.
7320 (vhdl-mode-syntax-table-init): Remove.
7321
7322 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
7323 last change.
7324
7325 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
7326 syntax for "_".
7327 (ld-script-font-lock-keywords):
7328 Change regexps to use things like \_< and \_>.
7329
7330 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
7331 Change all regexps to use things like \_< and \_>.
7332
7333 * progmodes/autoconf.el (autoconf-definition-regexp)
7334 (autoconf-font-lock-keywords, autoconf-current-defun-function):
7335 Handle a _ with symbol syntax.
7336 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
7337
7338 * progmodes/ada-mode.el (ada-mode-abbrev-table):
7339 Consolidate declaration.
7340 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
7341 the declaration.
7342 (ada-create-syntax-table): Remove.
7343 (ada-capitalize-word): Don't mess with the syntax of "_" since it
7344 already has the right syntax nowadays.
7345 (ada-goto-next-word): Don't change the syntax of "_".
7346
7347 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
7348 with-wrapper-hook.
7349
7350 2013-05-08 Sam Steingold <sds@gnu.org>
7351
7352 * thingatpt.el (thing-at-point): Accept optional second argument
7353 NO-PROPERTIES to strip the text properties from the return value.
7354 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
7355 to `thing-at-point' instead of stripping the properties ourselves.
7356 Also, when `thing-at-point' fails to find a url, prepend "http://"
7357 to the filename at point on the assumption that the user is
7358 pointing at something like gnu.org/gnu.
7359
7360 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
7361
7362 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
7363 * faces.el (crm-separator):
7364 Silence byte-compiler.
7365
7366 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
7367 (tool-bar-map): Remove unneeded defvars.
7368
7369 2013-05-08 Leo Liu <sdl.web@gmail.com>
7370
7371 Re-work a fix for bug#10994 based on Le Wang's patch.
7372 * ido.el (ido-remove-consecutive-dups): New helper.
7373 (ido-completing-read): Use it.
7374 (ido-chop): Revert fix for bug#10994.
7375
7376 2013-05-08 Adam Spiers <emacs@adamspiers.org>
7377
7378 * cus-edit.el (custom-save-variables):
7379 Pretty-print long values. (Bug#14187)
7380
7381 2013-05-08 Glenn Morris <rgm@gnu.org>
7382
7383 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
7384 (m4-mode-syntax-table): Init in the defvar.
7385 (m4-mode-abbrev-table): Let define-derived-mode define it.
7386
7387 2013-05-08 Tom Tromey <tromey@redhat.com>
7388
7389 * progmodes/m4-mode.el (m4-mode-syntax-table):
7390 Do not treat "_" as word constituent. (Bug#14167)
7391
7392 2013-05-07 Glenn Morris <rgm@gnu.org>
7393
7394 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
7395 Remove explicit eshell-isearch-cancel-map.
7396
7397 * progmodes/f90.el (f90-smart-end-names): New option.
7398 (f90-smart-end): Doc fix.
7399 (f90-end-block-optional-name): New constant.
7400 (f90-block-match): Respect f90-smart-end-names.
7401
7402 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7403
7404 * progmodes/octave.el (octave-smie-forward-token): Be more careful
7405 about implicit semi-colons (bug#14218).
7406
7407 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7408
7409 * frame.el (display-monitor-attributes-list)
7410 (frame-monitor-attributes): New functions.
7411
7412 2013-05-06 Leo Liu <sdl.web@gmail.com>
7413
7414 * progmodes/octave.el (octave-syntax-propertize-function): Change
7415 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
7416 (octave-font-lock-keywords): Use octave-operator-regexp.
7417 (octave-completion-at-point): Rename from
7418 octave-completion-at-point-function.
7419 (inferior-octave-directory-tracker): Robustify.
7420 (octave-text-functions): Remove and fix its uses. No such things
7421 any more.
7422
7423 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7424
7425 * emacs-lisp/trace.el (trace--display-buffer): New function.
7426 (trace-make-advice): Use it.
7427
7428 2013-05-06 Juri Linkov <juri@jurta.org>
7429
7430 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
7431 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
7432 Doc fix.
7433 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
7434 in the help string. (Bug#12985)
7435
7436 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
7437
7438 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
7439
7440 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7441
7442 * progmodes/perl-mode.el: Add support for here documents.
7443 (perl-syntax-propertize-function): Match here-doc markers.
7444 (perl-syntax-propertize-special-constructs): Find their end.
7445 (perl-imenu-generic-expression): Use [:alnum:].
7446
7447 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
7448 (advice--add-function): Refresh the advice if already present
7449 (bug#14317).
7450
7451 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
7452
7453 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
7454
7455 2013-05-06 Glenn Morris <rgm@gnu.org>
7456
7457 * w32-fns.el (w32-charset-info-alist): Declare.
7458
7459 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
7460 of its defcustom properties.
7461 (eshell-cmpl-initialize): No need to load pcomplete.
7462
7463 * generic-x.el: No need to require comint when compiling.
7464
7465 * net/eudc-export.el: Make it loadable without bbdb.
7466 (top-level): Use require rather than load-library.
7467 (eudc-create-bbdb-record, eudc-bbdbify-phone)
7468 (eudc-batch-export-records-to-bbdb)
7469 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
7470 Require bbdb.
7471
7472 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7473
7474 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
7475 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
7476 some tweaks, instead.
7477
7478 2013-05-05 Leo Liu <sdl.web@gmail.com>
7479
7480 * progmodes/octave.el (octave-font-lock-keywords)
7481 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
7482 (inferior-octave-send-list-and-digest): Improve error message.
7483 (octave-mode, inferior-octave-mode): Use setq-local.
7484 (octave-help): Set info-lookup-mode.
7485
7486 2013-05-05 Richard Stallman <rms@gnu.org>
7487
7488 * vc/compare-w.el (compare-windows-whitespace):
7489 Treat no-break space as whitespace.
7490
7491 * mail/rmailsum.el (rmail-summary-rmail-update):
7492 Detect empty summary and don't change selected message.
7493 (rmail-summary-goto-msg): Likewise.
7494
7495 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
7496 Doc fixes, rename args.
7497
7498 2013-05-05 Alan Mackenzie <acm@muc.de>
7499
7500 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
7501
7502 2013-05-05 Juri Linkov <juri@jurta.org>
7503
7504 * info.el (Info-read-subfile): Use (point-min) instead of (point)
7505 to not add the length of the summary segment to the return value.
7506 (Bug#14125)
7507
7508 2013-05-05 Leo Liu <sdl.web@gmail.com>
7509
7510 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
7511 (inferior-octave-output-filter): Remove.
7512 (octave-send-region, inferior-octave-startup): Fix callers.
7513 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
7514 (octave-binary-file-extensions): New user variable.
7515 (octave-find-definition): Confirm if opening binary files.
7516 (octave-help-file): Use octave-find-definition to get the binary
7517 confirmation.
7518 (octave-help): Adjust for octave-help-file change.
7519
7520 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7521
7522 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
7523 Merge the two entries that handle function definitions.
7524 (pascal--syntax-propertize): New const.
7525 (pascal-mode): Use it. Use setq-local.
7526
7527 2013-05-04 Glenn Morris <rgm@gnu.org>
7528
7529 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
7530 (diary-from-outlook): Respect diary-from-outlook-function.
7531
7532 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7533
7534 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
7535 Move the declaration from C.
7536 (read-minibuffer, eval-minibuffer): Move from C.
7537 (completion-setup-function): Avoid minibuffer-completion-contents.
7538
7539 2013-05-03 Leo Liu <sdl.web@gmail.com>
7540
7541 * progmodes/octave.el (octave-font-lock-keywords): Do not
7542 dehighlight 'end' in comments or strings.
7543 (octave-completing-read, octave-goto-function-definition):
7544 New helpers.
7545 (octave-help-buffer): New user variable.
7546 (octave-help-file, octave-help-function): New button types.
7547 (octave-help): New command and bind it to C-h ;.
7548 (octave-find-definition): New command and bind it to M-.
7549 (user-error): Alias to error if not defined.
7550
7551 2013-05-02 Leo Liu <sdl.web@gmail.com>
7552
7553 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
7554 for \. (bug#14332)
7555 (octave-font-lock-keywords): Include [ and {.
7556
7557 2013-05-02 Leo Liu <sdl.web@gmail.com>
7558
7559 * progmodes/octave.el (inferior-octave-startup-file): Change default.
7560 (inferior-octave): Remove calling comint-mode and return the buffer.
7561 (inferior-octave-startup): Cosmetic changes.
7562
7563 2013-05-02 Leo Liu <sdl.web@gmail.com>
7564
7565 * progmodes/octave.el (octave-syntax-propertize-function):
7566 Include the case when ' is at line beginning. (Bug#14336)
7567
7568 2013-05-02 Glenn Morris <rgm@gnu.org>
7569
7570 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
7571 * desktop.el (vc-dir-mode): Just autoload it here.
7572
7573 2013-05-02 Alan Mackenzie <acm@muc.de>
7574
7575 Eliminate variable c-standard-font-lock-fontify-region-function.
7576 * progmodes/cc-mode.el
7577 (c-standard-font-lock-fontify-region-function): Remove.
7578 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
7579
7580 2013-05-01 Leo Liu <sdl.web@gmail.com>
7581
7582 * progmodes/octave.el: Compatible with older emacs-24 releases.
7583 (inferior-octave-has-built-in-variables): Remove. Built-in
7584 variables were removed from Octave in 2007.
7585 (inferior-octave-startup): Fix uses.
7586 (comint-line-beginning-position): Remove compatibility code for
7587 emacs 21.
7588
7589 2013-05-01 Juri Linkov <juri@jurta.org>
7590
7591 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
7592
7593 2013-05-01 Juri Linkov <juri@jurta.org>
7594
7595 * comint.el (comint-previous-matching-input): Don't print message
7596 "History item: %d" when `isearch-mode' is active.
7597 (comint-history-isearch-message): Print message "History item: %d"
7598 when `comint-input-ring-index' is not empty and this function is
7599 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
7600
7601 2013-05-01 Leo Liu <sdl.web@gmail.com>
7602
7603 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
7604 definitions. Use completion-at-point to insert keywords.
7605 (octave-abbrev-start): Remove.
7606 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
7607
7608 2013-04-30 Leo Liu <sdl.web@gmail.com>
7609
7610 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
7611 change.
7612
7613 2013-04-30 Alan Mackenzie <acm@muc.de>
7614
7615 Handle arbitrarily long C++ member initialisation lists.
7616 * progmodes/cc-engine.el (c-back-over-member-initializers):
7617 new function.
7618 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
7619 (most) member init lists.
7620
7621 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7622
7623 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
7624 variable.
7625
7626 2013-04-30 Leo Liu <sdl.web@gmail.com>
7627
7628 * progmodes/octave.el (octave-variables): Remove. No builtin
7629 variables any more. All converted to functions.
7630 (octave-font-lock-keywords, octave-completion-at-point-function):
7631 Fix uses.
7632 (octave-font-lock-texinfo-comment): New user variable.
7633 (octave-texinfo-font-lock-keywords): New variable for texinfo
7634 comment block.
7635 (octave-function-comment-block): New face.
7636 (octave-font-lock-texinfo-comment): New function.
7637 (octave-mode): Font lock texinfo comment block.
7638
7639 2013-04-29 Leo Liu <sdl.web@gmail.com>
7640
7641 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
7642 indexing expression.
7643 (octave-continuation-string): Do not use \.
7644 (inferior-octave-complete-impossible): Remove.
7645 (inferior-octave-completion-table)
7646 (inferior-octave-completion-at-point): Remove its uses.
7647 (inferior-octave-startup): completion_matches was introduced to
7648 Octave in 1996 so safe to assume it.
7649 (octave-function-file-comment): Improve to follow how Octave does it.
7650 (octave-update-function-file-comment): Tweak.
7651
7652 2013-04-29 Leo Liu <sdl.web@gmail.com>
7653
7654 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
7655 (inferior-octave-startup): Remove inferior-octave-startup-hook.
7656 (octave-function-file-comment): Fix typo.
7657 (octave-sync-function-file-names): Use read-char-choice.
7658
7659 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
7660
7661 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
7662 to t for the less important warnings.
7663
7664 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
7665
7666 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
7667
7668 2013-04-27 Glenn Morris <rgm@gnu.org>
7669
7670 * vc/log-view.el (log-view-current-entry):
7671 Treat "---" separator lines as part of the following rev. (Bug#14169)
7672
7673 2013-04-27 Juri Linkov <juri@jurta.org>
7674
7675 * subr.el (read-number): Doc fix about using it by interactive
7676 code letter `n'. (Bug#14254)
7677
7678 2013-04-27 Juri Linkov <juri@jurta.org>
7679
7680 * desktop.el (desktop-auto-save-timeout): New option.
7681 (desktop-file-checksum): New variable.
7682 (desktop-save): Add optional arg `auto-save' and don't auto-save
7683 if nothing changed.
7684 (desktop-auto-save-timer): New variable.
7685 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
7686 (after-init-hook): Call `desktop-auto-save-set-timer'.
7687 Suggested by Reuben Thomas <rrt@sc3d.org> in
7688 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
7689
7690 2013-04-27 Leo Liu <sdl.web@gmail.com>
7691
7692 * progmodes/octave.el (octave-function-file-p)
7693 (octave-skip-comment-forward, octave-function-file-comment)
7694 (octave-update-function-file-comment): New functions.
7695 (octave-mode-map): Bind C-c ; to
7696 octave-update-function-file-comment.
7697 (octave-mode-menu): Add octave-update-function-file-comment.
7698 (octave-mode, inferior-octave-mode): Fix doc-string.
7699 (octave-insert-defun): Conform to Octave's coding convention.
7700 (Bug#14285)
7701
7702 * files.el (basic-save-buffer): Don't let errors in
7703 before-save-hook prevent saving buffer.
7704
7705 2013-04-20 Roland Winkler <winkler@gnu.org>
7706
7707 * faces.el (read-face-name): Use completing-read if arg multiple
7708 is nil.
7709
7710 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
7711
7712 * ls-lisp.el (ls-lisp-insert-directory): If no files are
7713 displayed, move point to after the totals line.
7714 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
7715 for the details.
7716
7717 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
7718
7719 * emacs-lisp/package.el (package-autoload-ensure-default-file):
7720 Add current dir to the load-path.
7721 (package-generate-autoloads): Don't rely on
7722 autoload-ensure-default-file.
7723
7724 2013-04-26 Reuben Thomas <rrt@sc3d.org>
7725
7726 * textmodes/remember.el (remember-store-in-files): Document that
7727 the file name format is passed to `format-time-string'.
7728
7729 2013-04-26 Leo Liu <sdl.web@gmail.com>
7730
7731 * progmodes/octave.el (octave-sync-function-file-names): New function.
7732 (octave-mode): Use it in before-save-hook.
7733
7734 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
7735
7736 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
7737 (bug#14274).
7738
7739 * progmodes/octave.el (octave-smie-forward-token): Properly skip
7740 \n and comment, even if it's not an implicit ; (bug#14218).
7741
7742 2013-04-26 Glenn Morris <rgm@gnu.org>
7743
7744 * subr.el (read-number): Once more use `read' rather than
7745 `string-to-number', to trap non-numeric input. (Bug#14254)
7746
7747 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
7748
7749 * emacs-lisp/syntax.el (syntax-propertize-multiline):
7750 Use `syntax-multiline' text property consistently instead of
7751 `font-lock-multiline'. (Bug#14237)
7752
7753 2013-04-26 Glenn Morris <rgm@gnu.org>
7754
7755 * emacs-lisp/shadow.el (list-load-path-shadows):
7756 No longer necessary to check for duplicate simple.el, since
7757 2012-07-07 change to init_lread to not include installation lisp
7758 directories in load-path when running uninstalled. (Bug#14270)
7759
7760 2013-04-26 Leo Liu <sdl.web@gmail.com>
7761
7762 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
7763 (octave-mode, inferior-octave-mode): Use setq-local.
7764 (octave-not-in-string-or-comment-p): Rename to
7765 octave-in-string-or-comment-p.
7766 (octave-in-comment-p, octave-in-string-p)
7767 (octave-in-string-or-comment-p): Replace defsubst with defun.
7768
7769 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
7770
7771 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
7772
7773 2013-04-25 Bastien Guerry <bzg@gnu.org>
7774
7775 * textmodes/remember.el (remember-data-directory)
7776 (remember-directory-file-name-format): Fix custom types.
7777
7778 2013-04-25 Leo Liu <sdl.web@gmail.com>
7779
7780 * progmodes/octave.el (octave-completion-at-point-function):
7781 Make use of inferior octave process.
7782 (octave-initialize-completions): Remove.
7783 (inferior-octave-completion-table): New function.
7784 (inferior-octave-completion-at-point): Use it.
7785 (octave-completion-alist): Remove.
7786
7787 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7788
7789 * progmodes/opascal.el: Use font-lock and syntax-propertize.
7790 (opascal-mode-syntax-table): New var.
7791 (opascal-literal-kind, opascal-is-literal-end)
7792 (opascal-literal-token-at): Rewrite.
7793 (opascal--literal-start-re, opascal-font-lock-keywords)
7794 (opascal--syntax-propertize): New constants.
7795 (opascal-font-lock-defaults): Adjust.
7796 (opascal-mode): Use them. Set comment-<foo> variables as well.
7797 (delphi-comment-face, opascal-comment-face, delphi-string-face)
7798 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
7799 (delphi-other-face, opascal-other-face): Remove face variables.
7800 (opascal-save-state): Remove macro.
7801 (opascal-fontifying-progress-step): Remove constant.
7802 (opascal--ignore-changes): Remove var.
7803 (opascal-set-token-property, opascal-parse-next-literal)
7804 (opascal-is-stable-literal, opascal-complete-literal)
7805 (opascal-is-literal-start, opascal-face-of)
7806 (opascal-parse-region, opascal-parse-region-until-stable)
7807 (opascal-fontify-region, opascal-after-change)
7808 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
7809 (opascal-debug-parse-region, opascal-debug-parse-window)
7810 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
7811 (opascal-debug-fontify-buffer): Remove.
7812 (opascal-debug-mode-map): Adjust accordingly.
7813
7814 2013-04-25 Leo Liu <sdl.web@gmail.com>
7815
7816 Merge octave-mod.el and octave-inf.el into octave.el with some
7817 cleanups.
7818 * progmodes/octave.el: New file renamed from octave-mod.el.
7819 * progmodes/octave-inf.el: Merged into octave.el.
7820 * progmodes/octave-mod.el: Renamed to octave.el.
7821
7822 2013-04-25 Tassilo Horn <tsdh@gnu.org>
7823
7824 * textmodes/reftex-vars.el
7825 (reftex-label-ignored-macros-and-environments): New defcustom.
7826
7827 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
7828
7829 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7830
7831 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
7832 (smie-indent-keyword): Improve the check to ensure that the next
7833 comment is really on the same line.
7834 (smie-indent-comment): Don't align with a subsequent closer (or eob).
7835
7836 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
7837 semi-colons if the line is not otherwise empty (bug#14218).
7838
7839 2013-04-25 Glenn Morris <rgm@gnu.org>
7840
7841 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
7842
7843 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
7844
7845 * progmodes/opascal.el (opascal-set-token-property): Rename from
7846 opascal-set-text-properties and only set `token' (bug#14134).
7847 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
7848 (opascal-literal-text-properties): Remove.
7849 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
7850 Adjust callers.
7851
7852 2013-04-24 Reuben Thomas <rrt@sc3d.org>
7853
7854 * textmodes/remember.el (remember-handler-functions): Add an
7855 option for a new handler `remember-store-in-files'.
7856 (remember-data-directory, remember-directory-file-name-format):
7857 New options.
7858 (remember-store-in-files): New function to store remember notes
7859 as separate files within a directory.
7860
7861 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
7862
7863 * progmodes/compile.el (compilation-next-error-function):
7864 Pass "formats" to compilation-find-file (bug#11777).
7865
7866 2013-04-24 Glenn Morris <rgm@gnu.org>
7867
7868 * vc/vc-bzr.el (vc-bzr-print-log):
7869 * vc/vc-hg.el (vc-hg-print-log):
7870 * vc/vc-svn.el (vc-svn-print-log):
7871 Fix START-REVISION with LIMIT != 1. (Bug#14168)
7872
7873 * vc/vc-bzr.el (vc-bzr-print-log):
7874 * vc/vc-cvs.el (vc-cvs-print-log):
7875 * vc/vc-git.el (vc-git-print-log):
7876 * vc/vc-hg.el (vc-hg-print-log):
7877 * vc/vc-mtn.el (vc-mtn-print-log):
7878 * vc/vc-rcs.el (vc-rcs-print-log):
7879 * vc/vc-sccs.el (vc-sccs-print-log):
7880 * vc/vc-svn.el (vc-svn-print-log):
7881 * vc/vc.el (vc-print-log-internal): Doc fixes.
7882
7883 2013-04-23 Glenn Morris <rgm@gnu.org>
7884
7885 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
7886 Remove venerable code attempting to avoid substitute-command-keys.
7887
7888 2013-04-23 Tassilo Horn <tsdh@gnu.org>
7889
7890 * textmodes/reftex-vars.el (reftex-label-regexps):
7891 Call `reftex-compile-variables' after changes to this variable.
7892
7893 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
7894
7895 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
7896 Use lexical-binding.
7897 (jit-lock-force-redisplay): Use markers, check buffer's continued
7898 existence and beware narrowed buffers.
7899 (jit-lock-fontify-now): Adjust call accordingly.
7900
7901 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
7902
7903 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
7904 to avoid misleading the user.
7905
7906 2013-04-22 Leo Liu <sdl.web@gmail.com>
7907
7908 * info-look.el: Prefer latex2e.info. (Bug#14240)
7909
7910 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
7911
7912 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
7913
7914 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
7915 * net/tramp.el (tramp-call-process): ... here.
7916 (tramp-set-completion-function, tramp-parse-putty):
7917 * net/tramp-adb.el (tramp-adb-execute-adb-command):
7918 * net/tramp-gvfs.el (tramp-gvfs-send-command):
7919 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
7920 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
7921 (tramp-call-local-coding-command): Use `tramp-call-process'
7922 instead of `tramp-compat-call-process'.
7923
7924 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
7925 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
7926 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
7927 (tramp-find-inline-compress): Improve traces.
7928 (tramp-maybe-send-script): Check for Perl binary.
7929 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
7930
7931 2013-04-22 Daiki Ueno <ueno@gnu.org>
7932
7933 * epg.el (epg-context-pinentry-mode): New function.
7934 (epg-context-set-pinentry-mode): New function.
7935 (epg--start): Pass --pinentry-mode option to gpg command.
7936
7937 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
7938
7939 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
7940 `comint-dynamic-complete' is obsolete since 24.1, replaced by
7941 `completion-at-point'. (Bug#13774)
7942
7943 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
7944 default key binding for `describe-distribution' has been moved to
7945 `C-h C-o'. (Bug#13970)
7946
7947 2013-04-21 Glenn Morris <rgm@gnu.org>
7948
7949 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
7950 Add doc strings.
7951 (vc-print-log): Clarify interactive prompt.
7952
7953 2013-04-20 Glenn Morris <rgm@gnu.org>
7954
7955 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
7956 No longer include timestamp etc information.
7957
7958 2013-04-20 Roland Winkler <winkler@gnu.org>
7959
7960 * faces.el (read-face-name): Bug fix, return just one face if arg
7961 multiple is nil. (Bug#14209)
7962
7963 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7964
7965 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
7966 (remove-function): Autoload.
7967
7968 * comint.el (comint-redirect-original-filter-function): Remove.
7969 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
7970 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
7971 (vc-cvs-annotate-command):
7972 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
7973 * progmodes/prolog.el (prolog-consult-compile):
7974 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
7975 Use add/remove-function instead.
7976 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
7977 (gud-tooltip-process-output, gud-tooltip-tips):
7978 Use add/remove-function instead.
7979 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
7980 (scheme-interaction-mode, exit-scheme-interaction-mode):
7981 Use add/remove-function instead.
7982
7983 * vc/vc-dispatcher.el: Use lexical-binding.
7984 (vc--process-sentinel): Rename from vc-process-sentinel.
7985 Change last arg to be the code to run. Don't use vc-previous-sentinel
7986 and vc-sentinel-commands any more.
7987 (vc-exec-after): Allow code to be a function. Use add/remove-function.
7988 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
7989
7990 2013-04-19 Masatake YAMATO <yamato@redhat.com>
7991
7992 * progmodes/sh-script.el (sh-imenu-generic-expression):
7993 Handle function names with a single character. (Bug#14111)
7994
7995 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
7996
7997 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
7998 for subroutines defined in an eval (bug#14182).
7999
8000 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8001
8002 * bookmark.el (bookmark-completing-read): Improve handling of empty
8003 string (bug#14176).
8004
8005 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8006
8007 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
8008
8009 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
8010
8011 New faster Imenu implementation (bug#14058).
8012 * progmodes/python.el:
8013 (python-imenu-prev-index-position):
8014 (python-imenu-format-item-label-function)
8015 (python-imenu-format-parent-item-label-function)
8016 (python-imenu-format-parent-item-jump-label-function):
8017 New vars.
8018 (python-imenu-format-item-label)
8019 (python-imenu-format-parent-item-label)
8020 (python-imenu-format-parent-item-jump-label)
8021 (python-imenu--put-parent, python-imenu--build-tree)
8022 (python-imenu-create-index, python-imenu-create-flat-index)
8023 (python-util-popn): New functions.
8024 (python-mode): Set imenu-create-index-function to
8025 python-imenu-create-index.
8026
8027 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8028
8029 * winner.el (winner-active-region): Use region-active-p, activate-mark
8030 and deactivate-mark (bug#14225).
8031
8032 * simple.el (deactivate-mark): Don't inline it.
8033
8034 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
8035
8036 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
8037
8038 2013-04-18 Tassilo Horn <tsdh@gnu.org>
8039
8040 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
8041 file extensions from the archive-mode entry in order to prefer
8042 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
8043
8044 2013-04-18 Leo Liu <sdl.web@gmail.com>
8045
8046 * bindings.el (help-event-list): Add ?\?.
8047
8048 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8049
8050 * subr.el (with-wrapper-hook): Declare obsolete.
8051 * simple.el (filter-buffer-substring-function): New hook.
8052 (filter-buffer-substring): Use it.
8053 (filter-buffer-substring-functions): Mark obsolete.
8054 * minibuffer.el (completion-in-region-function): New hook.
8055 (completion-in-region): Use it.
8056 (completion-in-region-functions): Mark obsolete.
8057 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
8058 * abbrev.el (abbrev-expand-function): New hook.
8059 (expand-abbrev): Use it.
8060 (abbrev-expand-functions): Mark obsolete.
8061 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
8062 and :filter-return.
8063
8064 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8065
8066 * progmodes/python.el (python-nav--syntactically): Fix cornercases
8067 and do not care about match data.
8068
8069 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8070
8071 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
8072 completion tables when completing error conditions and
8073 `declare' arguments.
8074 (lisp-complete-symbol, field-complete): Mark as obsolete.
8075 (check-parens): Unmatched parens are user errors.
8076 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
8077
8078 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
8079
8080 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
8081 command changed buffer (ie. `flyspell-pre-buffer' is not current
8082 buffer), which prevents making decisions based on invalid value of
8083 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
8084 cause an error when `flyspell-pre-point' was nil after switching
8085 buffers.
8086 (flyspell-post-command-hook): No longer needs to change buffers when
8087 checking pre-word. While at it remove unnecessary progn.
8088
8089 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
8090
8091 * textmodes/ispell.el (ispell-add-per-file-word-list):
8092 Fix `flyspell-correct-word-before-point' error when accepting
8093 words and `coment-padding' is an integer by using
8094 `comment-normalize-vars' (Bug #14214).
8095
8096 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8097
8098 New defun movement commands.
8099 * progmodes/python.el (python-nav--syntactically)
8100 (python-nav--forward-defun, python-nav-backward-defun)
8101 (python-nav-forward-defun): New functions.
8102
8103 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8104
8105 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
8106 (python-syntax-context): Use named compiler-macro for backwards
8107 compatibility with Emacs 24.x.
8108
8109 2013-04-17 Leo Liu <sdl.web@gmail.com>
8110
8111 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
8112 octave-hide-process-buffer.
8113
8114 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8115
8116 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
8117 (bug#14216).
8118
8119 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
8120
8121 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
8122 Fix adjustment of offset when receiving incomplete responses from GDB
8123 (bug#14129).
8124
8125 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8126
8127 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
8128 python-mode-abbrev-table.
8129 (python-skeleton-define): Adjust accordingly.
8130 (python-mode-abbrev-table): New table that inherits from it so that
8131 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
8132
8133 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
8134 (abbrev-symbol): Use it.
8135 (abbrev--before-point): Use it since we already handle inheritance.
8136
8137 2013-04-16 Leo Liu <sdl.web@gmail.com>
8138
8139 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
8140 binding to info-lookup-symbol.
8141
8142 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
8143
8144 * minibuffer.el (completion--twq-all):
8145 * term/ns-win.el (ns-initialize-window-system):
8146 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
8147
8148 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8149
8150 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
8151 global bindings.
8152
8153 * doc-view.el (doc-view-start-process): Handle url-handler directories.
8154
8155 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
8156
8157 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
8158 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
8159 to nil.
8160 (ruby-end-of-defun): Remove the unused arg, change the docstring
8161 to reflect that this function is only used as the value of
8162 `end-of-defun-function'.
8163 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
8164 to reflect an earlier change that beginning/end-of-defun functions
8165 jump between methods in a class definition, as well as top-level
8166 functions.
8167
8168 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8169
8170 * minibuffer.el (minibuffer-complete): Don't just scroll
8171 a *Completions* that's been iconified.
8172 (minibuffer-force-complete): Make sure repetitions do cycle when going
8173 through completion-in-region -> minibuffer-complete.
8174
8175 2013-04-15 Alan Mackenzie <acm@muc.de>
8176
8177 Correct the placement of c-cpp-delimiters when there're #s not at
8178 col 0.
8179
8180 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
8181 place a submatch around the #.
8182 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
8183 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
8184 on the #, not BOL.
8185
8186 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8187
8188 * emacs-lisp/nadvice.el: Properly test names when adding advice.
8189 (advice--member-p): New arg `name'.
8190 (advice--add-function, advice-member-p): Use it (bug#14202).
8191
8192 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
8193
8194 Reformulate java imenu-generic-expression.
8195 The old expression contained ill formed regexps.
8196
8197 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
8198 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
8199 (cc-imenu-java-method-arg-regexp): New defconsts.
8200 (cc-imenu-java-build-type-args-regex): New defun.
8201 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
8202 handling of spaces in the regexp.
8203
8204 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8205
8206 * textmodes/ispell.el (ispell-command-loop): Remove
8207 flyspell highlight of a word when ispell accepts it (bug #14178).
8208
8209 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
8210
8211 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
8212 uses code from the previous `ange-ftp-run-real-handler'.
8213 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
8214 only in case that function exist. This is needed for proper
8215 unloading of Tramp.
8216
8217 2013-04-15 Tassilo Horn <tsdh@gnu.org>
8218
8219 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
8220
8221 * textmodes/reftex.el (reftex-compile-variables): Use it.
8222
8223 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8224
8225 * files.el (normal-mode): Only use default major-mode if no other mode
8226 was specified.
8227
8228 * emacs-lisp/trace.el (trace-values): New function.
8229
8230 * files.el: Allow : in local variables (bug#14089).
8231 (hack-local-variable-regexp): New var.
8232 (hack-local-variables-prop-line, hack-local-variables): Use it.
8233
8234 2013-04-13 Roland Winkler <winkler@gnu.org>
8235
8236 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
8237 data before it gets modified by bibtex-beginning-of-entry.
8238
8239 2013-04-13 Roland Winkler <winkler@gnu.org>
8240
8241 * textmodes/bibtex.el (bibtex-url): Doc fix.
8242
8243 2013-04-13 Roland Winkler <winkler@gnu.org>
8244
8245 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
8246 does not visit a BibTeX file, exclude it from the list of buffers
8247 returned by bibtex-initialize.
8248
8249 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
8250
8251 * window.el (split-window): Remove interactive form, since as a
8252 command this function is a special case of split-window-below.
8253 Correct doc string.
8254
8255 2013-04-12 Roland Winkler <winkler@gnu.org>
8256
8257 * faces.el (read-face-name): Do not override value of arg default.
8258 Allow single faces and strings as default values. Remove those
8259 elements from return value that are not faces.
8260 (describe-face): Simplify.
8261 (face-at-point): New optional args thing and multiple so that this
8262 function can provide the same functionality previously provided by
8263 read-face-name.
8264 (make-face-bold, make-face-unbold, make-face-italic)
8265 (make-face-unitalic, make-face-bold-italic, invert-face)
8266 (modify-face, read-face-and-attribute): Use face-at-point.
8267
8268 * cus-edit.el (customize-face, customize-face-other-window)
8269 * cus-theme.el (custom-theme-add-face)
8270 * face-remap.el (buffer-face-set)
8271 * facemenu.el (facemenu-set-face): Use face-at-point.
8272
8273 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
8274
8275 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
8276
8277 2013-04-10 Tassilo Horn <tsdh@gnu.org>
8278
8279 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
8280 off leading { and trailing } from field values.
8281
8282 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
8283
8284 * emacs-lisp/timer.el (timer--check): New function.
8285 (timer--time, timer-set-function, timer-event-handler): Use it.
8286 (timer-set-idle-time): Simplify.
8287 (timer--activate): CSE.
8288 (timer-event-handler): Give more info in error message.
8289 (internal-timer-start-idle): New function, moved from C.
8290
8291 * mpc.el (mpc-proc): Add `restart' argument.
8292 (mpc-proc-cmd): Use it.
8293 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
8294 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
8295 less often.
8296
8297 2013-04-10 Masatake YAMATO <yamato@redhat.com>
8298
8299 * progmodes/sh-script.el: Implement `sh-mode' own
8300 `add-log-current-defun-function' (bug#14112).
8301 (sh-current-defun-name): New function.
8302 (sh-mode): Use the function.
8303
8304 2013-04-09 Bastien Guerry <bzg@gnu.org>
8305
8306 * simple.el (choose-completion-string): Fix docstring (bug#14163).
8307
8308 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
8309
8310 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
8311
8312 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
8313 timer (bug#14156).
8314
8315 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
8316
8317 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
8318 declaration.
8319
8320 2013-04-07 Leo Liu <sdl.web@gmail.com>
8321
8322 * pcmpl-x.el: New file.
8323
8324 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
8325
8326 Do not set x-display-name until X connection is established.
8327 This is needed to prevent from weird situation described at
8328 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
8329 * frame.el (make-frame): Set x-display-name after call to
8330 window system initialization function, not before.
8331 * term/x-win.el (x-initialize-window-system): Add optional
8332 display argument and use it.
8333 * term/w32-win.el (w32-initialize-window-system):
8334 * term/ns-win.el (ns-initialize-window-system):
8335 * term/pc-win.el (msdos-initialize-window-system):
8336 Add compatible optional display argument.
8337
8338 2013-04-06 Eli Zaretskii <eliz@gnu.org>
8339
8340 * files.el (normal-backup-enable-predicate): On MS-Windows and
8341 MS-DOS compare truenames of temporary-file-directory and of the
8342 file, so that 8+3 aliases (usually found in $TEMP on Windows)
8343 don't fail comparison by compare-strings. Also, compare file
8344 names case-insensitively on MS-Windows and MS-DOS.
8345
8346 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8347
8348 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
8349 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
8350
8351 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
8352
8353 * whitespace.el (whitespace-color-on, whitespace-color-off):
8354 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
8355
8356 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
8357
8358 * ispell.el (ispell-set-spellchecker-params):
8359 Really set `ispell-args' for all equivs.
8360
8361 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8362
8363 * ido.el (ido-completions): Use extra elements of ido-decorations
8364 (bug#14143).
8365 (ido-decorations): Update docstring.
8366
8367 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
8368
8369 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
8370 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
8371 nil during initialization, in order not to miss changes since the
8372 file was opened. (Bug#14140)
8373
8374 2013-04-05 Leo Liu <sdl.web@gmail.com>
8375
8376 * kmacro.el (kmacro-call-macro): Fix bug#14135.
8377
8378 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
8379
8380 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
8381
8382 2013-04-04 Glenn Morris <rgm@gnu.org>
8383
8384 * electric.el (electric-pair-inhibit-predicate): Add :version.
8385
8386 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
8387
8388 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
8389 when a package is required several times (bug#14082).
8390
8391 2013-04-04 Roland Winkler <winkler@gnu.org>
8392
8393 * faces.el (read-face-name): Behave as promised by the docstring.
8394 Assume that arg default is a list of faces.
8395 (describe-face): Call read-face-name with list of default faces.
8396
8397 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8398
8399 * bookmark.el: Fix deletion of bookmarks (bug#13972).
8400 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
8401 (bookmark-bmenu-execute-deletions): Only skip first line if it's
8402 the header.
8403 (bookmark-exit-hook-internal): Save even if list is empty.
8404
8405 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
8406
8407 * emacs-lisp/package.el (package-pinned-packages): New var.
8408 (package--add-to-archive-contents): Obey it (bug#14118).
8409
8410 2013-04-03 Alan Mackenzie <acm@muc.de>
8411
8412 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
8413 Also adapt to the new values of element 7 of a parse state.
8414
8415 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
8416 parameter `not-in-delimiter'. Handle being inside comment opener.
8417 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
8418 character in case we're typing a '*' after a '/'.
8419 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
8420 instead by passing the parameter to c-state-pp-to-literal.
8421
8422 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
8423 for elt. 7 of a parse state.
8424
8425 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
8426
8427 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
8428 * international/latin1-disp.el, international/mule-util.el:
8429 * language/cyril-util.el, language/european.el, language/ind-util.el:
8430 * language/lao-util.el, language/thai.el, language/tibet-util.el:
8431 * language/tibetan.el, language/viet-util.el:
8432 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
8433
8434 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
8435
8436 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
8437 (electric-pair-post-self-insert-function): Use it.
8438 (electric-pair-default-inhibit): New function, extracted from
8439 electric-pair-post-self-insert-function.
8440
8441 2013-03-31 Roland Winkler <winkler@gnu.org>
8442
8443 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
8444
8445 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8446
8447 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
8448
8449 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
8450
8451 Un-indent after "pass" and "return" statements (Bug#13888)
8452 * progmodes/python.el (python-indent-block-enders): New var.
8453 (python-indent-calculate-indentation): Use it.
8454
8455 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
8456
8457 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
8458 defun. Defining it as defalias could introduce too eager
8459 byte-compiler optimization. (Bug#14030)
8460
8461 2013-03-30 Chong Yidong <cyd@gnu.org>
8462
8463 * iswitchb.el (iswitchb-read-buffer): Fix typo.
8464
8465 2013-03-30 Leo Liu <sdl.web@gmail.com>
8466
8467 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
8468 (kmacro-execute-from-register): Pass the keyboard macro to
8469 kmacro-call-macro or repeating won't work correctly.
8470
8471 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
8472
8473 * progmodes/subword.el: Back to using `forward-symbol'.
8474
8475 * subr.el (forward-whitespace, forward-symbol)
8476 (forward-same-syntax): Move from thingatpt.el.
8477
8478 2013-03-29 Leo Liu <sdl.web@gmail.com>
8479
8480 * kmacro.el (kmacro-to-register): New command.
8481 (kmacro-execute-from-register): New function.
8482 (kmacro-keymap): Bind to 'x'. (Bug#14071)
8483
8484 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
8485
8486 * mpc.el: Use defvar-local and setq-local.
8487 (mpc--proc-connect): Connection failures are not bugs.
8488 (mpc-mode-map): `follow-link' only applies to the buffer's content.
8489 (mpc-volume-map): Bind to the up-events.
8490
8491 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
8492
8493 * progmodes/subword.el (superword-mode): Use `forward-sexp'
8494 instead of `forward-symbol'.
8495
8496 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
8497
8498 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
8499 (edebug--recursive-edit): Use it.
8500 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
8501 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
8502
8503 2013-03-28 Leo Liu <sdl.web@gmail.com>
8504
8505 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
8506
8507 2013-03-27 Eli Zaretskii <eliz@gnu.org>
8508
8509 * facemenu.el (list-colors-callback): New defvar.
8510 (list-colors-redisplay): New function.
8511 (list-colors-display): Install list-colors-redisplay as the
8512 revert-buffer-function. (Bug#14063)
8513
8514 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
8515
8516 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
8517 and suffixes don't overlap (bug#14061).
8518
8519 * case-table.el: Use lexical-binding.
8520 (case-table-get-table): New function.
8521 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
8522
8523 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
8524
8525 * progmodes/subword.el: Add `superword-mode' to do word motion
8526 over symbol_words (parallels and leverages `subword-mode' which
8527 does word motion inside MixedCaseWords).
8528
8529 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
8530
8531 * eshell/em-unix.el: Move su and sudo to...
8532 * eshell/em-tramp.el: ...Eshell tramp module.
8533
8534 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
8535
8536 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
8537 Change return value to be a sexp. Delay `get-buffer' to after
8538 restoring the desktop (bug#13951).
8539
8540 2013-03-26 Leo Liu <sdl.web@gmail.com>
8541
8542 * register.el: Move semantic tag handling back to
8543 cedet/semantic/senator.el. (Bug#14052)
8544
8545 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
8546
8547 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
8548 into the prompt either (bug#13963).
8549
8550 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
8551
8552 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
8553 part of "(error-foo)".
8554
8555 2013-03-24 Juri Linkov <juri@jurta.org>
8556
8557 * replace.el (list-matching-lines-prefix-face): New defcustom.
8558 (occur-1): Pass `list-matching-lines-prefix-face' to the function
8559 `occur-engine' if `face-differs-from-default-p' returns t.
8560 (occur-engine): Add `,' inside backquote construct to evaluate
8561 `prefix-face'. Propertize the prefix with the `prefix-face' face.
8562 Pass `prefix-face' to the functions `occur-context-lines' and
8563 `occur-engine-add-prefix'.
8564 (occur-engine-add-prefix, occur-context-lines): Add optional arg
8565 `prefix-face' and propertize the prefix with `prefix-face'.
8566 (Bug#14017)
8567
8568 2013-03-24 Leo Liu <sdl.web@gmail.com>
8569
8570 * nxml/rng-valid.el (rng-validate-while-idle)
8571 (rng-validate-quick-while-idle): Guard against deleted buffer.
8572 (Bug#13999)
8573
8574 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
8575 is the last entry in kill-buffer-hook.
8576
8577 * files.el (kill-buffer-hook): Doc fix.
8578
8579 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
8580
8581 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
8582 Make it safe-local.
8583
8584 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
8585
8586 2013-03-23 Leo Liu <sdl.web@gmail.com>
8587
8588 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
8589 Remove.
8590
8591 * nxml/rng-valid.el (rng-validate-mode)
8592 (rng-after-change-function, rng-do-some-validation):
8593 * nxml/rng-maint.el (rng-validate-buffer):
8594 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
8595 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
8596 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
8597 (nxml-extend-after-change-region): Use with-silent-modifications.
8598
8599 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
8600 timer-idle-list.
8601
8602 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
8603 (rng-next-error-1, rng-previous-error-1): Do not let-bind
8604 timer-idle-list. (Bug#13999)
8605
8606 2013-03-23 Juri Linkov <juri@jurta.org>
8607
8608 * info.el (info-index-match): New face.
8609 (Info-index, Info-apropos-matches): Add a nested subgroup to the
8610 main pattern and add text properties with the new face to matches
8611 in index entries relative to the beginning of the index entry.
8612 (Bug#14015)
8613
8614 2013-03-21 Eric Ludlam <zappo@gnu.org>
8615
8616 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
8617 Inhibit read only while inserting objects.
8618
8619 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
8620
8621 * progmodes/cfengine.el: Update docs to mention
8622 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
8623 symbol motion. Remove "_" from the word syntax.
8624
8625 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
8626
8627 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
8628 syntax for both `cfengine2-mode' and `cfengine3-mode'.
8629
8630 2013-03-20 Juri Linkov <juri@jurta.org>
8631
8632 * info.el (Info-next-reference-or-link)
8633 (Info-prev-reference-or-link): New functions.
8634 (Info-next-reference, Info-prev-reference): Use them.
8635 (Info-try-follow-nearest-node): Handle footnote navigation.
8636 (Info-fontify-node): Fontify footnotes. (Bug#13989)
8637
8638 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
8639
8640 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
8641 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
8642
8643 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
8644
8645 Suppress unnecessary non-ASCII chatter during build process.
8646 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
8647 (batch-skkdic-convert): Suppress most of the chatter.
8648 It's not needed so much now that machines are faster,
8649 and its non-ASCII component was confusing; see Dmitry Gutov in
8650 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
8651
8652 2013-03-20 Leo Liu <sdl.web@gmail.com>
8653
8654 * ido.el (ido-chop): Fix bug#10994.
8655
8656 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
8657
8658 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
8659 Remove vars.
8660 (whitespace-color-on, whitespace-color-off):
8661 Use `font-lock-fontify-buffer' (Bug#13817).
8662
8663 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
8664
8665 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
8666 remapping in mode-line.
8667 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
8668
8669 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
8670
8671 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
8672 value for `whitespace-line' face (Bug#13875).
8673 (whitespace-font-lock-keywords): Change description.
8674 (whitespace-color-on): Don't save `font-lock-keywords' value, save
8675 the constructed keywords instead.
8676 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
8677
8678 2013-03-19 Leo Liu <sdl.web@gmail.com>
8679
8680 * progmodes/compile.el (compilation-display-error): New command.
8681 (compilation-mode-map, compilation-minor-mode-map): Bind it to
8682 C-o. (Bug#13992)
8683
8684 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
8685
8686 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
8687
8688 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
8689
8690 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
8691
8692 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
8693
8694 * net/tramp-compat.el (tramp-compat-user-error): New defun.
8695
8696 * net/tramp-adb.el (tramp-adb-handle-shell-command):
8697 * net/tramp-gvfs.el (top):
8698 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
8699 (tramp-handle-shell-command): Use it.
8700 (tramp-dissect-file-name): Raise an error when hostname is a
8701 method name, and neither method nor user is specified.
8702
8703 * net/trampver.el: Update release number.
8704
8705 2013-03-18 Leo Liu <sdl.web@gmail.com>
8706
8707 Make sure eldoc can be turned off properly.
8708 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
8709 eldoc-mode.
8710 (eldoc-display-message-p): Revert last change.
8711 (eldoc-display-message-no-interference-p)
8712 (eldoc-print-current-symbol-info): Tweak.
8713
8714 2013-03-18 Tassilo Horn <tsdh@gnu.org>
8715
8716 * doc-view.el (doc-view-new-window-function): Check the new window
8717 overlay's display property instead the char property of the
8718 buffer's first char. Use `with-selected-window' instead of
8719 `save-window-excursion' with `select-window'.
8720 (doc-view-document->bitmap): Check the current doc-view overlay's
8721 display property instead the char property of the buffer's first char.
8722
8723 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
8724
8725 Automate the build of ja-dic.el (Bug#13984).
8726 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
8727 from the input, rather than assume that it's been done for us by the
8728 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
8729 the current date into a ja-dic.el comment, as that complicates
8730 regression testing.
8731
8732 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
8733
8734 * whitespace.el: Fix double evaluation.
8735 (whitespace-space, whitespace-hspace, whitespace-tab)
8736 (whitespace-newline, whitespace-trailing, whitespace-line)
8737 (whitespace-space-before-tab, whitespace-indentation)
8738 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
8739 obsolete defvars.
8740 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
8741 (whitespace-color-on): Use a single font-lock-add-keywords call.
8742 Fix double-evaluation of face variables.
8743
8744 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
8745
8746 * net/tramp-adb.el (tramp-adb-parse-device-names):
8747 Use `start-process' instead of `call-process'. Otherwise, the
8748 function might be blocked under MS Windows. (Bug#13299)
8749
8750 2013-03-17 Leo Liu <sdl.web@gmail.com>
8751
8752 Extend eldoc to display info in the mode-line. (Bug#13978)
8753 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
8754 (eldoc-mode-line-string): New variable.
8755 (eldoc-minibuffer-message): New function.
8756 (eldoc-message-function): New variable.
8757 (eldoc-message): Use it.
8758 (eldoc-display-message-p)
8759 (eldoc-display-message-no-interference-p):
8760 Support eldoc-post-insert-mode.
8761
8762 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
8763 (eval-expression): Run it.
8764
8765 2013-03-17 Roland Winkler <winkler@gnu.org>
8766
8767 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
8768 strings in the list of return values.
8769
8770 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
8771
8772 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
8773 radix before checking for HMS forms.
8774
8775 2013-03-16 Leo Liu <sdl.web@gmail.com>
8776
8777 * progmodes/scheme.el: Add indentation and font-locking for λ.
8778 (Bug#13975)
8779
8780 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
8781
8782 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
8783 token before point (bug#13942).
8784
8785 2013-03-16 Leo Liu <sdl.web@gmail.com>
8786
8787 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
8788
8789 2013-03-16 Eli Zaretskii <eliz@gnu.org>
8790
8791 * startup.el (command-line-normalize-file-name): Fix handling of
8792 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
8793 <xfq.free@gmail.com> in
8794 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
8795
8796 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
8797
8798 Sync with Tramp 2.2.7.
8799
8800 * net/trampver.el: Update release number.
8801
8802 2013-03-14 Tassilo Horn <tsdh@gnu.org>
8803
8804 * doc-view.el: Fix bug#13887.
8805 (doc-view-insert-image): Don't modify overlay associated to
8806 non-live windows, and implement horizontal centering of image in
8807 case it's smaller than the window.
8808 (doc-view-new-window-function): Force redisplay of new windows on
8809 doc-view buffers.
8810
8811 2013-03-13 Karl Fogel <kfogel@red-bean.com>
8812
8813 * saveplace.el (save-place-alist-to-file): Don't sort
8814 `save-place-alist', just pretty-print it (bug#13882).
8815
8816 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
8817
8818 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
8819 Check whether `default-file-name-coding-system' is bound.
8820 It isn't in XEmacs.
8821
8822 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
8823
8824 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
8825 backquotes for `obsolete' (bug#13929).
8826
8827 * international/mule.el (find-auto-coding): Include file name in
8828 obsolescence warning (bug#13922).
8829
8830 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
8831
8832 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
8833 for CFEngine 3-specific indentation.
8834 (cfengine3-indent-line): Use it. Fix up category regex.
8835 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
8836
8837 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
8838
8839 * type-break.el (type-break-file-name):
8840 * textmodes/remember.el (remember-data-file):
8841 * strokes.el (strokes-file):
8842 * shadowfile.el (shadow-initialize):
8843 * saveplace.el (save-place-file):
8844 * ps-bdf.el (bdf-cache-file):
8845 * progmodes/idlwave.el (idlwave-config-directory):
8846 * net/quickurl.el (quickurl-url-file):
8847 * international/kkc.el (kkc-init-file-name):
8848 * ido.el (ido-save-directory-list-file):
8849 * emulation/viper.el (viper-custom-file-name):
8850 * emulation/vip.el (vip-startup-file):
8851 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
8852 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
8853
8854 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
8855
8856 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
8857 * language/thai-word.el: Switch to UTF-8.
8858
8859 See ChangeLog.16 for earlier changes.
8860
8861 ;; Local Variables:
8862 ;; coding: utf-8
8863 ;; End:
8864
8865 Copyright (C) 2011-2013 Free Software Foundation, Inc.
8866
8867 This file is part of GNU Emacs.
8868
8869 GNU Emacs is free software: you can redistribute it and/or modify
8870 it under the terms of the GNU General Public License as published by
8871 the Free Software Foundation, either version 3 of the License, or
8872 (at your option) any later version.
8873
8874 GNU Emacs is distributed in the hope that it will be useful,
8875 but WITHOUT ANY WARRANTY; without even the implied warranty of
8876 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8877 GNU General Public License for more details.
8878
8879 You should have received a copy of the GNU General Public License
8880 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.