]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Support newer versions of libjpeg on MS-Windows.
[gnu-emacs] / lisp / ChangeLog
1 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
2
3 * term/w32-win.el (dynamic-library-alist): Support newer versions
4 of libjpeg starting with v7: look only for the DLL from the
5 version against which Emacs was built.
6
7 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
8
9 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
10 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
11 Add property :safe.
12 (ruby-deep-arglist): Add property :type.
13
14 2013-10-31 Glenn Morris <rgm@gnu.org>
15
16 * Makefile.in (custom-deps, finder-data): No need to setq the target
17 variables, we are in the right directory and the defaults work fine.
18
19 2013-10-30 Glenn Morris <rgm@gnu.org>
20
21 * Makefile.in (autoloads): Do not use abs_lisp.
22
23 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
24 `newline' does not respect `standard-output', so use `princ'.
25
26 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
27
28 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
29 * buff-menu.el (Buffer-menu--unmark): New function.
30 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
31
32 2013-10-30 Glenn Morris <rgm@gnu.org>
33
34 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
35
36 * emacs-lisp/package.el (lm-homepage): Declare.
37
38 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
39 Fix doc typos.
40
41 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
42
43 * Makefile.in (finder-data, autoloads, update-subdirs)
44 (compile-main, compile-clean, compile-always, bootstrap-clean):
45 Check return value of cd.
46 (compile-calc): Remove.
47
48 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
49
50 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
51
52 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
53 (byte-compile-and-folded): New function.
54 (=, <, >, <=, >=): Use it.
55
56 * dos-w32.el (minibuffer-history-case-insensitive-variables)
57 (path-separator, null-device, buffer-file-coding-system)
58 (lpr-headers-switches): Check system-type before modifying them.
59 (find-buffer-file-type-coding-system): Mark obsolete.
60 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
61 find-file-not-found-set-buffer-file-coding-system.
62 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name):
63 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
64 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p):
65 (w32-direct-print-region-helper, w32-direct-print-region-function)
66 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
67 * startup.el (normal-top-level-add-subdirs-to-load-path):
68 * ps-print.el (ps-print-region-function):
69 * lpr.el (print-region-function): Use new name.
70
71 * subr.el (custom-declare-variable-early): Remove function.
72 (custom-declare-variable-list): Remove var.
73 (error, user-error): Remove `while' loop.
74 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
75 (user-emacs-directory-warning, locate-user-emacs-file):
76 Move to files.el.
77 * simple.el (read-quoted-char-radix, read-quoted-char):
78 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
79 Move from subr.el.
80 * custom.el (custom-declare-variable-list): Don't process
81 custom-declare-variable-list.
82
83 * progmodes/python.el (python-shell-get-buffer): New function.
84 (python-shell-get-process): Use it.
85 (python-shell-send-string): Always use utf-8 and add a cookie to tell
86 Python which encoding was used. Don't split-string since we only care
87 about the first line. Return the temp-file, if applicable.
88 (python-shell-send-region): Tell compile.el how to turn locations in
89 the temp-file into locations in the source buffer.
90
91 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
92
93 * subr.el (undefined): Add missing behavior from the C code for
94 unbound keys.
95
96 * rect.el: Use lexical-binding. Add new rectangular region support.
97 (rectangle-mark): New command.
98 (rectangle--region): New var.
99 (deactivate-mark-hook): Reset rectangle--region.
100 (rectangle--extract-region, rectangle--insert-for-yank)
101 (rectangle--highlight-for-redisplay)
102 (rectangle--unhighlight-for-redisplay): New functions.
103 (region-extract-function, redisplay-unhighlight-region-function)
104 (redisplay-highlight-region-function): Use them to handle
105 rectangular region.
106 * simple.el (region-extract-function): New var.
107 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
108 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
109 (kill-region): Replace obsolete `yank-handler' arg with `region'.
110 (copy-region-as-kill, kill-ring-save): Add `region' argument.
111 (redisplay-unhighlight-region-function)
112 (redisplay-highlight-region-function): New vars.
113 (redisplay--update-region-highlight): New function.
114 (pre-redisplay-function): Use it.
115 (exchange-point-and-mark): Don't deactivate the mark before
116 reactivate-it anyway.
117 * comint.el (comint-kill-region): Remove yank-handler argument.
118 * delsel.el (delete-backward-char, backward-delete-char-untabify)
119 (delete-char): Remove property, since it's now part of their
120 default behavior.
121 (self-insert-iso): Remove property since this command doesn't exist.
122
123 * emacs-lisp/package.el (package--download-one-archive)
124 (describe-package-1): Don't query the user about final newline.
125
126 2013-10-29 Daniel Colascione <dancol@dancol.org>
127
128 * net/tramp.el (tramp-methods): Document new functionality.
129 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
130 tramp-hostname-checker if method provides one instead of scanning
131 argument list for "%h" to decide hostname acceptability.
132
133 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
134
135 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
136 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
137 Handle COPY-CONTENTS. (Bug#15737)
138
139 2013-10-28 Daiki Ueno <ueno@gnu.org>
140
141 * epa-file.el
142 (epa-file-cache-passphrase-for-symmetric-encryption):
143 Document that this option has no effect with GnuPG 2.0 (bug#15552).
144
145 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
146
147 * image.el (defimage):
148 (image-load-path): Doc fixes.
149
150 2013-10-27 Alan Mackenzie <acm@muc.de>
151
152 Indent statements in macros following "##" correctly.
153 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
154 Modify the "#" arm of a cond form to handle "#" and "##" operators.
155
156 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
157
158 * linum.el (linum-update-window): Fix boundary test (bug#13446).
159
160 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
161
162 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
163 after `=' is probably a new expression.
164
165 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
166
167 * man.el (man-imenu-title): New option.
168 (Man-mode-map): Add menu. (Bug#15722)
169 (Man-mode): Add imenu to menu.
170
171 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
172
173 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
174 specific in what the first arg can be: a non-keyword word,
175 string/regexp/percent literal opener, opening paren, or unary
176 operator followed directly by word.
177
178 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
179
180 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
181 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
182 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
183 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
184 Remove vars, they do not apply any more.
185 (prolog-mode-abbrev-table): Remove redundant declaration.
186 (prolog-upper-case-string, prolog-lower-case-string): Remove.
187 (prolog-use-smie): Remove.
188 (prolog-smie-rules): Add indentation rule for the if-then-else layout
189 supported by prolog-electric-if-then-else-flag.
190 (prolog-mode-variables, prolog-menu): Use setq-local.
191 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
192 Remove binding to `Backspace' since this key doesn't exist anyway.
193 Remove bindings for electric self-inserting keys.
194 (prog-mode): Assume it's defined.
195 (prolog-post-self-insert): New function.
196 (prolog-mode): Use it.
197 (prolog-indent-line, prolog-indent-level)
198 (prolog-find-indent-of-matching-paren)
199 (prolog-indentation-level-of-line, prolog-goto-comment-column)
200 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
201 (prolog-goto-next-paren, prolog-in-string-or-comment)
202 (prolog-tokenize, prolog-inside-mline-comment)
203 (prolog-find-start-of-mline-comment): Remove functions.
204 (prolog-find-unmatched-paren, prolog-clause-end)
205 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
206 (prolog-electric--if-then-else): Rename from
207 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
208 (prolog-tokenize-searchkey): Remove const.
209 (prolog-clause-info): Use forward-sexp.
210 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
211 (prolog-electric-if-then-else): Remove commands.
212 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
213 for use in post-self-insert-hook.
214 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
215 for use in post-self-insert-hook.
216 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
217 for use in post-self-insert-hook.
218 (prolog-electric--underscore): Rename from prolog-electric--underscore;
219 adapt it for use in post-self-insert-hook.
220
221 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
222
223 * emacs-lisp/ert.el (ert-run-tests-interactively):
224 Use `completing-read'. (Bug#9756)
225
226 2013-10-25 Eli Zaretskii <eliz@gnu.org>
227
228 * simple.el (line-move): Call line-move-1 instead of
229 line-move-visual when the current window hscroll is zero, but
230 temporary-goal-column indicates we will need to hscroll as result
231 of the movement. (Bug#15712)
232
233 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
234
235 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
236 capitalization. Use :visible instead of :active.
237 Fix `ruby-indent-exp' reference. Add menu items for the generic
238 commands that are used with SMIE.
239 (ruby-do-end-to-brace): Insert space after `{'.
240
241 2013-10-25 John Anthony <john@jo.hnanthony.com>
242
243 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
244
245 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
246
247 2013-10-25 Glenn Morris <rgm@gnu.org>
248
249 * vc/vc.el (vc-print-log): Don't use a working revision unless
250 one was explicitly specified. (Bug#15322)
251
252 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
253
254 * subr.el (add-to-list): Preserve return value in compiler-macro
255 (bug#15692).
256
257 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
258
259 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
260 result. Ask user to retry using '-all' flag. (Bug#15701)
261
262 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
263
264 * emacs-lisp/smie.el: New smie-config system.
265 (smie-config): New defcustom.
266 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
267 (smie-config-guess, smie-config-save): New commands.
268 (smie-config--mode-local, smie-config--buffer-local)
269 (smie-config--trace, smie-config--modefuns): New vars.
270 (smie-config--advice, smie-config--mode-hook)
271 (smie-config--setter, smie-config-local, smie-config--get-trace)
272 (smie-config--guess-value, smie-config--guess): New functions.
273 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
274 text properties. Treat "string fence" syntax like string syntax.
275
276 * progmodes/sh-script.el (sh-use-smie): Change default.
277 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
278 (sh-var-value): Simplify by CSE.
279 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
280 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
281 is used.
282 (sh-guess-basic-offset): Use cl-incf.
283 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
284
285 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
286
287 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
288 (bug#15699).
289
290 2013-10-24 Glenn Morris <rgm@gnu.org>
291
292 * Makefile.in (abs_top_srcdir): Remove.
293 (update-subdirs): Use relative path to update-subdirs.
294
295 2013-10-24 Eli Zaretskii <eliz@gnu.org>
296
297 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
298 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
299 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
300 Call unmsys--file-name before expand-file-name, not after it.
301
302 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
303
304 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
305 (ert-test-skipped): New error.
306 (ert-skip, ert-stats-skipped): New defuns.
307 (ert--skip-unless): New macro.
308 (ert-test-skipped): New struct.
309 (ert--run-test-debugger, ert-test-result-type-p)
310 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
311 (ert--stats-set-test-and-result, ert-char-for-test-result)
312 (ert-string-for-test-result, ert-run-tests-batch)
313 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
314 Handle skipped tests. (Bug#9803)
315
316 2013-10-24 Glenn Morris <rgm@gnu.org>
317
318 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
319
320 * Makefile.in (abs_top_srcdir): New, set by configure.
321 (update-subdirs): Correct build-aux location.
322
323 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
324
325 * vc/vc.el (vc-print-root-log): Always set `default-directory'
326 value, whether we could auto-deduce `backend', or not.
327
328 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
329 with parameters" example. Simplify the "is it block or is it
330 hash" check, but also make it more thorough.
331
332 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
333
334 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
335
336 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
337
338 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
339 { if it is hanging.
340
341 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
342 :before ";".
343
344 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
345
346 * progmodes/compile.el (compilation-directory-matcher)
347 (compilation-page-delimiter):
348 Support GNU Make-4.0 directory quoting. (Bug#15678)
349
350 2013-10-23 Leo Liu <sdl.web@gmail.com>
351
352 * ido.el (ido-tidy): Handle read-only text.
353
354 2013-10-23 Glenn Morris <rgm@gnu.org>
355
356 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
357 (emacs, compile, compile-always):
358 Quote entities that might contain whitespace.
359 (custom-deps, finder-data, autoloads): Use abs_lisp.
360 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
361 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
362 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
363
364 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
365
366 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
367 Use `following-char'.
368
369 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
370
371 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
372 * progmodes/ruby-mode.el (ruby-smie-rules):
373 Remove corresponding workaround. Fix indentation rule of ";" so it
374 also applies when ";" is the parent.
375
376 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
377
378 * frame.el (display-screens, display-pixel-height)
379 (display-pixel-width, display-mm-width, display-backing-store)
380 (display-save-under, display-planes, display-color-cells)
381 (display-visual-class, display-monitor-attributes-list):
382 Mention the optional ‘display’ argument in doc strings.
383
384 2013-10-22 Michael Gauland <mikelygee@amuri.net>
385
386 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
387 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
388
389 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
390
391 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
392 TODO. Add "." after " @ ".
393 (ruby-smie--at-dot-call): New function. Checks if point at method
394 call with explicit target.
395 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
396 to the method name tokens when it precedes them.
397 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
398 (ruby-smie-rules): Add rule for indentation before and after "."
399 token.
400
401 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
402
403 * textmodes/remember.el (remember-diary-extract-entries):
404 Avoid add-to-list.
405
406 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
407 an instruction.
408
409 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
410
411 * progmodes/ruby-mode.el (ruby-smie-grammar): Add (almost) all infix operators.
412 (ruby-smie--implicit-semi-p): Add new operator chars.
413
414 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
415 `smie-down-list'.
416 (ruby-smie--args-separator-p): Check that there's no newline
417 between method call and its arguments.
418
419 2013-10-20 Alan Mackenzie <acm@muc.de>
420
421 Allow comma separated lists after Java "implements".
422
423 * progmodes/cc-engine.el (c-backward-over-enum-header):
424 Parse commas.
425 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
426 from a "disallowed" list in enum fontification.
427
428 2013-10-20 Johan Bockgård <bojohan@gnu.org>
429
430 * startup.el (default-frame-background-mode): Remove unused defvar.
431
432 * progmodes/verilog-mode.el (verilog-mode): Don't set
433 comment-indent-function globally.
434
435 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
436
437 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
438 Move Info menu item creation to ns-win.el.
439
440 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
441 in menu bar.
442
443 * menu-bar.el: Move GNUStep specific menus...
444
445 * term/ns-win.el (ns-initialize-window-system): ... to here.
446
447 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
448
449 * simple.el (newline): Only run post-self-insert-hook when
450 called interactively.
451
452 2013-10-19 Johan Bockgård <bojohan@gnu.org>
453
454 * icomplete.el (icomplete-with-completion-tables): Add :version.
455
456 2013-10-19 Alan Mackenzie <acm@muc.de>
457
458 Fix fontification bugs with constructors and const.
459
460 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
461 CASE 2) Remove the check for the absence of a suffix construct
462 after a function declaration with only types (no identifiers) in
463 the parentheses. Also, accept a function declaration with just a
464 type inside the parentheses, if this type can be positively
465 recognised as such, or if a prefix keyword like "explicit" nails
466 down the construct as a declaration.
467
468 2013-10-19 Eli Zaretskii <eliz@gnu.org>
469
470 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
471 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
472 the problem whereby selecting a menu item that leads to a
473 minibuffer prompt moves the cursor out of the minibuffer window,
474 making it hard to type at the prompt. Suggested by Stefan Monnier
475 <monnier@iro.umontreal.ca>.
476
477 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
478
479 * menu-bar.el: Don't make Services menu.
480
481 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
482
483 * ffap.el: Handle "/usr/include/c++/<version>" directories.
484 (ffap-alist): Use ffap-c++-mode for c++-mode.
485 (ffap-c++-path): New variable.
486 (ffap-c++-mode): New function.
487
488 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
489
490 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
491
492 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
493
494 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
495 introduced on 2013-09-08, which results in an infinite loop
496 requesting a password.
497
498 2013-10-18 Glenn Morris <rgm@gnu.org>
499
500 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
501
502 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
503
504 Sync with upstream verilog-mode revision 1a6ecec7.
505 * progmodes/verilog-mode.el (verilog-mode-version): Update.
506 (verilog-mode-release-date): Remove.
507 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
508 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
509 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
510 (verilog-auto-tieoff-ignore-regexp)
511 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
512 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
513 (verilog-signals-with, verilog-dir-cache-preserving)
514 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
515 Doc fixes.
516 (verilog-case-fold): New option, to control case folding in
517 regexp searches, bug597.
518 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
519 (verilog-string-match-fold, verilog-in-paren-count)
520 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
521 (verilog-at-close-struct-p): New functions.
522 (verilog-beg-block-re-ordered, verilog-extended-case-re)
523 (verilog-forward-sexp, verilog-set-auto-endcomments):
524 (verilog-leap-to-case-head): Handle "unique0" case.
525 (verilog-in-constraint-re): New constant.
526 (verilog-keywords, verilog-type-font-keywords):
527 Add some SystemVerilog 1800-2012 keywords.
528 (verilog-label-be): Remove unimplemented argument, bug669.
529 (verilog-batch-execute-func): When batch expanding clear
530 create-lockfiles to prevent spurious user locks when a file ends
531 up not changing.
532 (verilog-calculate-indent, verilog-calc-1)
533 (verilog-at-close-constraint-p, verilog-at-constraint-p)
534 (verilog-do-indent): Fix indentation of nested constraints
535 and structures.
536 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
537 (verilog-auto-inst-param): Use verilog-string-match-fold.
538 (verilog-read-inst-module-matcher):
539 Fix AUTOINST on gate primitives with #1.
540 (verilog-read-decls): Fix double-declaring user-defined typed signals.
541 Reads all user-defined typed variables.
542 (verilog-read-defines): Fix reading definitions inside comments, bug647.
543 (verilog-signals-matching-regexp)
544 (verilog-signals-not-matching-regexp, verilog-auto):
545 Respect verilog-case-fold.
546 (verilog-diff-report): Fix line count.
547 (verilog-auto-assign-modport): Remove unused local `modi'.
548 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
549 better handle multidimensional arrays.
550 Fix packed array ports misadding bit index in AUTOINST, bug637.
551 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
552 to not double-declare existing outputs and inputs, respectively.
553 (verilog-template-map): Bind U to verilog-sk-uvm-component.
554 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
555 (verilog-sk-uvm-component): New skeleton.
556 (verilog-submit-bug-report): Add verilog-case-fold,
557 remove verilog-mode-release-date.
558
559 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
560
561 * lisp/subr.el (sit-for): Call (input-pending-p t) so as to behave
562 as before.
563
564 2013-10-18 Reuben Thomas <rrt@sc3d.org>
565
566 * textmodes/remember.el (remember): set buffer-offer-save in
567 remember buffers (bug#13566).
568
569 2013-10-18 Daniel Colascione <dancol@dancol.org>
570
571 When evaluating forms in ielm, direct standard output to ielm
572 buffer. Add new ielm-return-for-effect command. Remove trailing
573 whitespace throughout.
574
575 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
576 (ielm-return-for-effect): New command.
577 (ielm-send-input): Accept optional `for-effect' parameter.
578 (ielm-eval-input): Accept optional `for-effect' parameter.
579 Bind `standard-output' to stream we create using
580 `ielm-standard-output-impl'. Suppress printing result when
581 `for-effect'.
582 (ielm-standard-output-impl): New function.
583 (inferior-emacs-lisp-mode): Explain new features in documentation.
584
585 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
586
587 Code cleanup.
588
589 * net/tramp.el (tramp-debug-message): Do not check for connection
590 buffer.
591 (tramp-message): Use "vector" connection property.
592
593 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
594 (tramp-equal-remote, tramp-eshell-directory-change)
595 * net/tramp-adb.el (tramp-adb-handle-copy-file)
596 (tramp-adb-handle-rename-file)
597 * net/tramp-cmds.el (tramp-list-remote-buffers)
598 (tramp-cleanup-connection, tramp-cleanup-this-connection)
599 * net/tramp-compat.el (tramp-compat-process-running-p)
600 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
601 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
602 (tramp-gvfs-handle-rename-file)
603 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
604 (tramp-set-file-uid-gid)
605 * net/tramp-smb.el (tramp-smb-handle-copy-file)
606 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
607 of `file-remote-p'.
608
609 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
610 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
611 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
612 (tramp-gw-open-network-stream): Suppress unrelated traces.
613
614 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
615 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
616 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
617 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
618 connection property.
619
620 * net/tramp-cache.el (top): Suppress traces when reading
621 persistency file.
622
623 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
624 Refactor common code. Improve debug message.
625 (tramp-maybe-open-connection)
626 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
627 connection buffer too early.
628
629 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
630 from `tramp-smb-actions-with-acl'.
631 (tramp-smb-actions-set-acl): New defconst.
632 (tramp-smb-handle-copy-directory)
633 (tramp-smb-action-get-acl): New defun, renamed from
634 `tramp-smb-action-with-acl'.
635 (tramp-smb-action-set-acl): New defun.
636 (tramp-smb-handle-set-file-acl): Rewrite.
637
638 2013-10-17 Glenn Morris <rgm@gnu.org>
639
640 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
641
642 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
643
644 * skeleton.el (skeleton-newline): Remove.
645 (skeleton-internal-1): Use (insert "\n") instead.
646
647 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
648 let-bindings.
649
650 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
651 forward-sexp-function while we redo its job (bug#15613).
652
653 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
654
655 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
656 represented by lists.
657
658 2013-10-16 Glenn Morris <rgm@gnu.org>
659
660 * tmm.el (tmm--history): New dynamic variable.
661 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
662
663 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
664
665 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
666 (tramp-smb-errors): Add error messages.
667 (tramp-smb-actions-with-acl): New defconst.
668 (tramp-smb-file-name-handler-alist) [set-file-acl]: Add handler.
669 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
670 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
671 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
672 (tramp-smb-get-stat-capability): Fix tests.
673
674 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
675
676 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
677 (bug#15580).
678
679 2013-10-16 Glenn Morris <rgm@gnu.org>
680
681 * ansi-color.el (ansi-color-drop-regexp):
682 Add 1J, 1K, 2K. (Bug#15617)
683
684 * files.el (hack-local-variables--warned-lexical): New.
685 (hack-local-variables):
686 Warn about misplaced lexical-binding. (Bug#15616)
687
688 * net/eww.el (eww-render): Always set eww-current-url,
689 and update header line. (Bug#15622)
690 (eww-display-html): ... Rather than just doing it here.
691
692 2013-10-15 Eli Zaretskii <eliz@gnu.org>
693
694 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
695 menu navigations commands.
696
697 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
698
699 * progmodes/subword.el (subword-capitalize): Be careful when
700 the search for [[:alpha:]] fails (bug#15580).
701
702 2013-10-14 Eli Zaretskii <eliz@gnu.org>
703
704 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
705 to commands that scroll the menu.
706
707 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
708
709 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
710 Handle methods ending with `?' and `!'.
711
712 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
713
714 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
715 `japanese-cp932' to `cp932' to fix the problem where saving a
716 source file written in Shift_JIS twice would end up having
717 `coding: japanese-cp932' which Ruby could not recognize.
718 (ruby-mode-set-encoding): Add support for encodings mapped to nil
719 in `ruby-encoding-map'.
720 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
721 doesn't need to be explicitly declared in magic comment.
722 (ruby-encoding-map): Add type declaration for better customize UI.
723
724 2013-10-13 Glenn Morris <rgm@gnu.org>
725
726 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
727 Occur buffers are read-only. http://bugs.debian.org/720775
728
729 * emacs-lisp/authors.el (authors-fixed-entries):
730 Comment out old alpha stuff.
731
732 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
733
734 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
735 to `after-save-hook' instead of `before-save-hook'.
736 (ruby-mode-set-encoding): Use the value of coding system used to
737 write the file. Call `basic-save-buffer-1' after modifying the
738 buffer.
739
740 2013-10-13 Alan Mackenzie <acm@muc.de>
741
742 Fix indentation/fontification of Java enum with
743 "implements"/generic.
744
745 * progmodes/cc-engine.el (c-backward-over-enum-header):
746 Extracted from the three other places and enhanced to handle generics.
747 (c-inside-bracelist-p): Uses new function above.
748 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
749 function above.
750 (c-font-lock-enum-tail): Uses new function above.
751
752 2013-10-13 Kenichi Handa <handa@gnu.org>
753
754 * international/mule-cmds.el (select-safe-coding-system): Remove a
755 superfluous condition in chekcing whether a coding system is safe
756 or not.
757
758 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
759
760 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
761
762 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
763
764 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
765
766 2013-10-13 Glenn Morris <rgm@gnu.org>
767
768 * menu-bar.el (menu-bar-update-buffers):
769 Unify Buffers menu prompt string. (Bug#15576)
770
771 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
772
773 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
774 Add some entries.
775 (authors-fixed-entries): Use accented form of name.
776
777 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
778
779 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
780 method calls (bug#15594).
781 (ruby-smie--args-separator-p): New function.
782 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
783 recognize paren-free method calls.
784
785 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
786 internals of universal-argument.
787
788 2013-10-11 Eli Zaretskii <eliz@gnu.org>
789
790 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
791 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
792 dropped menu on second mouse click on the menu bar.
793
794 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
795
796 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
797 (explicit-shell-file-name): Declare.
798 (sh--vars-before-point, sh--cmd-completion-table): New functions.
799 (sh-completion-at-point-function): New function.
800 (sh-mode): Use it.
801 (sh-smie--keyword-p): Remove unused argument.
802 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
803 vars.
804 (sh-set-shell): Always setup SMIE, even if we use the
805 old indentation code.
806
807 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
808
809 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
810 cases of ? and =.
811 (ruby-smie-rules): Simplify the "do" rule. The cases when the
812 predicate would return nil are almost non-existent.
813 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
814
815 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
816 cache also after commands that modify the buffer but don't move
817 point.
818
819 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
820
821 * env.el (substitute-env-in-file-name): New function.
822 (substitute-env-vars): Extend the meaning of the optional arg.
823
824 2013-10-10 Eli Zaretskii <eliz@gnu.org>
825
826 * term/w32-win.el (dynamic-library-alist): Define separate lists
827 of GIF DLLs for versions before and after 5.0.0 of giflib.
828 (Bug#15531)
829
830 2013-10-10 João Távora <joaotavora@gmail.com>
831
832 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
833 not locked, use last revision and current source as
834 defaults. (Bug#15569)
835
836 2013-10-10 Masatake YAMATO <yamato@redhat.com>
837
838 * menu-bar.el (menu-bar-open): Don't use popup-menu if
839 menu-bar is hidden.
840
841 2013-10-10 Martin Rudalics <rudalics@gmx.at>
842
843 * window.el (pop-to-buffer-same-window): Fix doc-string.
844 (Bug#15492)
845
846 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
847
848 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
849
850 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
851
852 * calendar/icalendar.el (icalendar-import-file):
853 Fix interactive spec. (Bug#15482)
854
855 2013-10-10 Glenn Morris <rgm@gnu.org>
856
857 * desktop.el (desktop-save): Default to saving in .emacs.d,
858 since PWD is no longer in desktop-path by default. (Bug#15319)
859
860 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
861 now that text mode has a menu with the same entry.
862 (menu-bar-text-mode-auto-fill): Remove now unused func.
863 * textmodes/text-mode.el (text-mode-map):
864 Use auto-fill help text from menu-bar.el.
865
866 2013-10-10 John Anthony <john@jo.hnanthony.com>
867
868 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
869
870 2013-10-09 Juri Linkov <juri@jurta.org>
871
872 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
873 instead of this-command-keys. Add universal-argument-more and
874 universal-argument-minus to the list of prefix commands. (Bug#15568)
875
876 2013-10-09 Glenn Morris <rgm@gnu.org>
877
878 * vc/vc-svn.el (vc-svn-create-repo):
879 Expand paths in file://... url. (Bug#15446)
880
881 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
882 Add some entries.
883 (authors): Remove unused local variables.
884
885 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
886
887 * profiler.el: Create a more coherent calltree from partial backtraces.
888 (profiler-format): Hide the tail with `invisible' so that C-s can still
889 find the hidden elements.
890 (profiler-calltree-depth): Don't recurse so enthusiastically.
891 (profiler-function-equal): New hash-table-test.
892 (profiler-calltree-build-unified): New function.
893 (profiler-calltree-build): Use it.
894 (profiler-report-make-name-part): Indent the calltree less.
895 (profiler-report-mode): Add visibility specs for profiler-format.
896 (profiler-report-expand-entry, profiler-report-toggle-entry):
897 Expand the whole subtree when provided with a prefix arg.
898
899 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
900
901 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
902 iuwu-mod token.
903 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
904 hanging iuwu-mod token.
905 (ruby-smie--forward-token): Do not include a dot after a token in
906 that token.
907 (ruby-smie--backward-token): Likewise.
908
909 2013-10-08 Juri Linkov <juri@jurta.org>
910
911 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
912 to isearch-other-control-char.
913 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
914 and isearch-post-command-hook to post-command-hook.
915 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
916 and isearch-post-command-hook from post-command-hook.
917 (isearch-unread-key-sequence)
918 (isearch-reread-key-sequence-naturally)
919 (isearch-lookup-scroll-key, isearch-other-control-char)
920 (isearch-other-meta-char): Remove functions.
921 (isearch-pre-command-hook, isearch-post-command-hook):
922 New functions based on isearch-other-meta-char rewritten
923 relying on the new behavior of overriding-terminal-local-map
924 that does not replace the local keymaps any more. (Bug#15200)
925
926 2013-10-08 Eli Zaretskii <eliz@gnu.org>
927
928 Support menus on text-mode terminals.
929 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
930 functionality.
931
932 * tooltip.el (tooltip-mode): Don't error out on TTYs.
933
934 * menu-bar.el (popup-menu, popup-menu-normalize-position):
935 Move here from mouse.el.
936 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
937 and arrow keys.
938 (tty-menu-navigation-map): New map for TTY menu navigation.
939
940 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
941
942 * frame.el (display-mouse-p): Report text-mode mouse as available
943 on w32.
944 (display-popup-menus-p): Report availability if mouse is
945 available; don't condition on window-system.
946
947 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
948 (tty-menu-selected-face): New faces.
949
950 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
951
952 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
953 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
954 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
955 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
956 New constants.
957 (lisp-mode-variables): New `elisp' argument.
958 (emacs-lisp-mode): Use it.
959 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
960 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
961
962 * indent.el: Use lexical-binding.
963 (indent-region): Add progress reporter.
964 (tab-stop-list): Make it implicitly extend to infinity by repeating the
965 last step.
966 (indent--next-tab-stop): New function to implement this behavior.
967 (tab-to-tab-stop, move-to-tab-stop): Use it.
968
969 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
970
971 * indent.el (indent-rigidly--current-indentation): New function.
972 (indent-rigidly-map): New var.
973 (indent-rigidly): Use it to provide interactive mode (bug#8196).
974
975 2013-10-08 Bastien Guerry <bzg@gnu.org>
976
977 * register.el (insert-register): Fix 2013-10-07T01:28:34Z!sdl.web@gmail.com.
978
979 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
980
981 * progmodes/perl-mode.el: Use lexical-binding.
982 Remove redundant :group args.
983 (perl-nochange): Change default to be closer to other major modes's
984 standard behavior.
985 (perl-indent-line): Don't consider text on current line as a
986 valid beginning of function from which to indent.
987
988 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
989 with more than one argument (bug#15538).
990
991 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
992
993 * vc/pcvs.el: Use lexical-binding.
994 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
995 environment of `eval'.
996 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
997 than a list of expressions. Adjust callers.
998 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
999
1000 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
1001
1002 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
1003 case of the dot in a chained method call being on the following line.
1004
1005 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1006
1007 * electric.el (electric-indent-inhibit): New var.
1008 (electric-indent-post-self-insert-function): Use it.
1009 * progmodes/python.el (python-mode): Set it.
1010
1011 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
1012 open braces.
1013
1014 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
1015
1016 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
1017 (css-mode): Use electric-indent-chars.
1018
1019 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
1020 (font-lock-beg, font-lock-end): Move before first use.
1021 (nxml-mode): Use syntax-propertize-function.
1022 (nxml-after-change, nxml-after-change1): Adjust accordingly.
1023 (nxml-extend-after-change-region): Remove.
1024 * nxml/xmltok.el: Use lexical-binding.
1025 (xmltok-save): Use `declare'.
1026 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
1027 * nxml/nxml-util.el: Use lexical-binding.
1028 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
1029 Use `declare'.
1030 * nxml/nxml-ns.el: Use lexical-binding.
1031 (nxml-ns-save): Use `declare'.
1032 (nxml-ns-prefixes-for): Avoid add-to-list.
1033 * nxml/rng-match.el: Use lexical-binding.
1034 (rng--ipattern): Use cl-defstruct.
1035 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
1036 (rng-cons-group-after, rng-subst-group-after)
1037 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
1038 Use closures instead of `(lambda...).
1039
1040 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
1041
1042 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
1043 of BEG and END.
1044
1045 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1046 Use `tramp-handle-insert-file-contents'.
1047 (tramp-gvfs-handle-insert-file-contents): Remove function.
1048
1049 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1050 Use `save-restriction' in order to keep markers.
1051
1052 * net/trampver.el: Update release number.
1053
1054 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1055
1056 * progmodes/compile.el (compilation-parse-errors):
1057 Use compilation--put-prop.
1058 (compilation--ensure-parse): Check compilation-multiline.
1059
1060 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
1061
1062 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
1063 lexical-binding.
1064
1065 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
1066
1067 * progmodes/ruby-mode.el: Fix recently added tests.
1068 (ruby-smie-grammar): Add - and +.
1069 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
1070 (ruby-smie--backward-id): New functions.
1071 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
1072 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
1073 any more.
1074
1075 2013-10-07 Leo Liu <sdl.web@gmail.com>
1076
1077 * register.el (register-preview-delay)
1078 (register-preview-functions): New variables.
1079 (register-read-with-preview, register-preview)
1080 (register-describe-oneline): New functions.
1081 (point-to-register, window-configuration-to-register)
1082 (frame-configuration-to-register, jump-to-register)
1083 (number-to-register, view-register, insert-register)
1084 (copy-to-register, append-to-register, prepend-to-register)
1085 (copy-rectangle-to-register): Use register-read-with-preview to
1086 read register. (Bug#15525)
1087
1088 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
1089
1090 * net/network-stream.el (network-stream-open-starttls): Don't add
1091 --insecure if it's already present, because that gnutls-cli
1092 rejects getting that parameter twice.
1093
1094 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
1095
1096 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
1097 keyword, too.
1098
1099 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
1100
1101 * newcomment.el (comment-use-global-state): Change default value
1102 to t, mark obsolete (Bug#15251).
1103 (comment-beginning): In addition to `comment-to-syntax', check the
1104 value of `comment-use-global-state'.
1105
1106 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1107
1108 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
1109 (ruby-comment-column): Follow the global default, by default.
1110 (ruby-smie-grammar): Add assignment syntax.
1111 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
1112 open-paren, a comma, or a \.
1113 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
1114 and line continuations.
1115 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
1116 followed by implicit semi-colons. Add rule for string concatenation
1117 and for indentation at BOB.
1118 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
1119
1120 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
1121 calling next-sexp, since next-token may have skipped chars which
1122 next-sexp doesn't know should be skipped!
1123
1124 2013-10-05 Leo Liu <sdl.web@gmail.com>
1125
1126 * progmodes/octave.el (octave-send-region):
1127 Call compilation-forget-errors.
1128
1129 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
1130
1131 * vc/vc-svn.el (vc-svn-find-admin-dir):
1132 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
1133 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
1134 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
1135 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
1136
1137 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
1138
1139 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
1140
1141 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
1142
1143 * subr.el (read-passwd): Hide chars even when called within a context
1144 where after-change-functions is disabled (bug#15501).
1145 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
1146 until we removed ourself from overriding-terminal-local-map.
1147
1148 2013-10-04 Leo Liu <sdl.web@gmail.com>
1149
1150 * progmodes/octave.el (inferior-octave-mode):
1151 Call compilation-forget-errors.
1152
1153 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
1154
1155 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
1156
1157 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
1158
1159 * net/secrets.el (secrets-create-collection): Add optional
1160 argument ALIAS. Use proper Label keyword. Append ALIAS as
1161 dbus-call-method argument. (Bug#15516)
1162
1163 2013-10-04 Leo Liu <sdl.web@gmail.com>
1164
1165 * progmodes/octave.el (inferior-octave-error-regexp-alist)
1166 (inferior-octave-compilation-font-lock-keywords): New variables.
1167 (compilation-error-regexp-alist)
1168 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
1169 (inferior-octave-mode): Use compilation-shell-minor-mode.
1170
1171 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
1172
1173 * minibuffer.el (completion--replace): Be careful that `end' might be
1174 a marker.
1175
1176 2013-10-03 Daiki Ueno <ueno@gnu.org>
1177
1178 Add support for package signature checking.
1179 * emacs-lisp/package.el (url-http-file-exists-p)
1180 (epg-make-context, epg-context-set-home-directory)
1181 (epg-verify-string, epg-context-result-for)
1182 (epg-signature-status, epg-signature-to-string)
1183 (epg-check-configuration, epg-configuration)
1184 (epg-import-keys-from-file): Declare.
1185 (package-check-signature): New user option.
1186 (package-unsigned-archives): New user option.
1187 (package-desc): Add `signed' field.
1188 (package-load-descriptor): Set `signed' field if .signed file exists.
1189 (package--archive-file-exists-p): New function.
1190 (package--check-signature): New function.
1191 (package-install-from-archive): Check package signature.
1192 (package--download-one-archive): Check archive signature.
1193 (package-delete): Remove .signed file.
1194 (package-import-keyring): New command.
1195 (package-refresh-contents): Import default keyring.
1196 (package-desc-status): Add "unsigned" status.
1197 (describe-package-1, package-menu--print-info)
1198 (package-menu-mark-delete, package-menu--find-upgrades)
1199 (package-menu--status-predicate): Support "unsigned" status.
1200
1201 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1202
1203 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
1204 the new compilation scheme using the new byte-codes.
1205
1206 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
1207 (byte-pophandler): New byte codes.
1208 (byte-goto-ops): Adjust accordingly.
1209 (byte-compile--use-old-handlers): New var.
1210 (byte-compile-catch): Use new byte codes depending on
1211 byte-compile--use-old-handlers.
1212 (byte-compile-condition-case--old): Rename from
1213 byte-compile-condition-case.
1214 (byte-compile-condition-case--new): New function.
1215 (byte-compile-condition-case): New function that dispatches depending
1216 on byte-compile--use-old-handlers.
1217 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
1218 when we can.
1219
1220 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1221 Optimize under `condition-case' and `catch' if
1222 byte-compile--use-old-handlers is nil.
1223 (disassemble-offset): Handle new bytecodes.
1224
1225 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1226
1227 * subr.el (error): Use `declare'.
1228 (decode-char, encode-char): Use advertised-calling-convention instead
1229 of the docstring to discourage use of the `restriction' arg.
1230
1231 2013-10-03 Daiki Ueno <ueno@gnu.org>
1232
1233 * epg.el (epg-verify-file): Add a comment saying that it does not
1234 notify verification error as a return value nor a signal.
1235 (epg-verify-string): Ditto.
1236
1237 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
1238
1239 * progmodes/compile.el (compilation-start): Try globbing the arg to
1240 `cd' (bug#15417).
1241
1242 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
1243
1244 Sync with Tramp 2.2.8.
1245
1246 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
1247 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
1248 * net/trampver.el: Update release number.
1249
1250 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
1251
1252 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1253 and default-process-coding-system for darwin only.
1254
1255 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1256
1257 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
1258
1259 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
1260
1261 * vc/vc-git.el (vc-git-grep): Disable pager.
1262
1263 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
1264
1265 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
1266 Use :url instead of :homepage, as per
1267 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
1268
1269 * newcomment.el (comment-beginning): When `comment-use-syntax' is
1270 non-nil, use `syntax-ppss' (Bug#15251).
1271
1272 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1273
1274 * progmodes/octave.el (inferior-octave-startup-file):
1275 Prefer ~/.emacs.d/init_octave.m.
1276
1277 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
1278
1279 * emacs-lisp/package.el (package-desc-from-define):
1280 Accept additional arguments as plist, convert them to an alist and store
1281 them in the `extras' slot.
1282 (package-generate-description-file): Convert extras alist back to
1283 plist and append to the `define-package' form arguments.
1284 (package--alist-to-plist): New function.
1285 (package--ac-desc): Add `extras' slot.
1286 (package--add-to-archive-contents): Check if the archive-contents
1287 vector is long enough, and if it is, pass its `extras' slot value
1288 to `package-desc-create'.
1289 (package-buffer-info): Call `lm-homepage', pass the returned value
1290 to `package-desc-from-define'.
1291 (describe-package-1): Render the homepage button (Bug#13291).
1292
1293 * emacs-lisp/package-x.el (package-upload-buffer-internal):
1294 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
1295
1296 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
1297
1298 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1299 and default-process-coding-system to utf-8-unix (Bug#15402).
1300
1301 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
1302
1303 * subr.el (looking-back): Do not recommend using looking-back.
1304
1305 2013-09-28 Alan Mackenzie <acm@muc.de>
1306
1307 Fix indentation/fontification of Java enum with "implements".
1308
1309 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
1310 regexp which matches "implements", etc., in Java.
1311 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
1312 specifier clauses coming after "enum".
1313 * progmodes/cc-fonts.el (c-font-lock-declarations)
1314 (c-font-lock-enum-tail): Check for extra specifier clauses coming
1315 after "enum".
1316
1317 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
1318
1319 * faces.el (region): Change ns_selection_color to
1320 ns_selection_fg_color, add ns_selection_bg_color.
1321
1322 2013-09-28 Leo Liu <sdl.web@gmail.com>
1323
1324 * progmodes/octave.el (inferior-octave-completion-table)
1325 (inferior-octave-completion-at-point): Minor tweaks.
1326
1327 * textmodes/ispell.el (ispell-lookup-words): Rename from
1328 lookup-words. (Bug#15460)
1329 (lookup-words): Obsolete.
1330 (ispell-complete-word, ispell-command-loop): All uses changed.
1331
1332 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1333
1334 * lisp/progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
1335 (octave-mode-menu): Add octave-send-buffer.
1336 (octave-send-buffer): New function.
1337
1338 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1339
1340 * lisp/progmodes/octave.el (octave-mode-map): Add key binding for
1341 octave-lookfor.
1342 (octave-mode-menu): Add octave-lookfor.
1343 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
1344 octave-lookfor.
1345 (octave-lookfor): New function.
1346
1347 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1348
1349 * emacs-lisp/cl-macs.el:
1350 (cl--loop-destr-temps): Remove.
1351 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
1352 its convention.
1353 (cl--loop-set-iterator-function): New function.
1354 (cl-loop): Adjust accordingly, so as not to use cl-subst.
1355 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
1356 Bind `it' with `let' instead of substituting it with `cl-subst'.
1357 (cl--unused-var-p): New function.
1358 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
1359 Eliminate some unused variable warnings (bug#15326).
1360
1361 2013-09-27 Tassilo Horn <tsdh@gnu.org>
1362
1363 * doc-view.el (doc-view-scale-reset): Rename from
1364 `doc-view-reset-zoom-level'.
1365 (doc-view-scale-adjust): New command.
1366 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
1367 `doc-view-scale-adjust'.
1368
1369 2013-09-26 Tassilo Horn <tsdh@gnu.org>
1370
1371 * doc-view.el (doc-view-reset-zoom-level): New command.
1372 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
1373 zoom commands (bug#15466).
1374
1375 2013-09-26 Kenichi Handa <handa@gnu.org>
1376
1377 * international/quail.el (quail-help): Make it not a command.
1378
1379 2013-09-26 Leo Liu <sdl.web@gmail.com>
1380
1381 * minibuffer.el (completion-all-sorted-completions): Make args
1382 optional as they are.
1383
1384 2013-09-25 Daniel Colascione <dancol@dancol.org>
1385
1386 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
1387 specs are and that they're not evaluated.
1388
1389 2013-09-24 Sam Steingold <sds@gnu.org>
1390
1391 * midnight.el (clean-buffer-list-kill-regexps)
1392 (clean-buffer-list-kill-buffer-names): Update for the new Man
1393 buffer naming which includes the object name.
1394
1395 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1396
1397 * eshell/esh-cmd.el (eshell--sep-terms): New var.
1398 (eshell-parse-command, eshell-parse-pipeline): Use it since
1399 eshell-separate-commands requires a dynamic scoped var.
1400 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
1401
1402 2013-09-23 Leo Liu <sdl.web@gmail.com>
1403
1404 * autoinsert.el (auto-insert-alist): Make the value of
1405 lexical-binding match its file setting.
1406
1407 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
1408
1409 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
1410
1411 * autoarg.el (autoarg-kp-digit-argument):
1412 * electric.el (Electric-command-loop):
1413 * kmacro.el (kmacro-step-edit-insert):
1414 Do not set universal-argument-num-events.
1415
1416 2013-09-22 Leo Liu <sdl.web@gmail.com>
1417
1418 * files.el (interpreter-mode-alist): Add octave.
1419
1420 2013-09-21 Alan Mackenzie <acm@muc.de>
1421
1422 C++: fontify identifier in declaration following "public:" correctly.
1423 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
1424 to match "public", etc.
1425 (c-decl-prefix-re): Add ":" into the C++ value.
1426 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
1427 bit. Add a check for a ":" preceded by "public", etc.
1428
1429 2013-09-21 Eli Zaretskii <eliz@gnu.org>
1430
1431 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
1432 recognized by GDB 7.5 and later.
1433
1434 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
1435
1436 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
1437
1438 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1439
1440 * subr.el (internal--call-interactively): New const.
1441 (called-interactively-p): Use it (bug#3984).
1442
1443 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
1444
1445 * vc/pcvs.el (cvs-mode-ignore):
1446 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
1447 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
1448
1449 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1450
1451 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
1452 (eshell-ls-orig-insert-directory): Remove.
1453 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
1454 (eshell-ls-use-in-dired): Use advice-add/remove.
1455 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
1456 Add `orig-fun' arg for use in :around advice.
1457 Make it check (redundantly) eshell-ls-use-in-dired.
1458
1459 2013-09-19 Glenn Morris <rgm@gnu.org>
1460
1461 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
1462
1463 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
1464
1465 * emacs-lisp/eieio.el (class-parent): Undo previous change.
1466
1467 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
1468
1469 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
1470 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
1471 (tramp-get-remote-python): New defuns.
1472 (tramp-get-remote-uid-with-perl)
1473 (tramp-get-remote-gid-with-perl): New defuns. Perl code
1474 contributed by yary <not.com@gmail.com> (tiny change).
1475 (tramp-get-remote-uid-with-python)
1476 (tramp-get-remote-gid-with-python): New defuns. Python code
1477 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
1478 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
1479
1480 2013-09-19 Glenn Morris <rgm@gnu.org>
1481
1482 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
1483
1484 * eshell/em-unix.el (eshell-remove-entries):
1485 Rename argument to avoid name-clash with global `top-level'.
1486
1487 * eshell/esh-proc.el (eshell-kill-process-function):
1488 Remove eshell-reset-after-proc from eshell-kill-hook if present.
1489 (eshell-reset-after-proc): Remove unused arg `proc'.
1490
1491 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
1492 (directory-files-and-attributes): Mark unused arg.
1493
1494 * eshell/em-unix.el (eshell-remove-entries):
1495 Remove unused arg `path'. Update callers.
1496
1497 * eshell/em-hist.el (eshell-hist-parse-arguments):
1498 Remove unused arg `silent'. Update callers.
1499
1500 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
1501 Fix (f)boundp mix-up.
1502
1503 * eshell/em-smart.el (eshell-smart-scroll-window)
1504 (eshell-disable-after-change):
1505 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
1506
1507 2013-09-18 Alan Mackenzie <acm@muc.de>
1508
1509 Fix fontification of type when followed by "const".
1510 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
1511 "known" types from fontification.
1512
1513 2013-09-18 Glenn Morris <rgm@gnu.org>
1514
1515 * emacs-lisp/chart.el (x-display-color-cells): Declare.
1516 (chart-face-list): Drop Emacsen without display-color-p.
1517
1518 * net/eww.el (libxml-parse-html-region): Declare.
1519 (eww-display-html): Explicit error if no libxml2 support.
1520
1521 * doc-view.el (doc-view-mode): Silence --without-x compilation.
1522
1523 * image.el (image-type-from-buffer, image-multi-frame-p):
1524 Remove --without-x warning/error.
1525
1526 * mouse.el (mouse-yank-primary):
1527 * term.el (term-mouse-paste):
1528 Reorder to silence --without-x compilation.
1529
1530 * mpc.el (doc-view-mode): Silence --without-x compilation.
1531
1532 * mail/rmailmm.el (rmail-mime-set-bulk-data):
1533 Silence --without-x compilation.
1534
1535 * progmodes/gud.el (gud-find-file, gud-mode):
1536 Silence --without-x compilation.
1537 (tooltip-mode): Declare.
1538
1539 * wdired.el (dired-backup-overwrite): Remove declaration.
1540 (wdired-mode-map): Add doc string.
1541
1542 * custom.el (x-get-resource): Declare.
1543
1544 * eshell/em-glob.el (ange-cache):
1545 * eshell/em-unix.el (ange-cache): Declare.
1546
1547 * faces.el (x-display-list, x-open-connection, x-get-resource):
1548 Declare.
1549
1550 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
1551 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
1552 Declare.
1553
1554 * frame.el (x-display-grayscale-p, x-display-name): Declare.
1555
1556 * net/gnutls.el (gnutls-log-level): Declare.
1557
1558 * net/shr.el (image-size, image-animate): Declare.
1559
1560 * simple.el (font-info): Declare.
1561
1562 * subr.el (x-popup-dialog): Declare.
1563
1564 * term/common-win.el (x-select-enable-primary)
1565 (x-last-selected-text-primary, x-last-selected-text-clipboard):
1566 Declare.
1567
1568 * term/ns-win.el (x-handle-args): Declare.
1569
1570 * term/x-win.el (x-select-enable-clipboard): Declare.
1571
1572 * term/w32-win.el (create-default-fontset): Declare.
1573
1574 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
1575 Declare.
1576
1577 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
1578 (fit-frame-to-buffer): Explicit error if --without-x.
1579 (mouse-autoselect-window-select): Silence compiler.
1580
1581 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
1582
1583 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
1584 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
1585 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
1586 * eshell/esh-util.el (eshell-sublist):
1587 Remove unused local variables.
1588
1589 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
1590
1591 * textmodes/two-column.el: Make 2C-split work for --without-x.
1592 (scroll-bar-columns): Autoload.
1593 (top-level): Require fringe when compiling.
1594
1595 2013-09-18 Leo Liu <sdl.web@gmail.com>
1596
1597 * subr.el (add-hook): Robustify to handle closure as well.
1598
1599 2013-09-17 Glenn Morris <rgm@gnu.org>
1600
1601 * simple.el (messages-buffer-mode-map): Unbind "g".
1602
1603 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1604
1605 * help-mode.el (help-mode-finish): Use derived-mode-p.
1606 Remove obsolete highlighting.
1607
1608 * play/life.el (life-mode): Use define-derived-mode. Derive from
1609 special-mode.
1610 (life): Let-bind inhibit-read-only.
1611 (life-setup): Avoid `setq'. Use `life-mode'.
1612
1613 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
1614 which should not be needed any more.
1615 (package-menu-refresh, package-menu-describe-package): Use user-error.
1616
1617 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
1618 (eshell-post-rewrite-command-hook): Make obsolete.
1619 (eshell-parse-command): Simplify.
1620 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
1621 (eshell--cmd): Declare.
1622 (eshell-parse-pipeline): Remove unused var `final-p'.
1623 Pass a dynvar to eshell-post-rewrite-command-hook.
1624 Implement the new eshell-post-rewrite-command-function.
1625 (eshell-invoke-directly): Remove unused arg `input'.
1626 * eshell/esh-io.el (eshell-io-initialize):
1627 Use eshell-post-rewrite-command-function (bug#15399).
1628 (eshell--apply-redirections): Rename from eshell-apply-redirections;
1629 adjust to new calling convention.
1630 (eshell-create-handles): Rename args to avoid clashing with dynvar
1631 `standard-output'.
1632
1633 2013-09-17 Glenn Morris <rgm@gnu.org>
1634
1635 * simple.el (messages-buffer-mode): New major mode.
1636 (messages-buffer): New function.
1637 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
1638 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
1639 (ert-run-test): Use `messages-buffer' function.
1640 (ert--force-message-log-buffer-truncation): Ignore read-only.
1641 * help.el (view-echo-area-messages): Use `messages-buffer' function.
1642 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
1643
1644 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1645
1646 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
1647
1648 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15329).
1649
1650 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
1651
1652 * icomplete.el (icomplete-in-buffer): New var.
1653 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
1654 vars and replace them with functions.
1655 (icomplete-minibuffer-setup): Adjust accordingly.
1656 (icomplete--completion-table, icomplete--completion-predicate)
1657 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
1658 New functions.
1659 (icomplete-forward-completions, icomplete-backward-completions)
1660 (icomplete-simple-completing-p, icomplete-exhibit)
1661 (icomplete-completions): Use them.
1662 (icomplete--in-region-buffer): New var.
1663 (icomplete--in-region-setup): New function.
1664 (icomplete-mode): Use it.
1665
1666 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
1667 (bug#15379).
1668 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
1669 return args and options.
1670 (eshell-eval-using-options): Use the new return value of
1671 eshell--do-opts to set the options's vars in their scope.
1672 (eshell--set-option): Rename from eshell-set-option.
1673 Add arg `opt-vals'.
1674 (eshell--process-option): Rename from eshell-process-option.
1675 Add arg `opt-vals'.
1676 (eshell--process-args): Use an `opt-vals' alist to store the options's
1677 values during their processing and return them additionally to the
1678 remaining args.
1679
1680 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
1681
1682 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
1683 continuation character an operator, as far as indentation is
1684 concerned (Bug#15369).
1685
1686 2013-09-15 Martin Rudalics <rudalics@gmx.at>
1687
1688 * window.el (window--state-put-2): Don't process buffer state
1689 when buffer doesn't exist any more (Bug#15382).
1690
1691 2013-09-15 Glenn Morris <rgm@gnu.org>
1692
1693 * eshell/em-unix.el (eshell/rm):
1694 Make -f ignore missing files. (Bug#15373)
1695
1696 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
1697 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
1698 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
1699
1700 2013-09-14 Glenn Morris <rgm@gnu.org>
1701
1702 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
1703
1704 2013-09-13 Glenn Morris <rgm@gnu.org>
1705
1706 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
1707 (dired-guess-default): Make `file' available in the env. (Bug#15363)
1708
1709 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
1710
1711 * frame.el (x-focus-frame): Mark as declared in frame.c.
1712
1713 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
1714
1715 * ls-lisp.el: Use advice-add.
1716 (original-insert-directory): Remove.
1717 (ls-lisp--insert-directory): Rename from insert-directory; add
1718 `orig-fun' argument.
1719 (insert-directory): Advise.
1720
1721 2013-09-13 Eli Zaretskii <eliz@gnu.org>
1722
1723 * term.el (term-emulate-terminal): Decode the command string
1724 before passing it to term-command-hook. (Bug#15337)
1725
1726 2013-09-13 Glenn Morris <rgm@gnu.org>
1727
1728 * eshell/esh-util.el (ange-cache): Move declaration earlier.
1729
1730 * eshell/esh-ext.el (eshell-search-path): Declare.
1731
1732 * eshell/em-prompt.el (eshell/pwd): Autoload it.
1733 Otherwise an error occurs if eshell-dirs module not loaded.
1734
1735 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
1736
1737 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
1738
1739 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
1740 `tramp-check-proper-host'. Check for a valid method name.
1741
1742 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1743 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
1744 * net/tramp-sh.el (tramp-maybe-open-connection):
1745 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
1746
1747 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
1748 also for hash values.
1749
1750 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1751
1752 * term/ns-win.el (parameters): Don't declare as dynamic.
1753 (before-make-frame-hook): Don't add ineffective function.
1754
1755 * eshell/*.el: Use lexical-binding (bug#15231).
1756
1757 2013-09-12 Kenichi Handa <handa@gnu.org>
1758
1759 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
1760
1761 2013-09-12 Glenn Morris <rgm@gnu.org>
1762
1763 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
1764 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
1765
1766 * subr.el (do-after-load-evaluation): Also give compiler warnings
1767 when obsolete files are used (except by obsolete files).
1768
1769 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
1770 in the status output, assume `filename' is the first. (Bug#15322)
1771
1772 * vc/vc.el (vc-deduce-fileset): Doc fix.
1773
1774 * calc/calc-help.el (Info-goto-node):
1775 * progmodes/cperl-mode.el (Info-find-node):
1776 * vc/ediff.el (Info-goto-node): Update declarations.
1777
1778 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
1779
1780 * vc/vc-bzr.el (vc-compilation-mode): Declare.
1781 (vc-bzr-pull): Require vc-dispatcher.
1782 * vc/vc-git.el (vc-compilation-mode): Declare.
1783 (vc-git-pull): Require vc-dispatcher.
1784
1785 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
1786
1787 * progmodes/octave.el (help-button-action): Declare.
1788
1789 * shell.el (shell-directory-tracker): Output error as a message
1790 rather than just returning it as a string.
1791 (shell-process-pushd): Remove useless use of message.
1792
1793 * dframe.el (dframe-timer-fn):
1794 * files.el (dir-locals-read-from-file):
1795 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
1796 (mpc-format):
1797 * reveal.el (reveal-post-command):
1798 * saveplace.el (load-save-place-alist-from-file):
1799 * shell.el (shell-resync-dirs):
1800 * w32-common-fns.el (x-get-selection-value):
1801 * emacs-lisp/copyright.el (copyright-find-copyright):
1802 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
1803 * emulation/tpu-edt.el (tpu-copy-keyfile):
1804 * play/bubbles.el (bubbles--mark-neighbourhood):
1805 * progmodes/executable.el
1806 (executable-make-buffer-file-executable-if-script-p):
1807 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
1808
1809 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1810
1811 Cleanup Eshell to rely less on dynamic scoping.
1812 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
1813 last-value, and ext-command here. Bind `args' closer to `body'.
1814 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
1815 (eshell--args): Declare new dynamic var.
1816 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
1817 last-value, and ext-command. Pass `args' to `body'.
1818 (eshell-process-args): Bind eshell--args.
1819 (eshell-set-option): Use eshell--args.
1820 * eshell/eshell.el (eshell): Use derived-mode-p.
1821 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
1822 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
1823 (eshell-glob-function): Declare.
1824 * eshell/esh-util.el: Require cl-lib.
1825 (eshell-read-hosts-file): Avoid add-to-list.
1826 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
1827 `err'.
1828 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
1829 Declare.
1830 (eshell/diff): Remove unused var `err'.
1831 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
1832 `killflag'.
1833 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
1834 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
1835 first use.
1836 * eshell/em-glob.el (eshell-glob-matches, message-shown):
1837 Move declaration before first use.
1838 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
1839 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
1840 rely on cl-return.
1841
1842 2013-09-12 Glenn Morris <rgm@gnu.org>
1843
1844 * term/ns-win.el (global-map): Remove binding for ispell-next,
1845 deleted 1999-05-29. (Bug#15357)
1846
1847 2013-09-11 Glenn Morris <rgm@gnu.org>
1848
1849 * echistory.el (electric-command-history): Remove call to deleted func.
1850
1851 * play/landmark.el (landmark-mode): Fix typos.
1852
1853 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
1854 Check cvs-sort-ignore-file is bound.
1855
1856 * savehist.el: No need for cl when compiling on Emacs.
1857
1858 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
1859
1860 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
1861 (bug#15338).
1862 (eshell-self-insert-command, eshell-send-invisible):
1863 Remove unused argument.
1864 (eshell-handle-control-codes): Remove unused var `orig'.
1865 Avoid delete-backward-char.
1866
1867 * files.el (set-auto-mode): Simplify a bit further.
1868
1869 2013-09-11 Glenn Morris <rgm@gnu.org>
1870
1871 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
1872 (set-auto-mode): Don't regexp-quote elements.
1873 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
1874 * progmodes/cc-mode.el (interpreter-mode-alist):
1875 * progmodes/ruby-mode.el (interpreter-mode-alist):
1876 Revert previous change.
1877
1878 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
1879
1880 * play/snake.el (snake-mode):
1881 * play/mpuz.el (mpuz-mode):
1882 * play/landmark.el (lm-mode):
1883 * play/blackbox.el (blackbox-mode):
1884 * play/5x5.el (5x5-mode):
1885 * obsolete/options.el (Edit-options-mode):
1886 * net/quickurl.el (quickurl-list-mode):
1887 * net/newst-treeview.el (newsticker-treeview-mode):
1888 * mail/rmailsum.el (rmail-summary-mode):
1889 * mail/mspools.el (mspools-mode):
1890 * locate.el (locate-mode):
1891 * ibuffer.el (ibuffer-mode):
1892 * emulation/ws-mode.el (wordstar-mode):
1893 * emacs-lisp/debug.el (debugger-mode):
1894 * array.el (array-mode):
1895 * net/eudc.el (eudc-mode): Use define-derived-mode.
1896 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
1897 Move initialization into declaration.
1898 (mairix-searches-mode): Use define-derived-mode.
1899 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
1900 (eudc-edit-hotlist): Use dolist.
1901 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
1902 (Man-mode): Use define-derived-mode.
1903 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
1904 (Info-edit-mode): Use define-derived-mode.
1905 (Info-cease-edit): Use Info-mode.
1906 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
1907 into declaration.
1908 (eshell-mode): Use define-derived-mode.
1909 * chistory.el (command-history-mode-map): Rename from
1910 command-history-map.
1911 (command-history-mode): Use define-derived-mode.
1912 (Command-history-setup): Remove function.
1913 * calc/calc.el (calc-trail-mode-map): New var.
1914 (calc-trail-mode): Use define-derived-mode.
1915 (calc-trail-buffer): Set calc-main-buffer manually.
1916 * bookmark.el (bookmark-insert-annotation): New function.
1917 (bookmark-edit-annotation): Use it.
1918 (bookmark-edit-annotation-mode): Make it a proper major mode.
1919 (bookmark-send-edited-annotation): Use derived-mode-p.
1920 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
1921 closer to its ideal place. Use \' to match EOS.
1922
1923 * profiler.el (profiler-calltree-find): Use function-equal.
1924
1925 2013-09-10 Glenn Morris <rgm@gnu.org>
1926
1927 * files.el (interpreter-mode-alist): Convert to regexps.
1928 (set-auto-mode): Adapt for this. (Bug#15306)
1929 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
1930 Comment out unused variable.
1931 * progmodes/cc-mode.el (interpreter-mode-alist):
1932 * progmodes/python.el (interpreter-mode-alist):
1933 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
1934 * progmodes/sh-script.el (sh-set-shell):
1935 No longer use interpreter-mode-alist to get list of shells.
1936
1937 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
1938
1939 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
1940
1941 * simple.el: Use set-temporary-overlay-map for universal-argument.
1942 (universal-argument-map): Don't use default-bindings (bug#15317).
1943 Bind switch-frame explicitly. Replace universal-argument-minus with
1944 a conditional binding.
1945 (universal-argument-num-events, saved-overriding-map): Remove.
1946 (restore-overriding-map): Remove.
1947 (universal-argument--mode): Rename from save&set-overriding-map,
1948 and rewrite.
1949 (universal-argument, universal-argument-more, negative-argument)
1950 (digit-argument): Adjust accordingly.
1951 (universal-argument-minus): Remove.
1952 (universal-argument-other-key): Remove.
1953
1954 * subr.el (with-demoted-errors): Add `format' argument.
1955
1956 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
1957
1958 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
1959 `tramp-cleanup-connection'.
1960
1961 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
1962 parameters KEEP-DEBUG and KEEP-PASSWORD.
1963
1964 * net/tramp.el (tramp-file-name-handler):
1965 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1966 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
1967 (tramp-maybe-open-connection):
1968 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1969 Use `tramp-cleanup-connection'.
1970
1971 * net/tramp-sh.el (tramp-maybe-open-connection):
1972 Catch 'uname-changed inside the progress reporter.
1973
1974 2013-09-10 Glenn Morris <rgm@gnu.org>
1975
1976 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
1977
1978 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
1979 returns "alternate access method" in mode (eg "-rw-r--r--.").
1980
1981 2013-09-08 Glenn Morris <rgm@gnu.org>
1982
1983 * saveplace.el (load-save-place-alist-from-file):
1984 Demote errors. (Bug#15305)
1985
1986 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
1987
1988 Improve compatibility with older Emacsen, and XEmacs.
1989
1990 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
1991 only if it is bound. It isn't for XEmacs.
1992 (with-tramp-progress-reporter): Do not let-bind `result'.
1993 This yields to scoping errors in XEmacs.
1994 (tramp-handle-make-auto-save-file-name): New function, moved from
1995 tramp-sh.el.
1996
1997 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
1998 for `make-auto-save-file-name'.
1999 (tramp-adb--gnu-switches-to-ash):
2000 Use `tramp-compat-replace-regexp-in-string'.
2001
2002 * net/tramp-cache.el (tramp-cache-print): Call
2003 `substring-no-properties' only if it is bound. It isn't for XEmacs.
2004
2005 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
2006 bound. It isn't for XEmacs.
2007
2008 * net/tramp-compat.el (tramp-compat-copy-file):
2009 Catch `wrong-number-of-arguments' error.
2010 (tramp-compat-replace-regexp-in-string): New defun.
2011
2012 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
2013 for `make-auto-save-file-name'.
2014 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
2015 `copy-file'.
2016 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
2017 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
2018 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
2019
2020 * net/tramp-gw.el (tramp-gw-open-network-stream):
2021 Use `tramp-compat-replace-regexp-in-string'.
2022
2023 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2024 Call `tramp-handle-make-auto-save-file-name'.
2025 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
2026 (tramp-sh-file-gvfs-monitor-dir-process-filter)
2027 (tramp-sh-file-inotifywait-process-filter):
2028 Use `tramp-compat-replace-regexp-in-string'.
2029 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
2030
2031 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
2032 for `make-auto-save-file-name'.
2033 (tramp-smb-handle-copy-directory):
2034 Call `tramp-compat-replace-regexp-in-string'.
2035 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
2036 (tramp-smb-handle-copy-file): Improve error message.
2037 (tramp-smb-handle-rename-file): Rename directly only in case
2038 `newname' does not exist yet. This is a restriction of smbclient.
2039 (tramp-smb-maybe-open-connection): Rerun the function only when
2040 `auth-sources' is non-nil.
2041
2042 2013-09-08 Kenichi Handa <handa@gnu.org>
2043
2044 * international/characters.el: Set category "^" (Combining) for
2045 more characters.
2046
2047 2013-09-07 Alan Mackenzie <acm@muc.de>
2048
2049 Correctly fontify Java class constructors.
2050 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
2051 in Java Mode.
2052 (c-recognize-typeless-decls): Set the Java value to t.
2053 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
2054 While handling a "(", add a check for, effectively, Java, and handle a
2055 "typeless" declaration there.
2056
2057 2013-09-07 Roland Winkler <winkler@gnu.org>
2058
2059 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
2060 field subtitle for entry type book.
2061
2062 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2063
2064 * minibuffer.el: Make minibuffer-complete call completion-in-region
2065 rather than other way around.
2066 (completion--some, completion-pcm--find-all-completions):
2067 Don't delay signals when debugging.
2068 (minibuffer-completion-contents): Beware fields within the
2069 minibuffer contents.
2070 (completion-all-sorted-completions): Use defvar-local.
2071 (completion--do-completion, completion--cache-all-sorted-completions)
2072 (completion-all-sorted-completions, minibuffer-force-complete):
2073 Add args `beg' and `end'.
2074 (completion--in-region-1): New fun, extracted from minibuffer-complete.
2075 (minibuffer-complete): Use completion-in-region.
2076 (completion-complete-and-exit): New fun, extracted from
2077 minibuffer-complete-and-exit.
2078 (minibuffer-complete-and-exit): Use it.
2079 (completion--complete-and-exit): Rename from
2080 minibuffer--complete-and-exit.
2081 (completion-in-region--single-word): New function, extracted from
2082 minibuffer-complete-word.
2083 (minibuffer-complete-word): Use it.
2084 (display-completion-list): Make `common-substring' argument obsolete.
2085 (completion--in-region): Call completion--in-region-1 instead of
2086 minibuffer-complete.
2087 (completion-help-at-point): Pass boundaries to
2088 minibuffer-completion-help as args rather than via an overlay.
2089 (completion-pcm--string->pattern): Use `any-delim'.
2090 (completion-pcm--optimize-pattern): New function.
2091 (completion-pcm--pattern->regex): Handle `any-delim'.
2092 * icomplete.el (icomplete-forward-completions)
2093 (icomplete-backward-completions, icomplete-completions):
2094 Adjust calls to completion-all-sorted-completions and
2095 completion--cache-all-sorted-completions.
2096 (icomplete-with-completion-tables): Default to t.
2097 * emacs-lisp/crm.el (crm--current-element): Rename from
2098 crm--select-current-element. Don't put an overlay but return the
2099 boundaries instead.
2100 (crm--completion-command): Take two new args to bind to the boundaries.
2101 (crm-completion-help): Adjust accordingly.
2102 (crm-complete): Use completion-in-region.
2103 (crm-complete-word): Use completion-in-region--single-word.
2104 (crm-complete-and-exit): Use completion-complete-and-exit.
2105
2106 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2107
2108 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
2109 than dynamically.
2110
2111 2013-09-06 Juri Linkov <juri@jurta.org>
2112
2113 * info.el (Info-display-images-node): When image file doesn't exist
2114 display text version of the image if it's provided in the Info file.
2115 Otherwise, display the location of missing image from SRC attribute.
2116 Add help-echo text property from ALT attribute. (Bug#15279)
2117
2118 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2119
2120 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
2121 (edit-abbrevs-mode): Use define-derived-mode.
2122
2123 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
2124 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
2125 that it's defined.
2126 (epa-key-list-mode, epa-key-mode, epa-info-mode):
2127 Use define-derived-mode.
2128
2129 * epg.el (epg-start-encrypt): Minor CSE simplification.
2130
2131 2013-09-06 William Xu <william.xwl@gmail.com>
2132
2133 * arc-mode.el: Add support for 7za (bug#15264).
2134 (archive-7z-program): New var.
2135 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
2136 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
2137 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
2138
2139 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
2140
2141 Remove URL syntax.
2142
2143 * net/tramp.el (tramp-syntax, tramp-prefix-format)
2144 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
2145 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
2146 (tramp-postfix-host-format, tramp-file-name-regexp)
2147 (tramp-completion-file-name-regexp)
2148 (tramp-completion-dissect-file-name)
2149 (tramp-handle-substitute-in-file-name): Remove 'url case.
2150 (tramp-file-name-regexp-url)
2151 (tramp-completion-file-name-regexp-url): Remove constants.
2152
2153 2013-09-06 Glenn Morris <rgm@gnu.org>
2154
2155 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
2156
2157 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
2158
2159 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
2160 keywords" below "here-doc beginnings" (Bug#15270).
2161
2162 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2163
2164 * subr.el (pop): Use `car-safe'.
2165 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
2166 to detect unused `pop' return value.
2167
2168 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
2169 var `block-regexp'.
2170 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
2171 (python-fill-string): Remove unused var `marker'.
2172 (python-skeleton-add-menu-items): Remove unused var `items'.
2173
2174 * international/mule-cmds.el: Require CL.
2175 (find-coding-systems-for-charsets): Avoid add-to-list.
2176 (sanitize-coding-system-list): New function, extracted from
2177 select-safe-coding-system-interactively.
2178 (select-safe-coding-system-interactively): Use it.
2179 (read-input-method-name): Accept symbols for `default'.
2180
2181 * emacs-lisp/advice.el (defadvice): Add indent rule.
2182
2183 2013-09-05 Daniel Hackney <dan@haxney.org>
2184
2185 * dired-x.el:
2186 * net/ange-ftp.el:
2187 * net/browse-url.el:
2188 * net/dbus.el:
2189 * net/eudc.el:
2190 * net/eudcb-ldap.el:
2191 * net/eww.el:
2192 * net/imap.el:
2193 * printing.el:
2194 * vc/ediff-diff.el:
2195 * vc/ediff-init.el:
2196 * vc/ediff-merg.el:
2197 * vc/ediff-mult.el:
2198 * vc/ediff-util.el:
2199 * vc/ediff-wind.el:
2200 * vc/ediff.el:
2201 * vc/emerge.el:
2202 * vc/pcvs.el:
2203 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
2204 byte compiler. Remove some unused let-bound variables.
2205
2206 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2207
2208 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
2209 a "ref-cell", since it gets better optimized (bug#14883).
2210
2211 2013-09-05 Glenn Morris <rgm@gnu.org>
2212
2213 * progmodes/cc-awk.el (c-forward-sws): Declare.
2214
2215 2013-09-04 Glenn Morris <rgm@gnu.org>
2216
2217 * generic-x.el [rul-generic-mode]: Require cc-mode.
2218 (c++-mode-syntax-table): Declare.
2219 (rul-generic-mode-syntax-table): Init in the defvar.
2220
2221 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2222
2223 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
2224 (vc-do-command, vc-set-async-update):
2225 * vc/vc-mtn.el (vc-mtn-dir-status):
2226 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
2227 (vc-hg-pull, vc-hg-merge-branch):
2228 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
2229 (vc-git-merge-branch):
2230 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
2231 (vc-cvs-dir-status-files):
2232 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
2233 (vc-bzr-dir-status-files):
2234 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
2235 * vc/vc-annotate.el: Use lexical-binding.
2236 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
2237 (vc-sentinel-movepoint): Declare.
2238 (vc-annotate): Don't use `goto-line'.
2239 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
2240 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
2241 (vc-sentinel-movepoint): Declare.
2242 * vc/vc-svn.el: Use lexical-binding.
2243 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
2244 * vc/vc-sccs.el:
2245 * vc/vc-rcs.el: Use lexical-binding.
2246
2247 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
2248 `deleted'. Don't drop errors silently.
2249
2250 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
2251
2252 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
2253
2254 * vc/vc.el (vc-ignore): Rewrite.
2255 (vc-default-ignore): New function.
2256 (vc-default-ignore-completion-table): Use find-ignore-file.
2257
2258 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
2259 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
2260 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
2261 Remove. Most code moved to vc.el.
2262
2263 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2264
2265 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
2266 * net/tramp-smb.el (tramp-smb-get-file-entries):
2267 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
2268 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
2269
2270 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
2271 Update call to it.
2272 (eww-change-select): Remove unused var `properties'.
2273 (eww-make-unique-file-name): Remove unused var `base'.
2274
2275 * finder.el (finder-compile-keywords): Don't mess with windows.
2276
2277 * calculator.el (calculator-funcall): Fix typo in last change.
2278
2279 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
2280
2281 * emacs-lisp/package.el (package-activate-1): Don't let a missing
2282 <pkg>-autoloads.el file stop us.
2283
2284 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
2285 warnings, and factor out common code.
2286
2287 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
2288
2289 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
2290 two-character operators and whether the character preceding them
2291 changes their meaning (Bug#15208).
2292
2293 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2294
2295 Format code sent to Python shell for robustness.
2296 * progmodes/python.el (python-shell-buffer-substring):
2297 New function.
2298 (python-shell-send-region, python-shell-send-buffer): Use it.
2299
2300 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
2301
2302 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
2303 * net/tramp.el (tramp-user-error): ... here.
2304 (tramp-find-method, tramp-check-proper-host)
2305 (tramp-dissect-file-name, tramp-debug-message)
2306 (tramp-handle-shell-command):
2307 * net/tramp-adb.el (tramp-adb-handle-shell-command):
2308 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
2309
2310 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
2311
2312 2013-09-02 Martin Rudalics <rudalics@gmx.at>
2313
2314 * avoid.el (mouse-avoidance-point-position)
2315 (mouse-avoidance-too-close-p): Handle case where posn-at-point
2316 returns nil.
2317
2318 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2319
2320 * progmodes/python.el (python-shell-completion-get-completions):
2321 Drop use of deleted `comint-last-prompt-overlay'.
2322 (python-nav-if-name-main): New command.
2323
2324 2013-09-01 Glenn Morris <rgm@gnu.org>
2325
2326 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
2327 Avoid leading space in $wins. Otherwise the sed command used by
2328 eg compile-main ends up containing "/*.el". (Bug#15170)
2329
2330 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
2331
2332 2013-08-30 Glenn Morris <rgm@gnu.org>
2333
2334 * emacs-lisp/bytecomp.el (byte-recompile-directory):
2335 Fix is-this-a-directory logic. (Bug#15220)
2336
2337 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2338
2339 * textmodes/css-mode.el: Use SMIE.
2340 (css-smie-grammar): New var.
2341 (css-smie--forward-token, css-smie--backward-token)
2342 (css-smie-rules): New functions.
2343 (css-mode): Use them.
2344 (css-navigation-syntax-table): Remove var.
2345 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
2346 (css-indent-calculate, css-indent-line): Remove functions.
2347
2348 Misc changes to reduce use of `(lambda...); and other cleanups.
2349 * cus-edit.el: Use lexical-binding.
2350 (customize-push-and-save, customize-apropos)
2351 (custom-buffer-create-internal): Use closures.
2352 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
2353 * progmodes/ada-xref.el: Use setq.
2354 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
2355 * dframe.el: Use lexical-binding.
2356 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
2357 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
2358 * descr-text.el: Use lexical-binding.
2359 (describe-text-widget, describe-text-sexp, describe-property-list):
2360 Use closures.
2361 * comint.el (comint-history-isearch-push-state): Use a closure.
2362 * calculator.el: Use lexical-binding.
2363 (calculator-number-to-string): Make it work with lexical-binding.
2364 (calculator-funcall): Same and use cl-letf.
2365
2366 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
2367 (lisp--company-doc-string, lisp--company-location): New functions.
2368 (lisp-completion-at-point): Use them to improve Company support.
2369
2370 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
2371 params of lambda expressions.
2372 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
2373 (ruby-smie--opening-pipe-p): New function.
2374 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
2375 symbols and matched |...| for formal params.
2376 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
2377 from being treated as hanging. Handle "rescue".
2378
2379 2013-08-29 Glenn Morris <rgm@gnu.org>
2380
2381 * progmodes/cc-engine.el (c-pull-open-brace):
2382 Move definition before use.
2383
2384 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2385
2386 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
2387 are immutable. Don't use `unsafe' any more.
2388 (cl--defsubst-expand): Don't substitute at the same time as keeping
2389 a residual unused let-binding. Don't use `unsafe' any more.
2390
2391 2013-08-29 Glenn Morris <rgm@gnu.org>
2392
2393 * calendar/cal-china.el (calendar-chinese-year-cache):
2394 Recenter on 2015.
2395
2396 * nxml/nxml-util.el (nxml-debug-clear-inside):
2397 Use cl-loop rather than loop.
2398
2399 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
2400
2401 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
2402
2403 2013-08-28 Glenn Morris <rgm@gnu.org>
2404
2405 * progmodes/antlr-mode.el: No need to require cc-mode twice.
2406
2407 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
2408
2409 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
2410
2411 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2412
2413 * simple.el (repeat-complex-command--called-interactively-skip):
2414 New function.
2415 (repeat-complex-command): Use it (bug#14136).
2416
2417 * progmodes/cc-mode.el: Minor cleanup of var declarations.
2418 (c-define-abbrev-table): Add `doc' argument.
2419 (c-mode-abbrev-table, c++-mode-abbrev-table)
2420 (objc-mode-abbrev-table, java-mode-abbrev-table)
2421 (idl-mode-abbrev-table, pike-mode-abbrev-table)
2422 (awk-mode-abbrev-table): Use it.
2423 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
2424 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
2425 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
2426 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
2427 Move initialization into the declaration; and remove any
2428 autoload cookie.
2429
2430 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
2431 and dynamic let binding.
2432
2433 * vc/smerge-mode.el: Remove redundant :group args.
2434
2435 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
2436 to load-path.
2437
2438 2013-08-28 Juri Linkov <juri@jurta.org>
2439
2440 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
2441 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
2442 (isearch-other-meta-char): Handle an undefined shifted printing
2443 character by downshifting it. (Bug#15200)
2444
2445 2013-08-28 Juri Linkov <juri@jurta.org>
2446
2447 * isearch.el (isearch-search): Change regexp error message for
2448 non-regexp searches. (Bug#15166)
2449
2450 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
2451
2452 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
2453 for portability to hosts where /bin/sh has problems.
2454
2455 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2456
2457 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
2458
2459 2013-08-27 Juri Linkov <juri@jurta.org>
2460
2461 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
2462 in the keyboard macro. (Bug#15126)
2463
2464 2013-08-27 Juri Linkov <juri@jurta.org>
2465
2466 * isearch.el (isearch-quote-char): Comment out converting unibyte
2467 to multibyte, thus syncing with its `quoted-insert' counterpart.
2468 (Bug#15166)
2469
2470 2013-08-27 Martin Rudalics <rudalics@gmx.at>
2471
2472 * window.el (display-buffer-use-some-window): Add missing
2473 argument in call of get-largest-window (Bug#15185).
2474 Reported by Stephen Leake.
2475
2476 2013-08-27 Glenn Morris <rgm@gnu.org>
2477
2478 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
2479
2480 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
2481
2482 * progmodes/python.el (python-font-lock-keywords): Don't return nil
2483 from a matcher-function unless there's no more matches (bug#15161).
2484
2485 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2486
2487 * minibuffer.el: Revert change from 2013-08-20.
2488
2489 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
2490 with text property `tramp-default', if appropriate.
2491 (tramp-check-proper-host): New defun.
2492 (tramp-dissect-file-name): Do not check hostname. Revert change
2493 of 2013-03-18.
2494 (tramp-backtrace): Make VEC-OR-PROC optional.
2495
2496 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2497 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
2498 * net/tramp-sh.el (tramp-maybe-open-connection):
2499 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2500 Apply `tramp-check-proper-host'.
2501
2502 2013-08-26 Tassilo Horn <tsdh@gnu.org>
2503
2504 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
2505 lambda expression in order to have `describe-variable' display it.
2506
2507 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2508
2509 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
2510 BUF can be optional. (Bug#15186)
2511
2512 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
2513
2514 * progmodes/flymake.el (flymake-get-real-file-name-function):
2515 Fix broken customization. (Bug#15184)
2516
2517 2013-08-25 Alan Mackenzie <acm@muc.de>
2518
2519 Improve indentation of bracelists defined by macros (without "=").
2520
2521 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
2522 expansion begins with "{", regard it as bracelist when it doesn't
2523 contain a ";".
2524
2525 Parse C++ inher-intro when there's a template split over 2 lines.
2526
2527 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
2528 rigorously the search for "class" etc. followed by ":".
2529
2530 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
2531 random languages a regexp which never matches rather than nil.
2532
2533 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
2534
2535 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
2536 (c-awk-regexp-one-line-possibly-open-char-list-re)
2537 (c-awk-one-line-possibly-open-regexp-re)
2538 (c-awk-one-line-non-syn-ws*-re): Remove.
2539 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
2540 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
2541 (c-awk-space*-unclosed-regexp-/-re): New constants.
2542 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
2543 aren't regexp delimiters.
2544
2545 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
2546 handling for a rare situation in AWK Mode involving unterminated
2547 strings/regexps.
2548
2549 2013-08-23 Glenn Morris <rgm@gnu.org>
2550
2551 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
2552
2553 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
2554
2555 * files.el (create-file-buffer): If the result would begin with
2556 spaces, prepend a "|" instead of removing them. (Bug#15162)
2557
2558 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2559
2560 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
2561 text-properties (bug#15155).
2562
2563 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
2564 exist any more.
2565 (calc-keypad-redraw): Remove unused var `pad'.
2566 (calc-keypad-press): Remove unused var `menu'.
2567
2568 2013-08-23 Martin Rudalics <rudalics@gmx.at>
2569
2570 * window.el (display-buffer-pop-up-frame):
2571 Call pop-up-frame-function with BUFFER current so `make-frame' will
2572 use it as the new frame's buffer (Bug#15133).
2573
2574 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
2575
2576 * calendar/timeclock.el: Minor cleanups.
2577 (timeclock-ask-before-exiting, timeclock-use-display-time):
2578 Use `symbol'.
2579 (timeclock-modeline-display): Define as alias before the
2580 actual definition.
2581 (timeclock-mode-line-display): Use define-minor-mode.
2582 (timeclock-day-list-template): Make it a function, add an argument.
2583 (timeclock-day-list-required, timeclock-day-list-length)
2584 (timeclock-day-list-debt, timeclock-day-list-span)
2585 (timeclock-day-list-break): Adjust calls accordingly.
2586
2587 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
2588
2589 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
2590 Use read--expression so that completion works again.
2591
2592 2013-08-21 Sam Steingold <sds@gnu.org>
2593
2594 Add rudimentary inferior shell interaction
2595 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
2596 (sh-set-shell): Reset it.
2597 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
2598 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
2599
2600 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
2601
2602 * align.el: Use lexical-binding.
2603 (align-region): Simplify accordingly.
2604
2605 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
2606
2607 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
2608
2609 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
2610 `non-essential' up.
2611
2612 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
2613
2614 * net/tramp.el:
2615 * net/tramp-adb.el:
2616 * net/tramp-cmds.el:
2617 * net/tramp-ftp.el:
2618 * net/tramp-gvfs.el:
2619 * net/tramp-gw.el:
2620 * net/tramp-sh.el: Don't wrap external variable declarations by
2621 `eval-when-compile'.
2622
2623 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
2624
2625 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
2626 now that Emacs supports ImageMagick animations.
2627
2628 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
2629
2630 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
2631 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
2632
2633 2013-08-16 Martin Rudalics <rudalics@gmx.at>
2634
2635 * window.el (mouse-autoselect-window-select): Do autoselect when
2636 mouse pointer is on margin.
2637
2638 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
2639
2640 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
2641
2642 2013-08-16 Glenn Morris <rgm@gnu.org>
2643
2644 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
2645 Handle "Remote Directory" response of some clients. (Bug#15058)
2646
2647 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
2648 Tweak warning. (Bug#14926)
2649
2650 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
2651 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
2652
2653 * image-mode.el (image-mode-map): Add menu items to reverse,
2654 increase, decrease, reset animation speed.
2655 (image--set-speed, image-increase-speed, image-decrease-speed)
2656 (image-reverse-speed, image-reset-speed): New functions.
2657 (image-mode-map): Add bindings for speed commands.
2658
2659 * image.el (image-animate-get-speed, image-animate-set-speed):
2660 New functions.
2661 (image-animate-timeout): Respect image :speed property.
2662
2663 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
2664
2665 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
2666 previous line (bug#15101).
2667 (debugger-eval-expression, debugger-record-expression):
2668 Use read--expression (bug#15102).
2669
2670 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
2671
2672 Remove byte compiler warnings, visible when compiling with
2673 `byte-compile-force-lexical-warnings' set to t.
2674
2675 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
2676 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
2677 (tramp-handle-unhandled-file-name-directory)
2678 (tramp-handle-file-notify-add-watch, tramp-action-login)
2679 (tramp-action-succeed, tramp-action-permission-denied)
2680 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
2681 arguments with "_".
2682
2683 * net/tramp-adb.el (tramp-adb-parse-device-names)
2684 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
2685 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
2686 (tramp-adb-handle-file-truename): Remove unused arguments.
2687
2688 * net/tramp-cache.el (tramp-flush-directory-property)
2689 (tramp-flush-connection-property, tramp-list-connections)
2690 (tramp-parse-connection-properties): Prefix unused arguments with "_".
2691
2692 * net/tramp-compat.el (tramp-compat-make-temp-file):
2693 Rename FILENAME to F.
2694
2695 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
2696 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
2697 (tramp-zeroconf-parse-workstation-device-names)
2698 (tramp-zeroconf-parse-webdav-device-names)
2699 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
2700
2701 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
2702 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
2703
2704 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
2705 arguments.
2706 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
2707 (tramp-sh-handle-insert-file-contents-literally)
2708 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
2709 with "_".
2710 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
2711 Remove unused variables.
2712
2713 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
2714 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
2715 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
2716
2717 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
2718 Make them a defconst.
2719 (tramp-uuencode-region): Remove unused variable.
2720
2721 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
2722
2723 * frameset.el (frameset--prop-setter): New function.
2724 (frameset-prop): Add gv-setter declaration.
2725 (frameset-filter-minibuffer): Deal with the case that the minibuffer
2726 parameter was already set in FILTERED. Doc fix.
2727 (frameset--record-minibuffer-relationships): Allow saving a
2728 minibufferless frame without its corresponding minibuffer frame.
2729 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
2730 frame, if the frame id matches.
2731 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
2732 frames before orphaned ones.
2733 (frameset-restore): Warn about orphaned windows, instead of error out.
2734
2735 2013-08-14 Martin Rudalics <rudalics@gmx.at>
2736
2737 * window.el (window-make-atom): Don't overwrite parameter
2738 already present.
2739 (display-buffer-in-atom-window): Handle special case where we
2740 split an already atomic window.
2741 (window--major-non-side-window, display-buffer-in-side-window)
2742 (window--side-check): Ignore minibuffer window when walking
2743 window tree.
2744 (window-deletable-p): Return 'frame only if no other frame uses
2745 our minibuffer window.
2746 (record-window-buffer): Run buffer-list-update-hook.
2747 (split-window): Make sure window--check-frame won't destroy an
2748 existing atomic window in case the new window gets nested
2749 inside.
2750 (display-buffer-at-bottom): Ignore minibuffer window when
2751 walking window tree. Don't split a side window.
2752 (pop-to-buffer): Don't set-buffer here, the select-window call
2753 should do that.
2754 (mouse-autoselect-window-select): Autoselect only if we are in the
2755 text portion of the window.
2756
2757 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
2758
2759 * net/shr.el (shr-parse-image-data): New function to grab both the
2760 data itself and the Content-Type.
2761 (shr-put-image): Use it.
2762
2763 * net/eww.el (eww-display-image): Ditto.
2764
2765 * image.el (image-content-type-suffixes): New variable.
2766
2767 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
2768
2769 * progmodes/python.el (python-imenu--build-tree)
2770 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
2771
2772 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
2773
2774 * simple.el (backward-word): Mention the optional argument.
2775
2776 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
2777
2778 * frameset.el (frameset--make): Rename constructor from make-frameset.
2779 (frameset-p, frameset-valid-p): Don't autoload.
2780 (frameset-valid-p): Use normal accessors.
2781
2782 2013-08-13 Glenn Morris <rgm@gnu.org>
2783
2784 * progmodes/compile.el (compile-command): Tweak example in doc.
2785 * obsolete/scribe.el (scribe-mode):
2786 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
2787
2788 * mail/feedmail.el (feedmail-confirm-outgoing)
2789 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
2790
2791 * cus-start.el (truncate-partial-width-windows): Fix type.
2792
2793 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
2794
2795 * net/shr.el (shr-table-horizontal-line): Fix custom type.
2796
2797 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
2798
2799 * emacs-lisp/timer.el (timer--time-setter): New function.
2800 (timer--time): Use it as gv-setter.
2801
2802 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
2803 setter is not a symbol.
2804
2805 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
2806
2807 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
2808 if sending fails. This makes debugging easier.
2809
2810 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
2811
2812 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
2813 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
2814 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
2815
2816 2013-08-12 Eli Zaretskii <eliz@gnu.org>
2817
2818 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
2819
2820 2013-08-12 Glenn Morris <rgm@gnu.org>
2821
2822 * format.el (format-annotate-function):
2823 Handle read-only text properties in the source. (Bug#14887)
2824
2825 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2826
2827 * net/eww.el (eww-display-html): Ignore coding system errors.
2828 One web site uses "utf-8lias" as the coding system.
2829
2830 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
2831
2832 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
2833
2834 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
2835
2836 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
2837 (tutorial--detailed-help): Remove unused local variables.
2838 (tutorial--save-tutorial-to): Use ignore-errors.
2839 (help-with-tutorial): Use looking-at-p.
2840
2841 * view.el (view-buffer-other-window, view-buffer-other-frame):
2842 Mark unused arguments.
2843
2844 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
2845 (woman-select-symbol-fonts, woman, woman-find-file)
2846 (woman-insert-file-contents, woman-non-underline-faces):
2847 Use string-match-p.
2848 (woman1-unquote): Move declaration.
2849
2850 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
2851 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
2852 argument. Remove unused local variable.
2853 (xml-parse-elem-type): Use string-match-p.
2854 (xml-substitute-numeric-entities): Use ignore-errors.
2855
2856 * calculator.el (calculator): Mark unused argument.
2857 (calculator-paste, calculator-quit, calculator-integer-p):
2858 Use ignore-errors.
2859 (calculator-string-to-number, calculator-decimal, calculator-exp)
2860 (calculator-op-or-exp): Use string-match-p.
2861
2862 * dired.el (dired-buffer-more-recently-used-p): Declare.
2863 (dired-insert-set-properties, dired-insert-old-subdirs):
2864 Use ignore-errors.
2865
2866 * dired-aux.el (dired-compress): Use ignore-errors.
2867 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
2868 (dired-do-async-shell-command, dired-do-shell-command)
2869 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
2870 (dired-insert-subdir-validate): Use string-match-p.
2871 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
2872 (dired-add-entry): Use string-match-p, looking-at-p.
2873 (dired-insert-subdir-newpos): Remove unused local variable.
2874
2875 * filenotify.el (file-notify-callback): Remove unused local variable.
2876
2877 * filesets.el (filesets-error): Mark unused argument.
2878 (filesets-which-command-p, filesets-filter-dir-names)
2879 (filesets-directory-files, filesets-get-external-viewer)
2880 (filesets-ingroup-get-data): Use string-match-p.
2881
2882 * find-file.el (ff-other-file-name, ff-other-file-name)
2883 (ff-find-the-other-file, ff-cc-hh-converter):
2884 Remove unused local variables.
2885 (ff-get-file-name): Use string-match-p.
2886 (ff-all-dirs-under): Use ignore-errors.
2887
2888 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
2889 (follow-select-if-visible): Remove unused local variable.
2890
2891 * forms.el (read-file-filter): Move declaration.
2892 (forms--make-format, forms--make-parser, forms-insert-record):
2893 Quote function with #'.
2894 (forms--update): Use string-match-p. Quote function with #'.
2895
2896 * help-mode.el (help-dir-local-var-def): Mark unused argument.
2897 (help-make-xrefs): Use looking-at-p.
2898 (help-xref-on-pp): Use looking-at-p, ignore-errors.
2899
2900 * ibuffer.el (ibuffer-ext-visible-p): Declare.
2901 (ibuffer-confirm-operation-on): Use string-match-p.
2902
2903 * msb.el (msb-item-handler, msb-dired-item-handler):
2904 Mark unused arguments.
2905
2906 * ses.el (ses-decode-cell-symbol)
2907 (ses-kill-override): Remove unused local variable.
2908 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
2909 (ses-load): Use ignore-errors, looking-at-p.
2910 (ses-jump-safe): Use ignore-errors.
2911 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
2912
2913 * tabify.el (untabify, tabify): Mark unused arguments.
2914
2915 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
2916 Mark unused argument.
2917 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
2918 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
2919
2920 * emacs-lisp/timer.el (timer--time): Define setter with
2921 gv-define-setter to avoid deprecation warning.
2922
2923 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
2924 (*record-cmpl-statistics-p*): Remove (was commented out).
2925 (cmpl-statistics-block): Remove (body was commented out).
2926 All callers changed.
2927 (add-completions-from-buffer, load-completions-from-file):
2928 Remove unused variables.
2929
2930 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
2931
2932 * filecache.el (file-cache-delete-file-list):
2933 Print message only when told so.
2934 (file-cache-files-matching): Use #' in mapconcat argument.
2935
2936 * ffap.el (ffap-url-at-point): Fix reference to variable
2937 thing-at-point-default-mail-uri-scheme.
2938
2939 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
2940
2941 * subr.el (define-error): New function.
2942 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
2943 error-file-not-found and define with define-error.
2944 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
2945 and define with define-error.
2946 * userlock.el (file-locked, file-supersession):
2947 * simple.el (mark-inactive):
2948 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
2949 * progmodes/ada-mode.el (ada-mode-errors):
2950 * play/life.el (life-extinct):
2951 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
2952 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
2953 * nxml/rng-util.el (rng-error):
2954 * nxml/rng-uri.el (rng-uri-error):
2955 * nxml/rng-match.el (rng-compile-error):
2956 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
2957 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
2958 * nxml/nxml-rap.el (nxml-scan-error):
2959 * nxml/nxml-outln.el (nxml-outline-error):
2960 * net/soap-client.el (soap-error):
2961 * net/gnutls.el (gnutls-error):
2962 * net/ange-ftp.el (ftp-error):
2963 * mpc.el (mpc-proc-error):
2964 * json.el (json-error, json-readtable-error, json-unknown-keyword)
2965 (json-number-format, json-string-escape, json-string-format)
2966 (json-key-format, json-object-format):
2967 * jka-compr.el (compression-error):
2968 * international/quail.el (quail-error):
2969 * international/kkc.el (kkc-error):
2970 * emacs-lisp/ert.el (ert-test-failed):
2971 * calc/calc.el (calc-error, inexact-result, math-overflow)
2972 (math-underflow):
2973 * bookmark.el (bookmark-error-no-filename):
2974 * epg.el (epg-error): Define with define-error.
2975
2976 * time.el (display-time-event-handler)
2977 (display-time-next-load-average): Don't call sit-for since it seems
2978 unnecessary (bug#15045).
2979
2980 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
2981 Use #' instead of ' to quote functions.
2982 (checkdoc-output-mode): Use setq-local.
2983 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
2984 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
2985 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
2986 (checkdoc-ispell, checkdoc-ispell-current-buffer)
2987 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
2988 (checkdoc-ispell-message-text, checkdoc-ispell-start)
2989 (checkdoc-ispell-continue, checkdoc-ispell-comments)
2990 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
2991
2992 * ido.el (ido-completion-help): Fix up compiler warning.
2993
2994 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
2995
2996 * frameset.el (frameset-p): Add autoload cookie.
2997 (frameset--jump-to-register): New function, based on code moved from
2998 register.el.
2999 (frameset-to-register): Move from register.el. Adapt to `registerv'.
3000
3001 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
3002 (frameset-restore, frameset-save, frameset-session-filter-alist):
3003 Remove declarations.
3004 (register-alist): Doc fix.
3005 (frameset-to-register): Move to frameset.el.
3006 (jump-to-register, describe-register-1): Remove frameset-specific code.
3007
3008 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3009
3010 * allout-widgets.el (allout-widgets-pre-command-business)
3011 (allout-widgets-post-command-business)
3012 (allout-widgets-after-change-handler)
3013 (allout-decorate-item-and-context, allout-set-boundary-marker)
3014 (allout-body-modification-handler)
3015 (allout-graphics-modification-handler): Mark ignored arguments.
3016 (allout-widgets-post-command-business)
3017 (allout-widgets-exposure-change-processor)
3018 (allout-widgets-exposure-undo-processor)
3019 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
3020 (allout-parse-item-at-point, allout-decorate-item-guides)
3021 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
3022 * allout.el (epa-passphrase-callback-function): Declare.
3023 (allout-overlay-insert-in-front-handler)
3024 (allout-overlay-interior-modification-handler)
3025 (allout-isearch-end-handler, allout-chart-siblings)
3026 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
3027 (allout-yank-processing, allout-process-exposed)
3028 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
3029 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
3030 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
3031 (lisp-indent-defform): Mark ignored arguments.
3032 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
3033 (calculate-lisp-indent): Remove unused variables.
3034 * international/characters.el (indian-2-column, arabic-2-column)
3035 (tibetan): Mark ignored arguments.
3036 (use-cjk-char-width-table): Mark ignored arguments.
3037 Remove unused variables.
3038 * international/fontset.el (build-default-fontset-data)
3039 (x-compose-font-name, create-fontset-from-fontset-spec):
3040 Mark ignored arguments.
3041 (fontset-plain-name): Remove unused variables.
3042 * international/mule.el (charset-id, charset-bytes, generic-char-p)
3043 (keyboard-coding-system): Mark ignored arguments.
3044 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
3045 * help.el (resize-temp-buffer-window):
3046 * window.el (display-buffer-in-major-side-window)
3047 (display-buffer-in-side-window, display-buffer-in-previous-window):
3048 Remove unused variables.
3049 * isearch.el (isearch-forward-symbol):
3050 * version.el (emacs-bzr-version-bzr):
3051 * international/mule-cmds.el (current-language-environment):
3052 * term/common-win.el (x-handle-iconic, x-handle-geometry)
3053 (x-handle-display):
3054 * term/pc-win.el (x-list-fonts, x-display-planes)
3055 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
3056 (x-server-version, x-display-screens, x-display-mm-height)
3057 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
3058 (x-selection-owner-p, x-own-selection-internal)
3059 (x-disown-selection-internal, x-get-selection-internal)
3060 (msdos-initialize-window-system):
3061 * term/tty-colors.el (tty-color-alist, tty-color-clear):
3062 * term/x-win.el (x-handle-no-bitmap-icon):
3063 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
3064 (vc-default-find-file-hook, vc-default-extra-menu):
3065 Mark ignored arguments.
3066
3067 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3068
3069 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
3070 break-condition in the context of the debugged code (bug#12685).
3071
3072 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
3073
3074 * comint.el:
3075 Do not use an overlay to highlight the last prompt. (Bug#14744)
3076 (comint-mode): Make comint-last-prompt buffer local.
3077 (comint-last-prompt): New variable.
3078 (comint-last-prompt-overlay): Remove. Superseded by
3079 comint-last-prompt.
3080 (comint-snapshot-last-prompt, comint-output-filter):
3081 Use comint-last-prompt.
3082
3083 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3084
3085 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
3086 (frameset-save): Check validity of the resulting frameset.
3087
3088 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
3089
3090 * ido.el (ido-record-command): Add doc string.
3091
3092 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3093
3094 * frameset.el (frameset): Do not disable creation of the default
3095 frameset-p predicate. Doc fix.
3096 (frameset-valid-p): New function, copied from the old predicate-p.
3097 Add additional checks.
3098 (frameset-restore): Check with frameset-valid-p.
3099 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
3100 (frameset-name, frameset-description, frameset-properties)
3101 (frameset-states): Add docstring.
3102 (frameset-session-filter-alist, frameset-persistent-filter-alist)
3103 (frameset-filter-alist): Doc fixes.
3104
3105 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3106
3107 * frameset.el (frameset-p, frameset-prop): Doc fixes.
3108
3109 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3110
3111 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
3112 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
3113 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
3114 (byte-compile-normal-call): Remove obsolescence check.
3115
3116 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3117
3118 * frameset.el (frameset-restore): Doc fix.
3119
3120 * register.el (frameset-frame-id, frameset-frame-with-id)
3121 (frameset-p, frameset-restore, frameset-save): Declare.
3122 (register-alist): Document framesets.
3123 (frameset-session-filter-alist): Declare.
3124 (frameset-to-register): New function.
3125 (jump-to-register): Implement jumping to framesets. Doc fix.
3126 (describe-register-1): Describe framesets.
3127
3128 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
3129
3130 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
3131
3132 * desktop.el (desktop-save-frameset): Use new frameset-save args.
3133 Use lexical-binding.
3134
3135 * frameset.el (frameset): Use type vector, not list (incompatible
3136 change). Do not declare a new constructor, use the default one.
3137 Upgrade suggested properties `app', `name' and `desc' to slots `app',
3138 `name' and `description', respectively, and add read-only slot
3139 `timestamp'. Doc fixes.
3140 (frameset-copy, frameset-persistent-filter-alist)
3141 (frameset-filter-alist, frameset-switch-to-gui-p)
3142 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
3143 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
3144 (frameset-filter-iconified, frameset-keep-original-display-p):
3145 Doc fixes.
3146 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
3147 Rename from frameset-filter-(save|restore)-param. All callers changed.
3148 Doc fix.
3149 (frameset-p): Adapt to change to vector and be more thorough.
3150 Change arg name to OBJECT. Doc fix.
3151 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
3152 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
3153 All callers changed.
3154 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
3155 All callers changed.
3156 (frameset--record-minibuffer-relationships): Rename from
3157 frameset--process-minibuffer-frames. All callers changed.
3158 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
3159 Use new default constructor (again). Doc fix.
3160 (frameset--find-frame-if): Rename from `frameset--find-frame.
3161 All callers changed.
3162 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
3163 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
3164 Doc fix.
3165 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
3166 PARAMETERS and WINDOW-STATE, respectively.
3167 (frameset-restore): Add new keyword argument PREDICATE.
3168 Reset frameset--target-display to nil. Doc fix.
3169
3170 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3171
3172 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
3173 (bat-mode): Use it.
3174 (bat-mode-syntax-table): Mark \n as end-of-comment.
3175 (bat-font-lock-keywords): Remove comment rule.
3176
3177 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
3178 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
3179
3180 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
3181 (byte-compile-callargs-warn): Use `push'.
3182 (byte-compile-arglist-warn): Ignore higher-order "calls".
3183 (byte-compile-file-form-autoload): Use `pcase'.
3184 (byte-compile-function-form): If quoting a symbol, check that it exists.
3185
3186 2013-08-07 Eli Zaretskii <eliz@gnu.org>
3187
3188 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
3189 and add a few popular commands found in batch files.
3190 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
3191 (dos-mode): Doc fixes.
3192
3193 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3194
3195 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
3196 (dos-mode): Use setq-local. Add space after "rem".
3197 (dos-mode-syntax-table): Don't use "w" for symbol chars.
3198 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
3199
3200 2013-08-07 Arni Magnusson <arnima@hafro.is>
3201
3202 * progmodes/dos.el: New file.
3203 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
3204 dos-mode.
3205
3206 2013-08-06 Glenn Morris <rgm@gnu.org>
3207
3208 * calendar/calendar.el: Add new faces, and day-header-array.
3209 (calendar-weekday-header, calendar-weekend-header)
3210 (calendar-month-header): New faces.
3211 (calendar-day-header-construct): New function.
3212 (calendar-day-header-width): Also :set calendar-day-header-array.
3213 (calendar-american-month-header, calendar-european-month-header)
3214 (calendar-iso-month-header): Use calendar- faces.
3215 (calendar-generate-month):
3216 Use calendar-day-header-array for day headers; apply faces to them.
3217 (calendar-mode): Check calendar-font-lock-keywords non-nil.
3218 (calendar-abbrev-construct): Add optional maxlen argument.
3219 (calendar-day-name-array): Doc fix.
3220 (calendar-day-name-array, calendar-abbrev-length)
3221 (calendar-day-abbrev-array):
3222 Also :set calendar-day-header-array, and maybe redraw.
3223 (calendar-day-header-array): New option. (Bug#15007)
3224 (calendar-font-lock-keywords): Set to nil and make obsolete.
3225 (calendar-day-name): Add option to use header array.
3226
3227 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
3228
3229 * net/shr.el (shr-render-td): Remove debugging.
3230 (shr-render-td): Make width computation consistent by defaulting
3231 all zero-width columns to 10 characters. This may not be optimal,
3232 but it's at least consistent.
3233 (shr-make-table-1): Redo last change to fix the real problem in
3234 colspan handling.
3235
3236 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3237
3238 * files.el (cache-long-line-scans):
3239 Make obsolete alias to `cache-long-scans'.
3240
3241 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
3242
3243 * frameset.el (frameset, frameset-filter-alist)
3244 (frameset-filter-params, frameset-save, frameset--reuse-frame)
3245 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
3246 (frameset-compute-pos): Rename from frameset--compute-pos,
3247 and add docstring.
3248 (frameset-move-onscreen): Use frameset-compute-pos.
3249 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3250
3251 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
3252 Fix typos in docstrings.
3253
3254 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3255
3256 * frame.el (get-other-frame): Tiny cleanup.
3257
3258 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
3259
3260 * vc/vc.el (vc-default-ignore-completion-table):
3261 Silence byte-compiler warning.
3262
3263 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
3264 slot , which can indeed be nil.
3265 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3266 Move entry for `left' from persistent to live filter alist.
3267 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
3268 Doc fixes.
3269 (frameset-filter-params): When restoring a frame, copy items added to
3270 `filtered', to avoid unwittingly modifying the original parameters.
3271 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
3272 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
3273
3274 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
3275 to use looking-at-p instead of looking-at. (Bug#15028)
3276
3277 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
3278
3279 Revert introduction of isearch-filter-predicates (bug#14714).
3280 Rely on add-function instead.
3281 * isearch.el (isearch-filter-predicates): Rename it back to
3282 isearch-filter-predicate.
3283 (isearch-message-prefix): Use advice-function-mapc and advice
3284 properties to get the isearch-message-prefix.
3285 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
3286 instead of run-hook-with-args-until-failure.
3287 (isearch-filter-visible): Not obsolete any more.
3288 * loadup.el: Preload nadvice.
3289 * replace.el (perform-replace): Revert to funcall
3290 instead of run-hook-with-args-until-failure.
3291 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
3292 * dired-aux.el (dired-isearch-filenames-mode): Rename from
3293 dired-isearch-filenames-toggle; make it into a proper minor mode.
3294 Use add/remove-function.
3295 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
3296 Call the minor-mode rather than add/remove-hook.
3297 (dired-isearch-filter-filenames):
3298 Remove isearch-message-prefix property.
3299 * info.el (Info--search-loop): New function, extracted from Info-search.
3300 Funcall isearch-filter-predicate instead of
3301 run-hook-with-args-until-failure isearch-filter-predicates.
3302 (Info-search): Use it.
3303 (Info-mode): Use isearch-filter-predicate instead of
3304 isearch-filter-predicates.
3305
3306 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3307
3308 Do not call to `selected-window' where it is assumed by default.
3309 Affected functions are `window-minibuffer-p', `window-dedicated-p',
3310 `window-hscroll', `window-width', `window-height', `window-buffer',
3311 `window-frame', `window-start', `window-point', `next-window'
3312 and `window-display-table'.
3313 * abbrev.el (abbrev--default-expand):
3314 * bs.el (bs--show-with-configuration):
3315 * buff-menu.el (Buffer-menu-mouse-select):
3316 * calc/calc.el (calc):
3317 * calendar/calendar.el (calendar-generate-window):
3318 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
3319 (diary-make-entry):
3320 * comint.el (send-invisible, comint-dynamic-complete-filename)
3321 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
3322 * completion.el (complete):
3323 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
3324 * disp-table.el (describe-current-display-table):
3325 * doc-view.el (doc-view-insert-image):
3326 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
3327 * ehelp.el (with-electric-help):
3328 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3329 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
3330 * emacs-lisp/helper.el (Helper-help-scroller):
3331 * emulation/cua-base.el (cua--post-command-handler-1):
3332 * eshell/esh-mode.el (eshell-output-filter):
3333 * ffap.el (ffap-gnus-wrapper):
3334 * help-macro.el (make-help-screen):
3335 * hilit-chg.el (highlight-compare-buffers):
3336 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
3337 * hl-line.el (global-hl-line-highlight):
3338 * icomplete.el (icomplete-simple-completing-p):
3339 * isearch.el (isearch-done):
3340 * jit-lock.el (jit-lock-stealth-fontify):
3341 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
3342 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
3343 * mpc.el (mpc-tagbrowser, mpc):
3344 * net/rcirc.el (rcirc-any-buffer):
3345 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
3346 * play/landmark.el (landmark-max-width, landmark-max-height):
3347 * play/zone.el (zone):
3348 * progmodes/compile.el (compilation-goto-locus):
3349 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
3350 * progmodes/etags.el (find-tag-other-window):
3351 * progmodes/fortran.el (fortran-column-ruler):
3352 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
3353 * progmodes/verilog-mode.el (verilog-point-text):
3354 * reposition.el (reposition-window):
3355 * rot13.el (toggle-rot13-mode):
3356 * server.el (server-switch-buffer):
3357 * shell.el (shell-dynamic-complete-command)
3358 (shell-dynamic-complete-environment-variable):
3359 * simple.el (insert-buffer, set-selective-display)
3360 (delete-completion-window):
3361 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
3362 (speedbar-recenter):
3363 * startup.el (fancy-splash-head):
3364 * textmodes/ispell.el (ispell-command-loop):
3365 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
3366 * tutorial.el (help-with-tutorial):
3367 * vc/add-log.el (add-change-log-entry):
3368 * vc/compare-w.el (compare-windows):
3369 * vc/ediff-help.el (ediff-indent-help-message):
3370 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
3371 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
3372 (ediff-setup-control-frame):
3373 * vc/emerge.el (emerge-position-region):
3374 * vc/pcvs-util.el (cvs-bury-buffer):
3375 * window.el (walk-windows, mouse-autoselect-window-select):
3376 * winner.el (winner-set-conf, winner-undo): Related users changed.
3377
3378 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
3379
3380 * frameset.el (frameset--set-id): Doc fix.
3381 (frameset-frame-id, frameset-frame-id-equal-p)
3382 (frameset-locate-frame-id): New functions.
3383 (frameset--process-minibuffer-frames, frameset--reuse-frame)
3384 (frameset-restore): Use them.
3385
3386 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3387
3388 Do not call to `selected-frame' where it is assumed by default.
3389 Affected functions are `raise-frame', `redraw-frame',
3390 `frame-first-window', `frame-terminal' and `delete-frame'.
3391 * calendar/appt.el (appt-disp-window):
3392 * epg.el (epg-wait-for-completion):
3393 * follow.el (follow-delete-other-windows-and-split)
3394 (follow-avoid-tail-recenter):
3395 * international/mule.el (set-terminal-coding-system):
3396 * mail/rmail.el (rmail-mail-return):
3397 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
3398 * progmodes/f90.el (f90-add-imenu-menu):
3399 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
3400 * server.el (server-switch-buffer):
3401 * simple.el (delete-completion-window):
3402 * talk.el (talk):
3403 * term/xterm.el (terminal-init-xterm-modify-other-keys)
3404 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
3405 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
3406 * vc/ediff.el (ediff-documentation): Related users changed.
3407 * frame.el (selected-terminal): Remove the leftover.
3408
3409 2013-08-05 Glenn Morris <rgm@gnu.org>
3410
3411 * calendar/calendar.el (calendar-generate-month):
3412 Fix for calendar-column-width != 1 + calendar-day-digit-width.
3413 (calendar-generate-month, calendar-font-lock-keywords):
3414 Fix for calendar-day-header-width > length of any day name.
3415
3416 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
3417
3418 * desktop.el (desktop-clear): Use new name of sort predicate.
3419
3420 * frameset.el (frameset): Add docstring. Move :version property to its
3421 own `version' slot.
3422 (frameset-copy): Rename from copy-frameset.
3423 (frameset-p): Check more thoroughly.
3424 (frameset-prop): Do not check for :version, which is no longer a prop.
3425 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3426 Use new :never value instead of t.
3427 (frameset-filter-alist): Expand and clarify docstring.
3428 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
3429 (frameset-filter-minibuffer, frameset-filter-save-param)
3430 (frameset-filter-restore-param, frameset-filter-iconified):
3431 Add pointer to docstring of frameset-filter-alist.
3432 (frameset-filter-params): Rename filter values to be more meaningful:
3433 :never instead of t, and reverse the meanings of :save and :restore.
3434 (frameset--process-minibuffer-frames): Clarify error message.
3435 (frameset-save): Avoid unnecessary and confusing call to framep.
3436 Use new BOA constructor for framesets.
3437 (frameset--reuse-list): Doc fix.
3438 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
3439 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
3440 (frameset-minibufferless-first-p): Doc fix.
3441 Rename from frameset-sort-frames-for-deletion.
3442 (frameset-restore): Doc fixes. Use new function names.
3443 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3444
3445 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3446
3447 * desktop.el (desktop-restore-forces-onscreen)
3448 (desktop-restore-reuses-frames): Document :keyword constant values.
3449 (desktop-filter-parameters-alist): Remove, now identical to
3450 frameset-filter-alist.
3451 (desktop--filter-tty*): Remove, moved to frameset.el.
3452 (desktop-save-frameset, desktop-restore-frameset):
3453 Do not pass :filters argument.
3454
3455 * frameset.el (frameset-live-filter-alist)
3456 (frameset-persistent-filter-alist): New variables.
3457 (frameset-filter-alist): Use them. Add autoload cookie.
3458 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
3459 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
3460 `frameset--id' (it's supposed to be internal to frameset.el).
3461 (frameset--process-minibuffer-frames): Ditto. Doc fix.
3462 (frameset--initial-params): New function.
3463 (frameset--get-frame): Use it. Doc fix.
3464 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
3465 Accept :all, not 'all.
3466 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
3467 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
3468 with fbound symbols. Fix frame id matching, and remove matching ids if
3469 the frame being restored is deleted. Obey :delete.
3470
3471 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3472
3473 * subr.el (macrop): New function.
3474 (text-clone--maintaining): New var.
3475 (text-clone--maintain): Rename from text-clone-maintain. Use it
3476 instead of inhibit-modification-hooks.
3477
3478 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
3479 a proxy, so as handle autoloads and redefinitions of the target.
3480 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
3481
3482 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
3483 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
3484 (pcase--mutually-exclusive-p): New function.
3485 (pcase--split-consp): Use it.
3486 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
3487 mutually exclusive with the current predicate.
3488
3489 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
3490 (edebug-macrop): Remove. Use `macrop' instead.
3491 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
3492 (ad-macro-p):
3493 * eshell/esh-cmd.el (eshell-macrop):
3494 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
3495
3496 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3497
3498 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
3499 (advice-mapc): New function, using it.
3500 (advice-function-member-p): New function.
3501 (advice--normalize): Store the cdr in advice--saved-rewrite since
3502 that's the part that will be changed.
3503 (advice--symbol-function): New function.
3504 (advice-remove): Handle removal before the function is defined.
3505 Adjust to new advice--saved-rewrite.
3506 (advice-member-p): Use advice-function-member-p and
3507 advice--symbol-function.
3508
3509 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3510
3511 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
3512 (frameset-filter-minibuffer): Doc fix.
3513 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
3514 (frameset--set-id, frameset--process-minibuffer-frames)
3515 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
3516 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
3517
3518 * desktop.el (desktop-clear): Only delete frames when called
3519 interactively and desktop-restore-frames is non-nil. Doc fix.
3520 (desktop-read): Set desktop-saved-frameset to nil.
3521
3522 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
3523
3524 * vc/vc.el (vc-ignore): Rewrite.
3525 (vc-default-ignore-completion-table):
3526 (vc--read-lines):
3527 (vc--add-line, vc--remove-regexp): New functions.
3528
3529 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
3530 (vc-svn-ignore-completion-table): New function.
3531
3532 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
3533 (vc-hg-ignore-completion-table):
3534 (vc-hg-find-ignore-file): New functions.
3535
3536 * vc/vc-git.el (vc-git-ignore): Rewrite.
3537 (vc-git-ignore-completion-table):
3538 (vc-git-find-ignore-file): New functions.
3539
3540 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
3541
3542 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
3543 (vc-bzr-ignore-completion-table):
3544 (vc-bzr-find-ignore-file): New functions.
3545
3546 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
3547
3548 * frameset.el (frameset-prop): New function and setter.
3549 (frameset-save): Do not modify frame list passed by the caller.
3550
3551 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3552
3553 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
3554
3555 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3556
3557 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
3558 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
3559
3560 * custom.el (custom-initialize-default, custom-initialize-set)
3561 (custom-initialize-reset, custom-initialize-changed): Affect the
3562 toplevel-default-value (bug#6275, bug#14586).
3563 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
3564 for bug#6275.
3565
3566 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3567
3568 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
3569 Add cl-def* expressions.
3570
3571 * frameset.el (frameset-filter-params): Fix order of arguments.
3572
3573 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3574
3575 Move code related to saving frames to frameset.el.
3576 * desktop.el: Require frameset.
3577 (desktop-restore-frames): Doc fix.
3578 (desktop-restore-reuses-frames): Rename from
3579 desktop-restoring-reuses-frames.
3580 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
3581 (desktop-clear): Clear frames too.
3582 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
3583 (desktop--filter-tty*, desktop-save, desktop-read):
3584 Use frameset functions.
3585 (desktop-before-saving-frames-functions, desktop--filter-*-color)
3586 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
3587 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
3588 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
3589 (desktop--process-minibuffer-frames, desktop-save-frames)
3590 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
3591 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
3592 (desktop--sort-states, desktop-restoring-frames-p)
3593 (desktop-restore-frames): Remove. Most code moved to frameset.el.
3594 (desktop-restoring-frameset-p, desktop-restore-frameset)
3595 (desktop--check-dont-save, desktop-save-frameset): New functions.
3596 (desktop--app-id): New constant.
3597 (desktop-first-buffer, desktop-buffer-ok-count)
3598 (desktop-buffer-fail-count): Move before first use.
3599 * frameset.el: New file.
3600
3601 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3602
3603 * files.el: Use lexical-binding.
3604 (dir-locals-read-from-file): Remove unused `err' variable.
3605 (hack-dir-local-variables--warned-coding): New var.
3606 (hack-dir-local-variables): Use it to avoid repeated warnings.
3607 (make-backup-file-name--default-function): New function.
3608 (make-backup-file-name-function): Use it as default.
3609 (buffer-stale--default-function): New function.
3610 (buffer-stale-function): Use it as default.
3611 (revert-buffer-insert-file-contents--default-function): New function.
3612 (revert-buffer-insert-file-contents-function): Use it as default.
3613 (insert-directory): Avoid add-to-list.
3614
3615 * autorevert.el (auto-revert-handler): Simplify.
3616 Use buffer-stale--default-function.
3617
3618 2013-08-01 Tassilo Horn <tsdh@gnu.org>
3619
3620 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
3621
3622 * whitespace.el (whitespace-ensure-local-variables): New function.
3623 (whitespace-cleanup-region): Call it.
3624 (whitespace-turn-on): Call it.
3625
3626 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
3627
3628 Complete file name handlers.
3629
3630 * net/tramp.el (tramp-handle-set-visited-file-modtime)
3631 (tramp-handle-verify-visited-file-modtime)
3632 (tramp-handle-file-notify-rm-watch): New functions.
3633 (tramp-call-process): Do not bind `default-directory'.
3634
3635 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3636 Order alphabetically.
3637 [access-file, add-name-to-file, dired-call-process]:
3638 [dired-compress-file, file-acl, file-notify-rm-watch]:
3639 [file-ownership-preserved-p, file-selinux-context]:
3640 [make-directory-internal, make-symbolic-link, set-file-acl]:
3641 [set-file-selinux-context, set-visited-file-modtime]:
3642 [verify-visited-file-modtime]: Add handler.
3643 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
3644
3645 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3646 [file-notify-add-watch, file-notify-rm-watch]:
3647 [set-file-times, set-visited-file-modtime]:
3648 [verify-visited-file-modtime]: Add handler.
3649 (with-tramp-gvfs-error-message)
3650 (tramp-gvfs-handle-set-visited-file-modtime)
3651 (tramp-gvfs-fuse-file-name): Remove.
3652 (tramp-gvfs-handle-file-notify-add-watch)
3653 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
3654 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
3655
3656 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3657 Order alphabetically.
3658 [file-notify-rm-watch ]: Use default Tramp handler.
3659 [executable-find]: Remove private handler.
3660 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
3661 `default-directory'.
3662 (tramp-sh-handle-executable-find)
3663 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
3664 (tramp-sh-file-gvfs-monitor-dir-process-filter)
3665 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
3666 Do not use `format' in `tramp-message'.
3667
3668 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
3669 [file-notify-rm-watch, set-visited-file-modtime]:
3670 [verify-visited-file-modtime]: Add handler.
3671 (tramp-smb-call-winexe): Do not bind `default-directory'.
3672
3673 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
3674
3675 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
3676
3677 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
3678
3679 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
3680 use it.
3681 (log-view-diff-changeset): Same.
3682 (log-view-diff-common): Call backend command `previous-revision'
3683 to find out the previous revision, in both cases. Swap the
3684 variables `to' and `fr', so that `fr' usually refers to the
3685 earlier revision (Bug#14989).
3686
3687 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
3688
3689 * ibuf-ext.el (ibuffer-filter-by-filename):
3690 Make it work with dired buffers too.
3691
3692 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3693
3694 * emacs-lisp/re-builder.el (reb-color-display-p):
3695 * files.el (save-buffers-kill-terminal):
3696 * net/browse-url.el (browse-url):
3697 * server.el (server-save-buffers-kill-terminal):
3698 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
3699 Prefer nil to selected-frame for the first arg of frame-parameter.
3700
3701 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
3702
3703 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
3704
3705 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
3706
3707 * minibuffer.el (completion--twq-all): Try and preserve each
3708 completion's case choice (bug#14907).
3709
3710 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
3711
3712 * net/network-stream.el (open-network-stream): Mention the new
3713 :nogreeting parameter.
3714 (network-stream-open-starttls): Use the :nogreeting parameter
3715 (bug#14938).
3716
3717 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
3718
3719 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
3720 more natural than popping.
3721
3722 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
3723 (shr-urlify): Highlight under mouse.
3724
3725 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
3726
3727 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
3728
3729 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
3730
3731 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
3732 buffer for output.
3733
3734 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
3735 point-min==1. Fix search string. Fix parentheses missing.
3736
3737 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
3738 assume point-min==1. Fix search string. Fix parentheses missing.
3739
3740 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
3741
3742 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
3743 buffer for output.
3744
3745 2013-07-29 Eli Zaretskii <eliz@gnu.org>
3746
3747 * frame.el (frame-notice-user-settings): Avoid inflooping when the
3748 initial frame is minibuffer-less. (Bug#14841)
3749
3750 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
3751
3752 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
3753 option.
3754
3755 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
3756 (tramp-maybe-open-connection): Use it.
3757
3758 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
3759
3760 * desktop.el (desktop--make-frame): Include `minibuffer' in the
3761 minimal set of parameters passed when creating a frame, because
3762 the minibuffer status of a frame cannot be changed later.
3763
3764 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
3765
3766 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
3767 replace-regexp-in-string and inadvertent omissions in previous change.
3768 (todo-filter-items): Ensure only file names are comma-separated in
3769 name of filtered items buffer.
3770
3771 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
3772
3773 * desktop.el: Optionally force offscreen frames back onscreen.
3774 (desktop-restoring-reuses-frames): New option.
3775 (desktop--compute-pos, desktop--move-onscreen): New functions.
3776 (desktop--make-frame): Use desktop--move-onscreen.
3777
3778 2013-07-27 Alan Mackenzie <acm@muc.de>
3779
3780 Fontify a Java generic method as a function.
3781 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
3782 value to t.
3783
3784 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
3785
3786 * calendar/todo-mode.el: Add command to rename todo files.
3787 (todo-rename-file): New command.
3788 (todo-key-bindings-t): Add key binding for it. Change the
3789 bindings of todo-filter-regexp-items(-multifile) to use `x'
3790 instead of `r', since the latter is better suited to the new
3791 renaming command.
3792
3793 2013-07-27 Alan Mackenzie <acm@muc.de>
3794
3795 Make Java try-with-resources statement parse properly.
3796 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
3797 (c-block-stmt-1-2-key): New language constants/variables.
3798 * progmodes/cc-engine.el (c-beginning-of-statement-1)
3799 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
3800 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
3801 with c-block-stmt-1-2-key.
3802
3803 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
3804
3805 * desktop.el (desktop--make-frame): Apply most frame parameters after
3806 creating the frame to force (partially or totally) offscreen frames to
3807 be restored as such.
3808
3809 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
3810
3811 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
3812 (Bug#14948)
3813
3814 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3815
3816 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
3817 `base' arg of backtrace-frame.
3818
3819 2013-07-26 Eli Zaretskii <eliz@gnu.org>
3820
3821 * simple.el (list-processes): Doc fix.
3822
3823 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
3824
3825 * desktop.el (desktop--select-frame):
3826 Try harder to reuse existing frames.
3827
3828 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3829
3830 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
3831 (edebug-eval): Use backtrace-eval.
3832 (edebug--display, edebug--recursive-edit): Don't let-bind the
3833 edebug-outer-* vars that keep track of variables we locally let-bind.
3834 (edebug-outside-excursion): Don't restore outside values of locally
3835 let-bound vars.
3836 (edebug--display): Use user-error.
3837 (cl-lexical-debug, cl-debug-env): Remove.
3838
3839 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
3840
3841 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
3842 are restored to be sure that they are visible before deleting any
3843 remaining ones.
3844
3845 2013-07-26 Matthias Meulien <orontee@gmail.com>
3846
3847 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
3848 vc-print-root-log. (Bug#14948)
3849
3850 2013-07-26 Richard Stallman <rms@gnu.org>
3851
3852 Add aliases for encrypting mail.
3853 * epa.el (epa-mail-aliases): New option.
3854 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
3855 Bind inhibit-read-only so read-only text doesn't ruin everything.
3856 (epa-mail-default-recipients): New subroutine broken out.
3857 Handle epa-mail-aliases.
3858
3859 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3860
3861 Add support for lexical variables to the debugger's `e' command.
3862 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
3863 vars, except for debugger-outer-match-data.
3864 (debugger-frame-number): Move check for "on a function call" from
3865 callers into it. Add `skip-base' argument.
3866 (debugger-frame, debugger-frame-clear): Simplify accordingly.
3867 (debugger-env-macro): Only reset the state stored in non-variables,
3868 i.e. current-buffer and match-data.
3869 (debugger-eval-expression): Rewrite using backtrace-eval.
3870 * subr.el (internal--called-interactively-p--get-frame): Remove.
3871 (called-interactively-p):
3872 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
3873 `base' arg of backtrace-frame instead.
3874
3875 2013-07-26 Glenn Morris <rgm@gnu.org>
3876
3877 * align.el (align-regexp): Doc fix. (Bug#14857)
3878 (align-region): Explicit error if subexpression missing/does not match.
3879
3880 * simple.el (global-visual-line-mode):
3881 Do not duplicate the mode lighter. (Bug#14858)
3882
3883 2013-07-25 Martin Rudalics <rudalics@gmx.at>
3884
3885 * window.el (display-buffer): In display-buffer bind
3886 split-window-keep-point to t, bug#14829.
3887
3888 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
3889
3890 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
3891 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
3892 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
3893 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
3894 Change accordingly.
3895 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
3896 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
3897
3898 2013-07-25 Glenn Morris <rgm@gnu.org>
3899
3900 * dired-x.el (dired-mark-extension): Convert comment to doc string.
3901
3902 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
3903
3904 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
3905 parameter to modify-frame-parameters if the value has not changed;
3906 this is a workaround for bug#14949.
3907 (desktop--make-frame): On cl-delete-if call, check parameter name,
3908 not full parameter.
3909
3910 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
3911
3912 * vc/vc.el (vc-ignore): New function.
3913
3914 * vc/vc-svn.el (vc-svn-ignore): New function.
3915
3916 * vc/vc-hg.el (vc-hg-ignore): New function.
3917
3918 * vc/vc-git.el (vc-git-ignore): New function.
3919
3920 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
3921 (vc-dir-ignore): New function.
3922
3923 * vc/vc-cvs.el (vc-cvs-ignore): New function.
3924 (cvs-append-to-ignore): Move here from pcvs.el.
3925
3926 * vc/vc-bzr.el (vc-bzr-ignore): New function.
3927
3928 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
3929
3930 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
3931
3932 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
3933 (desktop-restore-frames): Warn when deleting an existing frame failed.
3934
3935 2013-07-24 Glenn Morris <rgm@gnu.org>
3936
3937 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
3938
3939 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
3940
3941 * filenotify.el (file-notify-supported-p):
3942 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
3943 Remove functions.
3944
3945 * autorevert.el (auto-revert-use-notify):
3946 (auto-revert-notify-add-watch):
3947 * net/tramp.el (tramp-file-name-for-operation):
3948 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3949 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3950 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3951 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3952 Remove `file-notify-supported-p' entry.
3953
3954 2013-07-24 Glenn Morris <rgm@gnu.org>
3955
3956 * printing.el: Replace all uses of deleted ps-windows-system,
3957 ps-lp-system, ps-flatten-list with lpr- versions.
3958
3959 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
3960
3961 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
3962 checked with memq (bug#14935).
3963
3964 * files.el (revert-buffer-function): Use a non-nil default.
3965 (revert-buffer-preserve-modes): Declare var to
3966 provide access to the `preserve-modes' argument.
3967 (revert-buffer): Let-bind it.
3968 (revert-buffer--default): New function, extracted from revert-buffer.
3969
3970 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
3971
3972 * lpr.el: Signal print errors more prominently.
3973 (print-region-function): Don't default to nil.
3974 (lpr-print-region): New function, extracted from print-region-1.
3975 Check lpr's return value and signal an error in case of problem.
3976 (print-region-1): Use it.
3977 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
3978 versions instead.
3979 (ps-printer-name): Default to nil.
3980 (ps-printer-name-option): Default to lpr-printer-switch.
3981 (ps-print-region-function): Don't default to nil.
3982 (ps-postscript-code-directory): Simplify default.
3983 (ps-do-despool): Use lpr-print-region to properly check the outcome.
3984 (ps-string-list, ps-eval-switch, ps-flatten-list)
3985 (ps-flatten-list-1): Remove.
3986 (ps-multibyte-buffer): Avoid setq.
3987 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
3988 (print-region-function, ps-print-region-function): Don't set them here.
3989
3990 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
3991
3992 * ido.el (ido-fractionp):
3993 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
3994 (ido-max-file-prompt-width, ido-unc-hosts-cache)
3995 (ido-max-directory-size, ido-max-dir-file-cache)
3996 (ido-decorations): Doc fix.
3997
3998 * ansi-color.el: Fix old URL.
3999
4000 2013-07-23 Michael R. Mauger <michael@mauger.com>
4001
4002 * progmodes/sql.el: Version 3.3
4003 (sql-product-alist): Improve oracle :prompt-cont-regexp.
4004 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
4005 (sql-interactive-remove-continuation-prompt): Rewrite, use
4006 functions above. Fix continuation prompt and complete output line
4007 handling.
4008 (sql-redirect-one, sql-execute): Use `read-only-mode' on
4009 redirected output buffer.
4010 (sql-mode): Restore deleted code (Bug#13591).
4011
4012 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
4013
4014 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
4015
4016 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
4017
4018 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
4019
4020 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4021 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4022 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
4023
4024 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
4025
4026 * desktop.el (desktop-clear): Simplify; remove useless checks
4027 against invalid buffer names.
4028 (desktop-list*): Use cl-list*.
4029 (desktop-buffer-info, desktop-create-buffer): Simplify.
4030
4031 2013-07-23 Leo Liu <sdl.web@gmail.com>
4032
4033 * bookmark.el (bookmark-make-record): Restore NAME as a default
4034 value. (Bug#14933)
4035
4036 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
4037
4038 * emacs-lisp/autoload.el (autoload--setup-output): New function,
4039 extracted from autoload--insert-text.
4040 (autoload--insert-text): Remove.
4041 (autoload--print-cookie-text): New function, extracted from
4042 autoload--insert-cookie-text.
4043 (autoload--insert-cookie-text): Remove.
4044 (autoload-generate-file-autoloads): Adjust calls accordingly.
4045
4046 * winner.el (winner-hook-installed-p): Remove.
4047 (winner-mode): Simplify accordingly.
4048
4049 * subr.el (add-to-list): Fix compiler-macro when `append' is
4050 not constant. Don't use `cl-member' for the base case.
4051
4052 * progmodes/subword.el: Fix boundary case (bug#13758).
4053 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
4054 own group.
4055 (subword-backward-regexp): Make it a constant.
4056 (subword-forward-internal): Don't treat a trailing capital as the
4057 beginning of a word.
4058
4059 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
4060
4061 * emacs-lisp/package.el (package-menu-mode): Don't modify the
4062 global value of tabulated-list-revert-hook (bug#14930).
4063
4064 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
4065
4066 * desktop.el: Require 'cl-lib.
4067 (desktop-before-saving-frames-functions): New hook.
4068 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
4069 for frames being saved. Rename from desktop--save-minibuffer-frames.
4070 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
4071 Do not save frames with non-nil `desktop-dont-save' parameter.
4072 Filter out deleted frames.
4073 (desktop--find-frame): Use cl-find-if.
4074 (desktop--select-frame): Use cl-(first|second|third) to access values
4075 of desktop-mini.
4076 (desktop--make-frame): Use cl-delete-if.
4077 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
4078 (desktop-restore-frames): Use cl-(first|second|third) to access values
4079 of desktop-mini. Look for visible frame at the end, not while
4080 restoring frames.
4081
4082 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
4083 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
4084 Use string-match-p, looking-at-p (bug#14927).
4085
4086 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
4087
4088 * desktop.el (desktop-saved-frame-states):
4089 Rename from desktop--saved-states; all users changed.
4090 (desktop-save-frames): Rename from desktop--save-frames.
4091 Do not save state to desktop file.
4092 (desktop-save): Save desktop-saved-frame-states to desktop file
4093 and reset to nil.
4094 (desktop-restoring-frames-p): New function.
4095 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
4096 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
4097 buffer-lists when restoring frames. Suggested by Martin Rudalics.
4098
4099 * desktop.el: Correctly restore iconified frames.
4100 (desktop--filter-iconified-position): New function.
4101 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
4102
4103 2013-07-20 Glenn Morris <rgm@gnu.org>
4104
4105 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
4106 Let `message' do the formatting.
4107 (def-gdb-preempt-display-buffer): Add explicit format.
4108
4109 * image-dired.el (image-dired-track-original-file):
4110 Use with-current-buffer.
4111 (image-dired-track-thumbnail): Use with-current-buffer.
4112 Avoid changing point of wrong window.
4113
4114 * image-dired.el (image-dired-track-original-file):
4115 Avoid changing point of wrong window. (Bug#14909)
4116
4117 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
4118
4119 * progmodes/gdb-mi.el (gdb-done-or-error):
4120 Guard against "%" in gdb output. (Bug#14127)
4121
4122 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
4123
4124 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
4125 (Bug#14826)
4126
4127 * international/mule.el (coding-system-iso-2022-flags): Fix last
4128 change.
4129
4130 2013-07-20 Kenichi Handa <handa@gnu.org>
4131
4132 * international/mule.el (coding-system-iso-2022-flags):
4133 Add `8-bit-level-4'. (Bug#8522)
4134
4135 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4136
4137 * net/shr.el (shr-mouse-browse-url): New command and keystroke
4138 (bug#14815).
4139
4140 * net/eww.el (eww-process-text-input): Allow inputting when the
4141 point is at the start of the line, as the properties aren't
4142 front-sticky.
4143
4144 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
4145 degenerate widths.
4146
4147 2013-07-19 Richard Stallman <rms@gnu.org>
4148
4149 * epa.el (epa-popup-info-window): Doc fix.
4150
4151 * subr.el (split-string): New arg TRIM.
4152
4153 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
4154
4155 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
4156 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
4157
4158 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
4159
4160 * filenotify.el (file-notify--library): Rename from
4161 `file-notify-support'. Do not autoload. Adapt all uses.
4162 (file-notify-supported-p): New defun.
4163
4164 * autorevert.el (auto-revert-use-notify):
4165 Use `file-notify-supported-p' instead of `file-notify-support'.
4166 Adapt docstring.
4167 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
4168
4169 * net/tramp.el (tramp-file-name-for-operation):
4170 Add `file-notify-supported-p'.
4171
4172 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
4173 New defun.
4174 (tramp-sh-file-name-handler-alist): Add it as handler for
4175 `file-notify-supported-p '.
4176
4177 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4178 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4179 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4180 Add `ignore' as handler for `file-notify-*' functions.
4181
4182 2013-07-17 Eli Zaretskii <eliz@gnu.org>
4183
4184 * simple.el (line-move-partial, line-move): Don't start vscroll or
4185 scroll-up if the current line is not taller than the window.
4186 (Bug#14881)
4187
4188 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
4189
4190 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
4191 highlight question marks in the method names as strings.
4192 (ruby-block-beg-keywords): Inline.
4193 (ruby-font-lock-keyword-beg-re): Extract from
4194 `ruby-font-lock-keywords'.
4195
4196 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
4197
4198 * frame.el (blink-cursor-blinks): New defcustom.
4199 (blink-cursor-blinks-done): New defvar.
4200 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
4201 (blink-cursor-timer-function): Check if number of blinks has been
4202 done on X and NS.
4203 (blink-cursor-suspend, blink-cursor-check): New defuns.
4204
4205 2013-07-15 Glenn Morris <rgm@gnu.org>
4206
4207 * edmacro.el (edmacro-format-keys): Fix previous change.
4208
4209 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
4210
4211 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
4212 The hack didn't work outside English locales anyway.
4213
4214 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
4215
4216 * simple.el (define-alternatives): Rename from alternatives-define,
4217 per RMS' suggestion.
4218
4219 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
4220
4221 * desktop.el (desktop-restore-frames): Change default to t.
4222 (desktop-restore-in-current-display): Now offer more options.
4223 (desktop-restoring-reuses-frames): New customization option.
4224 (desktop--saved-states): Doc fix.
4225 (desktop-filter-parameters-alist): New variable, renamed and expanded
4226 from desktop--excluded-frame-parameters.
4227 (desktop--target-display): New variable.
4228 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
4229 (desktop--filter-tty*, desktop--filter-*-color)
4230 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
4231 (desktop--filter-save-desktop-parm)
4232 (desktop-restore-in-original-display-p): New functions.
4233 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
4234 (desktop--save-minibuffer-frames): New function, inspired by a similar
4235 function from Martin Rudalics.
4236 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
4237 (desktop--restore-in-this-display-p): Remove.
4238 (desktop--find-frame): Rename from desktop--find-frame-in-display
4239 and add predicate argument.
4240 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
4241 (desktop--reuse-list): New variable.
4242 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
4243 New functions.
4244 (desktop--restore-frames): Add support for "minibuffer-special" frames.
4245
4246 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
4247
4248 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
4249
4250 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
4251
4252 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4253 Highlight conversion methods on Kernel.
4254
4255 2013-07-13 Alan Mackenzie <acm@muc.de>
4256
4257 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
4258 and comment it out. This out-commenting enables certain C++
4259 declarations to be parsed correctly.
4260
4261 2013-07-13 Eli Zaretskii <eliz@gnu.org>
4262
4263 * international/mule.el (define-coding-system): Doc fix.
4264
4265 * simple.el (default-font-height): Don't call font-info if the
4266 frame's default font didn't change since the frame was created.
4267 (Bug#14838)
4268
4269 2013-07-13 Leo Liu <sdl.web@gmail.com>
4270
4271 * ido.el (ido-read-file-name): Guard against non-symbol value.
4272
4273 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
4274
4275 * progmodes/python.el (python-imenu--build-tree): Fix corner case
4276 in nested defuns.
4277
4278 2013-07-13 Leo Liu <sdl.web@gmail.com>
4279
4280 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
4281 ido-set-matches call. (Bug#6852)
4282
4283 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
4284
4285 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
4286 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
4287 Ruby 2.0.
4288 (ruby-font-lock-keywords): Distinguish calls to functions with
4289 module-like names from module references. Highlight character
4290 literals.
4291
4292 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
4293
4294 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
4295 (gdb-send): Handle continued commands. (Bug#14847)
4296
4297 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
4298
4299 * desktop.el (desktop--v2s): Remove unused local variable.
4300 (desktop-save-buffer): Make defvar-local; adjust docstring.
4301 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
4302 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
4303
4304 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
4305
4306 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
4307
4308 2013-07-12 Eli Zaretskii <eliz@gnu.org>
4309
4310 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
4311 (Bug#14842)
4312
4313 2013-07-12 Glenn Morris <rgm@gnu.org>
4314
4315 * doc-view.el: Require cl-lib at runtime too.
4316 (doc-view-remove-if): Remove.
4317 (doc-view-search-next-match, doc-view-search-previous-match):
4318 Use cl-remove-if.
4319
4320 * edmacro.el: Require cl-lib at runtime too.
4321 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
4322 (edmacro-mismatch, edmacro-subseq): Remove.
4323
4324 * shadowfile.el: Require cl-lib.
4325 (shadow-remove-if): Remove.
4326 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
4327 Use cl-remove-if.
4328
4329 * wid-edit.el: Require cl-lib.
4330 (widget-choose): Use cl-remove-if.
4331 (widget-remove-if): Remove.
4332
4333 * progmodes/ebrowse.el: Require cl-lib at runtime too.
4334 (ebrowse-delete-if-not): Remove.
4335 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
4336 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
4337 Use cl-delete-if-not.
4338
4339 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
4340
4341 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
4342 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
4343
4344 2013-07-12 Leo Liu <sdl.web@gmail.com>
4345
4346 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
4347
4348 2013-07-11 Glenn Morris <rgm@gnu.org>
4349
4350 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
4351 (edebug-gensym-index, edebug-gensym):
4352 Remove reimplementation of cl-gensym.
4353 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
4354
4355 * thumbs.el: Require cl-lib at run-time too.
4356 (thumbs-gensym-counter, thumbs-gensym):
4357 Remove reimplementation of cl-gensym.
4358 (thumbs-temp-file): Use cl-gensym.
4359
4360 * emacs-lisp/ert.el: Require cl-lib at runtime too.
4361 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
4362 (ert--intersection, ert--set-difference, ert--set-difference-eq)
4363 (ert--union, ert--gensym-counter, ert--gensym-counter)
4364 (ert--coerce-to-vector, ert--remove*, ert--string-position)
4365 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
4366 (ert-make-test-unbound, ert--expand-should-1)
4367 (ert--expand-should, ert--should-error-handle-error)
4368 (should-error, ert--explain-equal-rec)
4369 (ert--plist-difference-explanation, ert-select-tests)
4370 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
4371 Use cl-lib functions rather than reimplementations.
4372
4373 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
4374
4375 * net/tramp.el (tramp-methods): Extend docstring.
4376 (tramp-connection-timeout): New defcustom.
4377 (tramp-error-with-buffer): Reset timestamp only when appropriate.
4378 (with-tramp-progress-reporter): Simplify.
4379 (tramp-process-actions): Improve messages.
4380
4381 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4382 * net/tramp-sh.el (tramp-maybe-open-connection):
4383 Use `tramp-connection-timeout'.
4384 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
4385 (Bug#14808)
4386
4387 2013-07-11 Leo Liu <sdl.web@gmail.com>
4388
4389 * ido.el (ido-read-file-name): Conform to the requirements of
4390 read-file-name. (Bug#11861)
4391 (ido-read-directory-name): Conform to the requirements of
4392 read-directory-name.
4393
4394 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
4395
4396 * subr.el (delay-warning): New function.
4397
4398 2013-07-10 Eli Zaretskii <eliz@gnu.org>
4399
4400 * simple.el (default-line-height): New function.
4401 (line-move-partial, line-move): Use it instead of computing the
4402 line height inline.
4403 (line-move-partial): Always compute ROWH. If the last line is
4404 partially-visible, but its text is completely visible, allow
4405 cursor to enter such a partially-visible line.
4406
4407 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
4408
4409 Improve error messages. (Bug#14808)
4410
4411 * net/tramp.el (tramp-current-connection): New defvar, moved from
4412 tramp-sh.el.
4413 (tramp-message-show-progress-reporter-message): Remove, not
4414 needed anymore.
4415 (tramp-error-with-buffer): Show message in minibuffer.
4416 Discard input before waiting. Reset connection timestamp.
4417 (with-tramp-progress-reporter): Improve messages.
4418 (tramp-process-actions): Use progress reporter. Delete process in
4419 case of error. Improve messages.
4420
4421 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
4422 Call `tramp-error-with-buffer' with vector and buffer.
4423 (tramp-current-connection): Remove.
4424 (tramp-maybe-open-connection): The car of
4425 `tramp-current-connection' are the first 3 slots of the vector.
4426
4427 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
4428
4429 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
4430 inside continued strings.
4431
4432 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
4433
4434 Timestamp fixes for undo (Bug#14824).
4435 * files.el (clear-visited-file-modtime): Move here from fileio.c.
4436
4437 2013-07-10 Leo Liu <sdl.web@gmail.com>
4438
4439 * files.el (require-final-newline): Allow safe local value.
4440 (Bug#14834)
4441
4442 2013-07-09 Leo Liu <sdl.web@gmail.com>
4443
4444 * ido.el (ido-read-directory-name): Handle fallback.
4445 (ido-read-file-name): Update DIR to ido-current-directory.
4446 (Bug#1516)
4447 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
4448
4449 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
4450
4451 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
4452 "autoload". Remove "warn lower camel case" section, previously
4453 commented out. Highlight negation char. Do not highlight the
4454 target in singleton method definitions.
4455
4456 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4457
4458 * faces.el (tty-setup-hook): Declare the hook.
4459
4460 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
4461 and detect when a guard/pred depends on local vars (bug#14773).
4462 (pcase--u1): Adjust caller.
4463
4464 2013-07-08 Eli Zaretskii <eliz@gnu.org>
4465
4466 * simple.el (line-move-partial, line-move): Account for
4467 line-spacing.
4468 (line-move-partial): Avoid setting vscroll when the last
4469 partially-visible line in window is of default height.
4470
4471 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4472
4473 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
4474 been used a while.
4475
4476 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
4477
4478 * subr.el (read-quoted-char): Remove unused local variable `char'.
4479
4480 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
4481
4482 * ediff.el (ediff-version): Version update.
4483 (ediff-files-command, ediff3-files-command, ediff-merge-command)
4484 (ediff-merge-with-ancestor-command, ediff-directories-command)
4485 (ediff-directories3-command, ediff-merge-directories-command)
4486 (ediff-merge-directories-with-ancestor-command): New functions.
4487 All are command-line interfaces to ediff: to facilitate calling
4488 Emacs with the appropriate ediff functions invoked.
4489
4490 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
4491 (viper-save-kill-buffer): Check if buffer is modified.
4492
4493 * viper.el (viper-version): Version update.
4494 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
4495
4496 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
4497
4498 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
4499 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
4500 (viper-intercept-ESC-key): Simplify.
4501 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
4502 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
4503 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
4504 (viper-setup-ESC-to-escape): New functions.
4505 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
4506 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
4507
4508 2013-07-07 Eli Zaretskii <eliz@gnu.org>
4509
4510 * simple.el (default-font-height, window-screen-lines):
4511 New functions.
4512 (line-move, line-move-partial): Use them instead of
4513 frame-char-height and window-text-height. This makes scrolling
4514 text smoother when the buffer's default face uses a font that is
4515 different from the frame's default font.
4516
4517 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
4518
4519 * files.el (write-file): Do not display confirm dialog for NS,
4520 it does its own dialog, which can't be cancelled (Bug#14578).
4521
4522 2013-07-06 Eli Zaretskii <eliz@gnu.org>
4523
4524 * simple.el (line-move-partial): Adjust the row returned by
4525 posn-at-point for the current window-vscroll. (Bug#14567)
4526
4527 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
4528
4529 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
4530 (tramp-sh-file-inotifywait-process-filter): Handle file names with
4531 spaces.
4532
4533 2013-07-06 Martin Rudalics <rudalics@gmx.at>
4534
4535 * window.el (window-state-put-stale-windows): New variable.
4536 (window--state-put-2): Save list of windows without matching buffer.
4537 (window-state-put): Remove "bufferless" windows if possible.
4538
4539 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4540
4541 * simple.el (alternatives-define): Remove leftover :group keyword.
4542 Tweak docstring.
4543
4544 2013-07-06 Leo Liu <sdl.web@gmail.com>
4545
4546 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
4547 (ido-enable-virtual-buffers): New variable.
4548 (ido-buffer-internal, ido-toggle-virtual-buffers)
4549 (ido-make-buffer-list): Use it.
4550 (ido-exhibit): Support turning on and off virtual buffers
4551 automatically.
4552
4553 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4554
4555 * simple.el (alternatives-define): New macro.
4556
4557 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
4558
4559 * subr.el (read-quoted-char): Use read-key.
4560 (sit-for): Let read-event decode tty input (bug#14782).
4561
4562 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
4563
4564 * calendar/todo-mode.el: Add handling of file deletion, both by
4565 mode command and externally. Fix various related bugs.
4566 Clarify Commentary and improve some documentation strings and code.
4567 (todo-delete-file): New command.
4568 (todo-check-file): New function.
4569 (todo-show): Handle external deletion of the file we're trying to
4570 show (bug#14688). Replace called-interactively-p by an optional
4571 prefix argument to avoid problematic interaction with catch form
4572 when byte compiled (bug#14702).
4573 (todo-quit): Handle external deletion of the archive's todo file.
4574 Make sure the buffer that was visiting the archive file is still
4575 live before trying to bury it.
4576 (todo-category-completions): Handle external deletion of any
4577 category completion files.
4578 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
4579 of todo files, in case of external deletion.
4580 (todo-add-file): Replace unnecessary setq by let-binding.
4581 (todo-find-archive): Check whether there are any archives.
4582 Replace unnecessary setq by let-binding.
4583 (todo-archive-done-item): Use find-file-noselect to get the
4584 archive buffer whether or not the archive already exists.
4585 Remove superfluous code. Use file size instead of buffer-file-name to
4586 check if the archive is new; if it is, update list of archives.
4587 (todo-default-todo-file): Allow nil to be a valid value for when
4588 there are no todo files.
4589 (todo-reevaluate-default-file-defcustom): Use corrected definition
4590 of todo-default-todo-file.
4591 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
4592 (todo-delete-category, todo-show-categories-table)
4593 (todo-category-number): Clarify comment.
4594 (todo-filter-items): Clarify documentation string.
4595 (todo-show-current-file, todo-display-as-todo-file)
4596 (todo-reset-and-enable-done-separator): Tweak documentation string.
4597 (todo-done-separator): Make separator length window-width, since
4598 bug#2749 is now fixed.
4599
4600 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
4601
4602 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
4603 Support both "gvfs-monitor-dir" and "inotifywait".
4604 (tramp-sh-file-inotifywait-process-filter): Rename from
4605 `tramp-sh-file-notify-process-filter'.
4606 (tramp-sh-file-gvfs-monitor-dir-process-filter)
4607 (tramp-get-remote-gvfs-monitor-dir): New defuns.
4608
4609 2013-07-05 Leo Liu <sdl.web@gmail.com>
4610
4611 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
4612
4613 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4614
4615 * frame.el (display-pixel-height, display-pixel-width)
4616 (display-mm-height, display-mm-width): Mention behavior on
4617 multi-monitor setups in docstrings.
4618 (w32-display-monitor-attributes-list): Declare function.
4619 (display-monitor-attributes-list): Use it.
4620
4621 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
4622
4623 * filenotify.el: New package.
4624
4625 * autorevert.el (top): Require filenotify.el.
4626 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
4627 instead.
4628 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
4629 (auto-revert-notify-handler): Use `file-notify-*' functions.
4630
4631 * subr.el (file-notify-handle-event): Move function to filenotify.el.
4632
4633 * net/tramp.el (tramp-file-name-for-operation):
4634 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
4635
4636 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
4637 for `file-notify-add-watch' and `file-notify-rm-watch'.
4638 (tramp-process-sentinel): Improve trace.
4639 (tramp-sh-handle-file-notify-add-watch)
4640 (tramp-sh-file-notify-process-filter)
4641 (tramp-sh-handle-file-notify-rm-watch)
4642 (tramp-get-remote-inotifywait): New defuns.
4643
4644 2013-07-03 Juri Linkov <juri@jurta.org>
4645
4646 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
4647 call of `occur-read-primary-args' to interactive spec.
4648
4649 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
4650 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
4651
4652 2013-07-03 Matthias Meulien <orontee@gmail.com>
4653
4654 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
4655 `Buffer-menu-multi-occur'. Add it to the menu.
4656 (Buffer-menu-mode): Document it in docstring.
4657 (Buffer-menu-multi-occur): New command. (Bug#14673)
4658
4659 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4660
4661 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
4662 keywords and built-ins.
4663
4664 2013-07-03 Glenn Morris <rgm@gnu.org>
4665
4666 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
4667
4668 Make info-xref checks case-sensitive by default
4669 * info.el (Info-find-node, Info-find-in-tag-table)
4670 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
4671 Add option for exact case matching of nodes.
4672 * info-xref.el (info-xref): New custom group.
4673 (info-xref-case-fold): New option.
4674 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
4675
4676 2013-07-03 Leo Liu <sdl.web@gmail.com>
4677
4678 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
4679
4680 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4681
4682 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
4683 middle of block statement initially, lower the depth. Remove
4684 FIXME comment, not longer valid. Remove middle of block statement
4685 detection, no need to do that anymore since we've been using
4686 `ruby-parse-region' here.
4687
4688 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
4689
4690 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
4691
4692 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
4693
4694 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
4695
4696 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
4697
4698 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
4699 (desktop-restore-in-current-display): New customization option.
4700 (desktop--excluded-frame-parameters): Add `font'.
4701 (desktop--save-frames): Rename from desktop--save-windows.
4702 (desktop--restore-in-this-display-p): New function.
4703 (desktop--make-full-frame): Remove unwanted width/height from
4704 full(width|height) frames.
4705 (desktop--restore-frames): Rename from desktop--restore-windows.
4706 Obey desktop-restore-current-display. Do not delete old frames or
4707 select a new frame unless we were able to restore at least one frame.
4708
4709 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
4710
4711 * files.el (find-file-noselect): Simplify conditional expression.
4712
4713 * remember.el (remember-append-to-file):
4714 Don't mix `find-buffer-visiting' and `get-file-buffer'.
4715
4716 Add `remember-notes' function to store random notes across Emacs
4717 restarts.
4718 * remember.el (remember-data-file): Add :set callback to affect
4719 notes buffer (if any).
4720 (remember-notes): New command.
4721 (remember-notes-buffer-name, bury-remember-notes-on-kill):
4722 New defcustoms for the `remember-notes' function.
4723 (remember-notes-save-and-bury-buffer): New command.
4724 (remember-notes-mode-map): New variable.
4725 (remember-mode): New minor mode.
4726 (remember-notes--kill-buffer-query): New function.
4727 * startup.el (initial-buffer-choice): Add notes to custom type.
4728
4729 2013-06-30 Eli Zaretskii <eliz@gnu.org>
4730
4731 * bindings.el (right-char, left-char): Don't call sit-for, this is
4732 no longer needed. Use arithmetic comparison only for numerical
4733 arguments.
4734
4735 * international/mule-cmds.el (select-safe-coding-system):
4736 Handle the case of FROM being a string correctly. (Bug#14755)
4737
4738 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4739
4740 * net/shr.el (shr-make-table-1): Add a sanity check that allows
4741 progression on degenerate tables.
4742 (shr-rescale-image): ImageMagick animated images currently don't work.
4743
4744 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
4745
4746 Some fixes and improvements for desktop frame restoration.
4747 It is still experimental and disabled by default.
4748 * desktop.el (desktop--save-windows): Put the selected frame at
4749 the head of the list.
4750 (desktop--make-full-frame): New function.
4751 (desktop--restore-windows): Try to re-select the frame that was
4752 selected upon saving. Do not abort if some frames fail to restore,
4753 just show an error message and continue. Set up maximized frames
4754 so they have default non-maximized dimensions.
4755
4756 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
4757
4758 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
4759 Don't start heredoc inside a string or comment.
4760
4761 2013-06-29 Eli Zaretskii <eliz@gnu.org>
4762
4763 * bindings.el (visual-order-cursor-movement): New defcustom.
4764 (right-char, left-char): Provide visual-order cursor motion by
4765 calling move-point-visually. Update the doc strings.
4766
4767 2013-06-28 Kenichi Handa <handa@gnu.org>
4768
4769 * international/mule.el (define-coding-system): New coding system
4770 properties :inhibit-null-byte-detection,
4771 :inhibit-iso-escape-detection, and :prefer-utf-8.
4772 (set-buffer-file-coding-system): If :charset-list property of
4773 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
4774 appropriate for setting.
4775
4776 * international/mule-cmds.el (select-safe-coding-system):
4777 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
4778 multibyte characters, return utf-8 (or one of its siblings).
4779
4780 * international/mule-conf.el (prefer-utf-8): New coding system.
4781 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
4782 files.
4783
4784 2013-06-28 Ivan Kanis <ivan@kanis.fr>
4785
4786 * net/shr.el (shr-render-region): New function.
4787
4788 * net/eww.el: Autoload `eww-browse-url'.
4789
4790 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
4791
4792 * emacs-lisp/package-x.el (package-upload-buffer-internal):
4793 Adapt to `package-desc-version' being a list.
4794 Use `package--ac-desc-version' to retrieve version from a package
4795 archive element.
4796
4797 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
4798
4799 New experimental feature to save&restore window and frame setup.
4800 * desktop.el (desktop-save-windows): New defcustom.
4801 (desktop--saved-states): New var.
4802 (desktop--excluded-frame-parameters): New defconst.
4803 (desktop--filter-frame-parms, desktop--find-frame-in-display)
4804 (desktop--restore-windows, desktop--save-windows): New functions.
4805 (desktop-save): Call `desktop--save-windows'.
4806 (desktop-read): Call `desktop--restore-windows'.
4807
4808 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4809
4810 * net/shr.el (add-face-text-property): Remove compat definition.
4811
4812 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
4813
4814 * info.el (Info-try-follow-nearest-node): Move search for footnote
4815 above search for node name to prevent missing a footnote (bug#14717).
4816
4817 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
4818
4819 * obsolete/otodo-mode.el: Add obsolescence info to file header.
4820
4821 2013-06-27 Leo Liu <sdl.web@gmail.com>
4822
4823 * net/eww.el (eww-read-bookmarks): Check file size.
4824
4825 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
4826
4827 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
4828 advice--pending if newdef is nil or an autoload (bug#13820).
4829 (advice-mapc): New function.
4830
4831 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4832
4833 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
4834 probably.
4835 (eww-mode-map): Add a menu bar.
4836 (eww-add-bookmark): New command.
4837 (eww-bookmark-mode): New mode and commands.
4838 (eww-add-bookmark): Remove newlines from the title.
4839 (eww-bookmark-browse): Don't bug out if it's the only window.
4840
4841 2013-06-26 Glenn Morris <rgm@gnu.org>
4842
4843 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
4844 (hfy-size): Handle ttys. (Bug#14668)
4845
4846 * info-xref.el: Update for Texinfo 5 change in *note format.
4847 (info-xref-node-re, info-xref-note-re): New constants.
4848 (info-xref-check-buffer): Use info-xref-note-re.
4849
4850 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
4851
4852 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
4853
4854 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
4855 nil terminate the loop (bug#14718).
4856
4857 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4858
4859 * net/eww.el: Rework history traversal. When going forward/back,
4860 put these actions into the history, too, so that they can be
4861 replayed.
4862 (eww-render): Move the history reset to the correct buffer.
4863
4864 2013-06-25 Juri Linkov <juri@jurta.org>
4865
4866 * files-x.el (modify-dir-local-variable): Change the header comment
4867 in the file with directory local variables. (Bug#14692)
4868
4869 * files-x.el (read-file-local-variable-value): Add `default'.
4870 (Bug#14710)
4871
4872 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4873
4874 * net/eww.el (eww-make-unique-file-name): Create a unique file
4875 name before saving to entering `y' accidentally asynchronously.
4876
4877 2013-06-25 Ivan Kanis <ivan@kanis.fr>
4878
4879 * net/eww.el (eww-download): New command and keystroke.
4880
4881 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4882
4883 * net/eww.el (eww-copy-page-url): Change name of command.
4884
4885 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
4886 be more consistent with Info and dired.
4887
4888 * net/eww.el (eww-mode-map): Ditto.
4889
4890 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4891
4892 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
4893 packages from archives.
4894 (package-archive-contents): Change format; include obsolete packages.
4895 (package-desc): Use `dir' to mark builtin packages.
4896 (package--from-builtin): Set the `dir' field to `builtin'.
4897 (generated-autoload-file, version-control): Declare.
4898 (package-compute-transaction): Change first arg and return value to be
4899 lists of package-descs. Adjust to new package-archive-contents format.
4900 (package--add-to-archive-contents): Adjust to new
4901 package-archive-contents format.
4902 (package-download-transaction): Arg is now a list of package-descs.
4903 (package-install): If `pkg' is a package name, pass it as
4904 a requirement, so it is subject to the usual (e.g. disabled) checks.
4905 (describe-package): Accept package-desc as well.
4906 (describe-package-1): Describe a specific package-desc. Add links to
4907 other package-descs for the same package name.
4908 (package-menu-describe-package): Pass the actual package-desc.
4909 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
4910 works correctly.
4911 (package-desc-status): New function.
4912 (package-menu--refresh): New function, extracted
4913 from package-menu--generate.
4914 (package-menu--generate): Use it.
4915 (package-delete): Update package-alist.
4916 (package-menu-execute): Don't call package-initialize.
4917
4918 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
4919 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
4920 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
4921 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
4922 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
4923 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
4924
4925 2013-06-25 Martin Rudalics <rudalics@gmx.at>
4926
4927 * window.el (window--state-get-1): Workaround for bug#14527.
4928 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
4929
4930 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4931
4932 * net/eww.el (eww-back-url): Implement the history by stashing all
4933 the data into a list.
4934 (eww-forward-url): Allow going forward in the history, too.
4935
4936 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4937
4938 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
4939 for values and use read--expression for expressions (bug#14710).
4940 (read-file-local-variable): Avoid setq.
4941 (read-file-local-variable-mode): Use minor-mode-list.
4942
4943 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4944
4945 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
4946 for DOI URLs.
4947
4948 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4949
4950 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
4951 Update imenu-support when dialect changes.
4952
4953 2013-06-25 Leo Liu <sdl.web@gmail.com>
4954
4955 * ido.el (ido-read-internal): Allow forward slash on windows.
4956
4957 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4958
4959 * net/eww.el (eww): Start of strings is \\`, not ^.
4960
4961 2013-06-24 Ivan Kanis <ivan@kanis.fr>
4962
4963 * net/shr.el (shr-browse-url): Fix interactive spec.
4964
4965 * net/eww.el (eww): Add a trailing slash to domain names.
4966
4967 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
4968
4969 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
4970
4971 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4972
4973 * net/shr.el (shr-browse-url): Use an external browser if given a
4974 prefix.
4975
4976 * net/eww.el (eww-external-browser): Move to shr.
4977
4978 2013-06-24 Ivan Kanis <ivan@kanis.fr>
4979
4980 * net/eww.el (eww): Work more correctly for file: URLs.
4981 (eww-detect-charset): Allow quoted charsets.
4982 (eww-yank-page-url): New command and keystroke.
4983
4984 2013-06-24 Daiki Ueno <ueno@gnu.org>
4985
4986 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
4987 file name of gpg executable.
4988 (epg-context-program): New function.
4989 (epg-context-home-directory): New function.
4990 (epg-context-set-program): New function.
4991 (epg-context-set-home-directory): New function.
4992 (epg--start): Use `epg-context-program' instead of
4993 'epg-gpg-program'.
4994 (epg--list-keys-1): Likewise.
4995
4996 2013-06-24 Leo Liu <sdl.web@gmail.com>
4997
4998 * ido.el (ido-read-internal): Fix bug#14620.
4999
5000 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
5001
5002 * faces.el (face-documentation): Simplify.
5003 (read-face-attribute, tty-find-type, x-resolve-font-name):
5004 Use `string-match-p'.
5005 (list-faces-display): Use `string-match-p'. Simplify.
5006 (face-spec-recalc): Check face to avoid face alias loops.
5007 (read-color): Use `string-match-p' and non-capturing parenthesis.
5008
5009 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
5010
5011 * net/shr.el (shr-rescale-image): Use the new
5012 :max-width/:max-height functionality.
5013
5014 2013-06-23 Ivan Kanis <ivan@kanis.fr>
5015
5016 * net/eww.el (eww-search-prefix): New variable.
5017 (eww): Use it.
5018 (eww-external-browser): New variable.
5019 (eww-mode-map): New keystroke.
5020 (eww-browse-with-external-browser): New command.
5021
5022 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
5023
5024 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
5025
5026 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
5027 Don't skip aligning the next header field when padding is 0;
5028 otherwise, field width is not respected unless the title is as
5029 wide as the field.
5030
5031 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5032
5033 * emacs-lisp/package.el (package-el-version): Remove.
5034 (package-process-define-package): Fix inf-loop.
5035 (package-install): Allow symbols as arguments again.
5036
5037 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
5038
5039 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
5040 add some more keyword-like methods.
5041 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
5042
5043 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
5044
5045 * bs.el (bs-buffer-show-mark): Make defvar-local.
5046 (bs-mode): Use setq-local.
5047
5048 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
5049 (emacs-lock--try-unlocking): Make defvar-local.
5050
5051 2013-06-22 Glenn Morris <rgm@gnu.org>
5052
5053 * play/cookie1.el (cookie-apropos): Minor simplification.
5054
5055 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
5056
5057 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
5058
5059 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
5060 `regexp-opt', it breaks the build during dumping.
5061
5062 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
5063
5064 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
5065 Highlight keyword-like methods on Kernel and Module with
5066 font-lock-builtin-face.
5067 (auto-mode-alist): Consolidate different entries into one regexp
5068 and add more *file-s.
5069
5070 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
5071
5072 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
5073
5074 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
5075 (diary-entry): Use it in the action of this button type instead of
5076 diary-goto-entry.
5077
5078 * calendar/todo-mode.el: New version.
5079 (todo-add-category): Append new category to end of file and give
5080 it the highest number, instead of putting it at the beginning and
5081 giving it 0. Incorporate noninteractive functionality.
5082 (todo-forward-category): Adapt to 1-based category numbering.
5083 Allow skipping over archived categories.
5084 (todo-backward-category): Derive from todo-forward-category.
5085 (todo-backward-item, todo-forward-item): Make noninteractive and
5086 delegate interactive part to new commands. Make sensitive to done items.
5087 (todo-categories): Make value an alist of category names and
5088 vectors of item counts.
5089 (todo-category-beg): Make a defconst.
5090 (todo-category-number): Use 1 instead of 0 as initial value.
5091 (todo-category-select): Make sensitive to overlays, optional item
5092 highlighting and done items.
5093 (todo-delete-item): Make sensitive to overlays and marked and done items.
5094 (todo-edit-item): Make sensitive to overlays and editing of
5095 date/time header optional. Add format checks.
5096 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
5097 no-op if point is not on an item. Advertise using todo-edit-quit.
5098 (todo-edit-mode): Make sensitive to new format, font-locking, and
5099 multiple todo files.
5100 (todo-insert-item, todo-insert-item-here): Derive from
5101 todo-basic-insert-item and extend functionality.
5102 (todo-item-end, todo-item-start): Make sensitive to done items.
5103 (todo-item-string): Don't return text properties. Restore point.
5104 (todo-jump-to-category): Make sensitive to multiple todo files and
5105 todo archives. Use extended category completion.
5106 (todo-lower-item, todo-raise-item): Rename to *-priority and
5107 derive from todo-set-item-priority.
5108 (todo-mode): Derive from special-mode. Make sensitive to new
5109 format, font-locking and multiple todo files. Make read-only.
5110 (todo-mode-map): Don't suppress digit keys, so they can supply
5111 prefix arguments. Add many new key bindings.
5112 (todo-prefix): Insert as an overlay instead of file text.
5113 Change semantics from diary date expression to purely visual mark.
5114 (todo-print): Rename to todo-print-buffer. Make buffer display
5115 features printable. Remove option to restrict number of items
5116 printed. Add option to print to file.
5117 (todo-print-function): Rename to todo-print-buffer-function.
5118 (todo-quit): Extend to handle exiting new todo modes.
5119 (todo-remove-item): Make sensitive to overlays.
5120 (todo-save): Extend to buffers of filtered items.
5121 (todo-show): Make sensitive to done items, multiple todo files and
5122 new todo modes. Offer to convert legacy todo file before creating
5123 first new todo file.
5124 (todo-show-priorities): Rename to todo-top-priorities.
5125 Change semantics of value 0.
5126 (todo-top-priorities): Rename to todo-filter-top-priorities,
5127 derive from todo-filter-items and extend functionality.
5128 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
5129 and extend functionality to other types of filtered items.
5130 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
5131 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
5132 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
5133 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
5134 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
5135 (todo-edit-mode-hook, todo-entry-prefix-function)
5136 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
5137 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
5138 (todo-initials, todo-insert-threshold, todo-item-string-start)
5139 (todo-line-string, todo-menu, todo-mode-hook)
5140 (todo-more-important-p, todo-previous-answer, todo-previous-line)
5141 (todo-print-priorities, todo-remove-separator)
5142 (todo-save-top-priorities-too, todo-string-count-lines)
5143 (todo-string-multiline-p, todo-time-string-format)
5144 (todo-tmp-buffer-name): Remove.
5145 (todo-add-file, todo-archive-done-item, todo-choose-archive)
5146 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
5147 (todo-edit-category-diary-inclusion)
5148 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
5149 (todo-edit-file, todo-edit-item-date-day)
5150 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
5151 (todo-edit-item-date-month, todo-edit-item-date-to-today)
5152 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
5153 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
5154 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
5155 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
5156 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
5157 (todo-filter-top-priorities-multifile, todo-find-archive)
5158 (todo-find-filtered-items-file, todo-go-to-source-item)
5159 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
5160 (todo-jump-to-archive-category, todo-lower-category)
5161 (todo-mark-category, todo-marked-item-p, todo-merge-category)
5162 (todo-move-category, todo-move-item, todo-next-button)
5163 (todo-next-item, todo-padded-string, todo-powerset)
5164 (todo-previous-button, todo-previous-item)
5165 (todo-print-buffer-to-file, todo-raise-category)
5166 (todo-rename-category, todo-repair-categories-sexp, todo-search)
5167 (todo-set-category-number, todo-set-item-priority)
5168 (todo-set-top-priorities-in-category)
5169 (todo-set-top-priorities-in-file, todo-show-categories-table)
5170 (todo-sort-categories-alphabetically-or-numerically)
5171 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
5172 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
5173 (todo-toggle-item-header, todo-toggle-item-highlighting)
5174 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
5175 (todo-toggle-view-done-items, todo-toggle-view-done-only)
5176 (todo-unarchive-items, todo-unmark-category): New commands.
5177 (todo-absolute-file-name, todo-add-to-buffer-list)
5178 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
5179 (todo-basic-insert-item, todo-category-completions)
5180 (todo-category-number, todo-category-string-matcher-1)
5181 (todo-category-string-matcher-2, todo-check-filtered-items-file)
5182 (todo-check-format, todo-clear-matches)
5183 (todo-comment-string-matcher, todo-convert-legacy-date-time)
5184 (todo-current-category, todo-date-string-matcher)
5185 (todo-define-insertion-command, todo-diary-expired-matcher)
5186 (todo-diary-goto-entry, todo-diary-item-p)
5187 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
5188 (todo-display-categories, todo-display-sorted, todo-done-item-p)
5189 (todo-done-item-section-p, todo-done-separator)
5190 (todo-done-string-matcher, todo-files, todo-filter-items)
5191 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
5192 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
5193 (todo-insert-category-line, todo-insert-item-from-calendar)
5194 (todo-insert-sort-button, todo-insert-with-overlays)
5195 (todo-insertion-command-name, todo-insertion-key-bindings)
5196 (todo-label-to-key, todo-longest-category-name-length)
5197 (todo-make-categories-list, todo-mode-external-set)
5198 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
5199 (todo-modes-set-3, todo-multiple-filter-files)
5200 (todo-nondiary-marker-matcher, todo-prefix-overlays)
5201 (todo-read-category, todo-read-date, todo-read-dayname)
5202 (todo-read-file-name, todo-read-time)
5203 (todo-reevaluate-category-completions-files-defcustom)
5204 (todo-reevaluate-default-file-defcustom)
5205 (todo-reevaluate-filelist-defcustoms)
5206 (todo-reevaluate-filter-files-defcustom)
5207 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
5208 (todo-reset-done-separator, todo-reset-done-separator-string)
5209 (todo-reset-done-string, todo-reset-global-current-todo-file)
5210 (todo-reset-highlight-item, todo-reset-nondiary-marker)
5211 (todo-reset-prefix, todo-set-categories)
5212 (todo-set-date-from-calendar, todo-set-show-current-file)
5213 (todo-set-top-priorities, todo-short-file-name)
5214 (todo-show-current-file, todo-sort, todo-time-string-matcher)
5215 (todo-total-item-counts, todo-update-buffer-list)
5216 (todo-update-categories-display, todo-update-categories-sexp)
5217 (todo-update-count, todo-validate-name, todo-y-or-n-p):
5218 New functions.
5219 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
5220 New major modes.
5221 (todo-categories, todo-display, todo-edit, todo-faces)
5222 (todo-filtered): New defgroups.
5223 (todo-archived-only, todo-button, todo-category-string, todo-date)
5224 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
5225 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
5226 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
5227 (todo-add-item-if-new-category, todo-always-add-time-string)
5228 (todo-categories-align, todo-categories-archived-label)
5229 (todo-categories-category-label, todo-categories-diary-label)
5230 (todo-categories-done-label, todo-categories-number-separator)
5231 (todo-categories-todo-label, todo-categories-totals-label)
5232 (todo-category-completions-files, todo-completion-ignore-case)
5233 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
5234 (todo-done-separator-string, todo-done-string)
5235 (todo-files-function, todo-filter-done-items, todo-filter-files)
5236 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
5237 (todo-initial-category, todo-initial-file, todo-item-mark)
5238 (todo-legacy-date-time-regexp, todo-mode-line-function)
5239 (todo-nondiary-marker, todo-number-prefix)
5240 (todo-print-buffer-function, todo-show-current-file)
5241 (todo-show-done-only, todo-show-first, todo-show-with-done)
5242 (todo-skip-archived-categories, todo-top-priorities-overrides)
5243 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
5244 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
5245 New defcustoms.
5246 (todo-category-done, todo-date-pattern, todo-date-string-start)
5247 (todo-diary-items-buffer, todo-done-string-start)
5248 (todo-filtered-items-buffer, todo-item-start)
5249 (todo-month-abbrev-array, todo-month-name-array)
5250 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
5251 (todo-top-priorities-buffer): New defconsts.
5252 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
5253 (todo-categories-with-marks, todo-category-string-face)
5254 (todo-comment-face, todo-comment-string, todo-current-todo-file)
5255 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
5256 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
5257 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
5258 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
5259 (todo-font-lock-keywords, todo-global-current-todo-file)
5260 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
5261 (todo-insertion-commands-args)
5262 (todo-insertion-commands-args-genlist)
5263 (todo-insertion-commands-names, todo-insertion-map)
5264 (todo-key-bindings-t, todo-key-bindings-t+a)
5265 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
5266 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
5267 (todo-nondiary-face, todo-print-buffer, todo-time-face)
5268 (todo-visited): New variables.
5269
5270 2013-06-21 Glenn Morris <rgm@gnu.org>
5271
5272 * play/cookie1.el (cookie-apropos): Add optional display argument.
5273 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
5274 (psychoanalyze-pinhead): Use cookie-doctor.
5275
5276 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5277
5278 * emacs-lisp/package.el (tar-get-file-descriptor)
5279 (tar--extract): Declare.
5280
5281 2013-06-21 Eduard Wiebe <usenet@pusto.de>
5282
5283 Extend flymake's warning predicate to be a function (bug#14217).
5284 * progmodes/flymake.el (flymake-warning-predicate): New.
5285 (flymake-parse-line): Use it.
5286 (flymake-warning-re): Make obsolete alias to
5287 `flymake-warning-predicate'.
5288
5289 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5290
5291 * emacs-lisp/package.el (package-alist): Include obsolete packages.
5292 (package-obsolete-list): Remove.
5293 (package-activate): Remove min-version argument. Add `force' argument.
5294 Adjust to new package-alist format.
5295 (package-mark-obsolete): Remove.
5296 (package-unpack): Force reload of the package's autoloads.
5297 (package-installed-p): Check builtins if the installed package is not
5298 recent enough.
5299 (package-initialize): Don't reset package-obsolete-list.
5300 Don't specify which package version to activate.
5301 (package-process-define-package, describe-package-1)
5302 (package-menu--generate): Adjust to new package-alist format.
5303
5304 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5305
5306 * allout-widgets.el (allout-widgets-mode-off)
5307 (allout-widgets-mode-on, allout-widgets-pre-command-business)
5308 (allout-widgets-post-command-business)
5309 (allout-widgets-after-copy-or-kill-function)
5310 (allout-widgets-after-undo-function, allout-test-range-overlaps)
5311 (allout-decorate-item-and-context)
5312 (allout-graphics-modification-handler): Fix typos in docstrings.
5313 (allout-get-or-create-parent-widget): Use `looking-at-p'.
5314
5315 * cmuscheme.el (scheme-start-file): Doc fix.
5316 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
5317 (scheme-input-filter): Use `string-match-p'.
5318
5319 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
5320
5321 * dired-x.el: Use Dired consistently in docstrings.
5322
5323 * dired.el: Use Dired consistently in docstrings.
5324 (dired-readin, dired-mode): Use `setq-local'.
5325 (dired-switches-alist): Make defvar-local.
5326 (dired-buffers-for-dir): Use `zerop'.
5327 (dired-safe-switches-p, dired-switches-escape-p)
5328 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
5329 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
5330 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
5331 (dired-goto-next-nontrivial-file): Use `string-match-p'.
5332 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
5333 (dired-toggle-marks, dired-mark-files-containing-regexp)
5334 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
5335 (dired-flag-auto-save-files, dired-flag-backup-files):
5336 Use `looking-at-p'.
5337 (dired-mark-files-regexp, dired-build-subdir-alist):
5338 Use `string-match-p', `looking-at-p'.
5339
5340 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
5341 (direct-print-region-helper): Use `string-match-p'.
5342
5343 2013-06-21 Leo Liu <sdl.web@gmail.com>
5344
5345 * comint.el (comint-redirect-results-list-from-process):
5346 Fix infinite loop.
5347
5348 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5349
5350 * net/eww.el (eww-update-header-line-format): Quote % characters.
5351
5352 2013-06-21 Glenn Morris <rgm@gnu.org>
5353
5354 * play/cookie1.el (cookie): New custom group.
5355 (cookie-file): New option.
5356 (cookie-check-file): New function.
5357 (cookie): Make it interactive. Make start and end messages optional.
5358 Interactively, display the result. Default to cookie-file.
5359 (cookie-insert): Default to cookie-file.
5360 (cookie-snarf): Make start and end messages optional.
5361 Default to cookie-file. Use with-temp-buffer.
5362 (cookie-read): Rename from read-cookie.
5363 Make start and end messages optional. Default to cookie-file.
5364 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
5365 Do not autoload it.
5366 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
5367 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
5368
5369 2013-06-21 Leo Liu <sdl.web@gmail.com>
5370
5371 * progmodes/octave.el (octave-mode): Backward compatibility fix.
5372
5373 2013-06-21 Glenn Morris <rgm@gnu.org>
5374
5375 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
5376
5377 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5378 Daniel Hackney <dan@haxney.org>
5379
5380 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
5381 Consolidate the single-file vs tarball code.
5382 (package-desc-suffix): New function.
5383 (package-desc-full-name): Don't bother inlining it.
5384 (package-load-descriptor): Return the new package-desc.
5385 (package-mark-obsolete): Remove unused arg `package'.
5386 (package-unpack): Make it work for single files as well.
5387 Make it update package-alist.
5388 (package--make-autoloads-and-stuff): Rename from
5389 package--make-autoloads-and-compile. Don't compile any more.
5390 (package--compile): New function.
5391 (package-generate-description-file): New function, extracted from
5392 package-unpack-single.
5393 (package-unpack-single): Remove.
5394 (package--with-work-buffer): Add indentation and debugging info.
5395 (package-download-single): Remove.
5396 (package-install-from-archive): Rename from package-download-tar, make
5397 it take a pkg-desc, and make it work for single files as well.
5398 (package-download-transaction): Simplify.
5399 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
5400 external tar program.
5401 (package-install-from-buffer): Remove `pkg-desc' argument.
5402 Use package-tar-file-info for tar-mode buffers.
5403 (package-install-file): Simplify accordingly.
5404 (package-archive-base): Change to take a pkg-desc.
5405 * tar-mode.el (tar--check-descriptor): New function, extracted from
5406 tar-get-descriptor.
5407 (tar-get-descriptor): Use it.
5408 (tar-get-file-descriptor): New function.
5409 (tar--extract): New function, extracted from tar-extract.
5410 (tar--extract): Use it.
5411 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
5412 case the summary uses non-ascii. Adjust to new calling convention of
5413 package-tar-file-info.
5414
5415 2013-06-21 Leo Liu <sdl.web@gmail.com>
5416
5417 * comint.el (comint-redirect-results-list-from-process):
5418 Fix random delay. (Bug#14681)
5419
5420 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5421
5422 * profiler.el (profiler-format-number): Use log, not log10.
5423
5424 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5425
5426 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
5427
5428 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5429
5430 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
5431 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
5432 yet available.
5433 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
5434 (AUTOGENEL): ... here.
5435 * emacs-lisp/cl-macs.el (cl--sublis): New function.
5436 (cl--defsubst-expand): Use it.
5437
5438 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
5439
5440 * subr.el (log10): Move here from C code, and declare as obsolete.
5441 All uses of (log10 X) replaced with (log X 10).
5442
5443 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5444
5445 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
5446 Declare with `defvar-local'.
5447 (tabulated-list-use-header-line, tabulated-list-entries)
5448 (tabulated-list-padding, tabulated-list-printer)
5449 (tabulated-list-sort-key): Declare with `defvar-local'.
5450 (tabulated-list-init-header, tabulated-list-print-fake-header):
5451 Use `setq-local'.
5452
5453 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
5454
5455 * arc-mode.el (archive-mode): Add `archive-write-file' to
5456 `write-contents-functions' also for remote files. (Bug#14652)
5457
5458 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5459
5460 * cus-edit.el (custom-commands): Fix typos.
5461 (custom-display): Fix tooltip text.
5462 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
5463 Fix typos in docstrings.
5464 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
5465 (custom-unlispify-menu-entry, custom-magic-value-create)
5466 (custom-add-see-also, custom-group-value-create): Use ?\s.
5467 (custom-guess-type, customize-apropos, editable-field)
5468 (custom-face-value-create): Use `string-match-p'.
5469 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
5470
5471 * custom.el (custom-load-symbol): Use `string-match-p'.
5472
5473 * ansi-color.el: Convert to lexical binding.
5474 (ansi-colors): Fix URL.
5475 (ansi-color-context, ansi-color-context-region): Use defvar-local.
5476 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
5477 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
5478
5479 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5480
5481 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
5482
5483 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
5484
5485 2013-06-19 Tom Tromey <tromey@redhat.com>
5486
5487 * net/eww.el (eww-top-url): Remove.
5488 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
5489 (eww-render): Set new variables. Don't set eww-top-url.
5490 (eww-handle-link): Handle "prev", "home", and "contents".
5491 Downcase the rel text.
5492 (eww-top-url): Choose best top URL.
5493
5494 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5495
5496 * net/eww.el: Rewrite to implement form elements "by hand" instead of
5497 relying in widget.el. Using widget.el leads to too many
5498 user interface inconsistencies.
5499 (eww-self-insert): Implement entering commands in text fields.
5500 (eww-process-text-input): New function to make text input field editing
5501 work.
5502 (eww-submit): Rewrite to use the new-style form methods.
5503 (eww-select-display): Display the correct selected item.
5504 (eww-change-select): Implement changing the select value.
5505 (eww-toggle-checkbox): Implement radio/checkboxes.
5506 (eww-update-field): Fix compilation error.
5507 (eww-tag-textarea): Implement <textarea>.
5508
5509 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
5510 we don't shadow mode-specific bindings.
5511
5512 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
5513 nothing to push.
5514
5515 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
5516
5517 2013-06-19 Glenn Morris <rgm@gnu.org>
5518
5519 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
5520
5521 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5522
5523 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
5524 not needed.
5525
5526 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
5527
5528 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5529
5530 * net/browse-url.el (browse-url-browser-function):
5531 `eww-browse-url' has the right calling signature, `eww' does not.
5532
5533 2013-06-19 Glenn Morris <rgm@gnu.org>
5534
5535 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
5536 Only eval autoloaded macros.
5537 (byte-compile-autoload): Only give the macro warning for macros.
5538
5539 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
5540 (ps-underlined-faces): Declare.
5541
5542 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
5543 (speedbar-add-supported-extension): Declare.
5544
5545 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
5546 Don't include a date stamp in the header of the generated file;
5547 it leads to needless differences between output files.
5548
5549 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5550
5551 * net/secrets.el (secrets-struct-secret-content-type):
5552 Replace check of introspection data by a test call of "CreateItem".
5553 Some servers do not offer introspection.
5554
5555 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
5556
5557 * electric.el (electric-pair-mode): Improve interaction with
5558 electric-layout-mode.
5559 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
5560 (electric-pair-syntax): Use text-mode-syntax-table in comments
5561 and strings.
5562 (electric-pair--insert): New function.
5563 (electric-pair-post-self-insert-function): Use it and
5564 electric--after-char-pos.
5565
5566 2013-06-19 Leo Liu <sdl.web@gmail.com>
5567
5568 * progmodes/octave.el (octave-help): Fix regexp.
5569
5570 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
5571
5572 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
5573 (shr-table-horizontal-line): Allow nil as a value, and change the
5574 default.
5575 (shr-insert-table-ruler): Respect the nil value.
5576
5577 2013-06-18 Tom Tromey <tromey@barimba>
5578
5579 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5580 New defvars.
5581 (eww-open-file): New defun.
5582 (eww-render): Initialize new variables.
5583 (eww-display-html): Handle "link" and "a".
5584 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
5585 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
5586 (eww-back-url): Rename from eww-previous-url.
5587 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5588 New defuns.
5589
5590 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
5591
5592 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
5593 Distinguish ternary operator tokens from slash symbol and slash
5594 char literal.
5595
5596 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5597
5598 Convert symbol prettification into minor mode and global minor mode.
5599
5600 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
5601 `prog-prettify-symbols', and make a local defvar instead of defcustom.
5602 (prettify-symbols--keywords): Rename from
5603 `prog-prettify-symbols-alist' and make a local defvar.
5604 (prettify-symbols--compose-symbol): Rename from
5605 `prog--prettify-font-lock-compose-symbol'.
5606 (prettify-symbols--make-keywords): Rename from
5607 `prog-prettify-font-lock-symbols-keywords' and simplify.
5608 (prog-prettify-install): Remove.
5609 (prettify-symbols-mode): New minor mode, based on
5610 `prog-prettify-install'.
5611 (turn-on-prettify-symbols-mode): New function.
5612 (global-prettify-symbols-mode): New globalized minor mode.
5613
5614 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5615 * progmodes/cfengine.el (cfengine3-mode):
5616 * progmodes/perl-mode.el (perl-mode): Don't call
5617 `prog-prettify-install'; set `prettify-symbols-alist' instead.
5618
5619 2013-06-18 Juri Linkov <juri@jurta.org>
5620
5621 * files-x.el (modify-file-local-variable-message): New function.
5622 (modify-file-local-variable)
5623 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
5624 and call `modify-file-local-variable-message' when it's non-nil.
5625 (add-file-local-variable, delete-file-local-variable)
5626 (add-file-local-variable-prop-line)
5627 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
5628 and use it. (Bug#9820)
5629
5630 2013-06-18 Juri Linkov <juri@jurta.org>
5631
5632 * emulation/vi.el (vi-shell-op):
5633 * emulation/vip.el (vip-execute-com, ex-command):
5634 * emulation/viper-cmd.el (viper-exec-bang):
5635 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
5636 the call of `shell-command-on-region'. (Bug#14637)
5637
5638 * simple.el (shell-command-on-region): Doc fix.
5639
5640 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5641
5642 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
5643 (bug#14633).
5644
5645 2013-06-18 Glenn Morris <rgm@gnu.org>
5646
5647 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
5648
5649 * newcomment.el (comment-search-forward, comment-search-backward):
5650 Doc fix. (Bug#14376)
5651
5652 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5653
5654 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
5655 (buffer-face-mode-invoke): Doc fix.
5656
5657 2013-06-18 Matthias Meulien <orontee@gmail.com>
5658
5659 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
5660 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
5661
5662 2013-06-18 Glenn Morris <rgm@gnu.org>
5663
5664 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
5665 Replace obsolete function generic-make-keywords with its expansion.
5666
5667 * progmodes/python.el (ffap-alist): Declare.
5668
5669 * textmodes/reftex.el (bibtex-mode-map): Declare.
5670
5671 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5672
5673 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
5674 (package-unpack, package-unpack-single): Return the pkg-dir.
5675 (package-download-transaction): Use it to update package-alist.
5676
5677 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5678
5679 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
5680 possible choice.
5681
5682 2013-06-17 Juri Linkov <juri@jurta.org>
5683
5684 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
5685
5686 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5687
5688 * emacs-lisp/package.el (package-load-descriptor):
5689 Remove `with-syntax-table' call, `read' doesn't need it.
5690 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
5691
5692 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
5693
5694 * startup.el (command-line): Expand package name returned by
5695 `package--description-file' (bug#14639).
5696
5697 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5698
5699 * emacs-lisp/package.el (package-load-descriptor): Do not call
5700 `emacs-lisp-mode', just use its syntax table.
5701
5702 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
5703
5704 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
5705 `font-lock-extra-managed-props' if any prettifying keyword is added.
5706 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
5707 (prog-mode): Use `setq-local'.
5708
5709 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5710
5711 * international/characters.el (standard-case-table): Set syntax of ?»
5712 and ?« to punctuation.
5713
5714 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
5715
5716 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
5717 Save relevant match data before calling `syntax-ppss' (bug#14595).
5718
5719 2013-06-15 Juri Linkov <juri@jurta.org>
5720
5721 * files-x.el (modify-file-local-variable-prop-line): Add local
5722 variables to the end of the existing comment on the first line.
5723 Use `file-auto-mode-skip' to skip interpreter magic line,
5724 and also skip XML declaration.
5725
5726 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5727
5728 * startup.el (package--builtin-versions): New var.
5729 (package-subdirectory-regexp): Remove.
5730 (package--description-file): Hard code its value instead.
5731
5732 * emacs-lisp/package.el: Don't activate packages older than builtin.
5733 (package-obsolete-list): Rename from package-obsolete-alist, and make
5734 it into a simple list of package-desc.
5735 (package-strip-version): Remove.
5736 (package-built-in-p): Use package--builtin-versions.
5737 (package-mark-obsolete): Simplify.
5738 (package-process-define-package): Mark it obsolete if older than the
5739 builtin version.
5740 (package-handle-response): Use line-end-position.
5741 (package-read-archive-contents, package--download-one-archive):
5742 Simplify.
5743 (package--add-to-archive-contents): Skip if older than the builtin or
5744 installed version.
5745 (package-menu-describe-package): Fix last change.
5746 (package-list-unversioned): New var.
5747 (package-menu--generate): Use it.
5748
5749 * emacs-lisp/autoload.el: Manage package--builtin-versions.
5750 (autoload--insert-text, autoload--insert-cookie-text): New functions.
5751 (autoload-builtin-package-versions): New variable.
5752 (autoload-generate-file-autoloads): Use them.
5753 Remove the list of autoloaded functions/macros from the
5754 (autoload...) comments.
5755
5756 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
5757
5758 2013-06-15 Eli Zaretskii <eliz@gnu.org>
5759
5760 * simple.el (line-move-partial): Don't jump to the next screen
5761 line as soon as it becomes visible. Instead, continue enlarging
5762 the vscroll until the portion of a tall screen line that's left on
5763 display is about the height of the frame's default font.
5764 (Bug#14567)
5765
5766 2013-06-15 Glenn Morris <rgm@gnu.org>
5767
5768 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
5769 compilation-error-regexp-alist void, or local while let-bound.
5770
5771 * progmodes/make-mode.el (makefile-mode-syntax-table):
5772 Treat "=" as punctuation. (Bug#14614)
5773
5774 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
5775
5776 * help-fns.el (describe-variable):
5777 Add extra line for permanent-local variables.
5778
5779 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
5780
5781 * progmodes/scheme.el (scheme-font-lock-keywords-2):
5782 Add export, import, library. (Bug#9164)
5783 (library): Set indent function.
5784
5785 2013-06-14 Glenn Morris <rgm@gnu.org>
5786
5787 * term/xterm.el (xterm--query):
5788 Stop after first matching handler. (Bug#14615)
5789
5790 2013-06-14 Ivan Kanis <ivan@kanis.fr>
5791
5792 Add support for dired in saveplace.
5793 * dired.el (dired-initial-position-hook): New variable.
5794 (dired-initial-position): Call hook to place cursor position.
5795 * saveplace.el (save-place-to-alist): Add dired position.
5796 (save-place-dired-hook): New function.
5797
5798 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
5799
5800 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
5801 through a symbol rather than letrec.
5802
5803 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
5804 (package-desc): Add `dir' field.
5805 (package-desc-full-name): New function.
5806 (package-load-descriptor): Combine the two arguments. Don't use `load'.
5807 (package-maybe-load-descriptor): Remove.
5808 (package-load-all-descriptors): Just call package-load-descriptor.
5809 (package--disabled-p): New function.
5810 (package-desc-vers, package-desc-doc): Remove aliases.
5811 (package--dir): Remove function.
5812 (package-activate): Check if a package is disabled.
5813 (package-process-define-package): New function, extracted from
5814 define-package.
5815 (define-package): Turn into a place holder.
5816 (package-unpack-single, package-tar-file-info):
5817 Use package--description-file.
5818 (package-compute-transaction): Use package--disabled-p.
5819 (package-download-transaction): Don't call
5820 package-maybe-load-descriptor since they're all loaded anyway.
5821 (package-install): Change argument to be a pkg-desc.
5822 (package-delete): Use a single pkg-desc argument.
5823 (describe-package-1): Use package-desc-dir instead of package--dir.
5824 Use package-desc property instead of package-symbol.
5825 (package-install-button-action): Adjust accordingly.
5826 (package--push): Rewrite.
5827 (package-menu--print-info): Adjust accordingly. Change the ID format
5828 to be a pkg-desc.
5829 (package-menu-describe-package, package-menu-get-status)
5830 (package-menu--find-upgrades, package-menu-mark-upgrades)
5831 (package-menu-execute, package-menu--name-predicate):
5832 Adjust accordingly.
5833 * startup.el (package--description-file): New function.
5834 (command-line): Use it.
5835 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5836 Use package-desc-version.
5837
5838 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
5839 (byte-compile-preprocess): Use it.
5840 (byte-compile-file-form-defalias): Try a bit harder to use macros we
5841 can't quite recognize.
5842 (byte-compile-add-to-list): Remove.
5843 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
5844 (cconv-closure-convert): Add assertion.
5845
5846 * emacs-lisp/map-ynp.el: Use lexical-binding.
5847 (map-y-or-n-p): Remove unused vars `tail' and `object'.
5848 Factor out some repeated code.
5849
5850 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5851
5852 * subr.el (with-eval-after-load): New macro.
5853 (eval-after-load): Allow form to be a function.
5854 take advantage of lexical-binding.
5855 (do-after-load-evaluation): Use dolist and adjust to new format.
5856 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
5857
5858 2013-06-13 Juri Linkov <juri@jurta.org>
5859
5860 * replace.el (perform-replace): Display "symbol " and other search
5861 modes from `isearch-message-prefix' in the *Help* buffer.
5862
5863 * isearch.el (isearch-query-replace): Add " symbol" and other
5864 possible search modes from `isearch-message-prefix' to the prompt.
5865 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
5866 when reading a regexp to collect.
5867
5868 2013-06-13 Juri Linkov <juri@jurta.org>
5869
5870 * isearch.el (word-search-regexp): Match whitespace if the search
5871 string begins or ends in whitespace. The LAX arg is applied to
5872 both ends of the search string. Use `regexp-quote' and explicit
5873 \< and \> instead of \b. Use \` and \' instead of ^ and $.
5874 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
5875 boundaries are replaced with symbol boundaries, and characters
5876 between symbols match non-word non-symbol syntax. (Bug#14602)
5877
5878 2013-06-13 Juri Linkov <juri@jurta.org>
5879
5880 * isearch.el (isearch-del-char): Don't exceed the length of
5881 `isearch-string' by the prefix arg. (Bug#14563)
5882
5883 2013-06-13 Juri Linkov <juri@jurta.org>
5884
5885 * isearch.el (isearch-yank-word, isearch-yank-line)
5886 (isearch-char-by-name, isearch-quote-char)
5887 (isearch-printing-char, isearch-process-search-char):
5888 Add optional count prefix arg. (Bug#14563)
5889
5890 * international/isearch-x.el
5891 (isearch-process-search-multibyte-characters):
5892 Add optional count prefix arg.
5893
5894 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5895
5896 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
5897 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
5898 lexical-binding.
5899
5900 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
5901
5902 * subr.el (set-temporary-overlay-map): Add on-exit argument.
5903
5904 2013-06-13 Glenn Morris <rgm@gnu.org>
5905
5906 * startup.el (tty-handle-args):
5907 Don't just discard "--" and anything after. (Bug#14608)
5908
5909 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
5910
5911 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
5912
5913 Implement changes in Secret Service API. Make it backward compatible.
5914 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
5915 (secrets-create-item): Use it. Prefix properties with interface.
5916
5917 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
5918
5919 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
5920 (term-emulate-terminal): Respect term-suppress-hard-newline.
5921
5922 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
5923
5924 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
5925 Only remove a `thumb-file' overlay. (Bug#14548)
5926
5927 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
5928
5929 * mail/reporter.el (reporter-submit-bug-report):
5930 Handle missing package-name. (Bug#14600)
5931
5932 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5933
5934 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
5935 (reftex-citation-prompt, reftex-default-bibliography)
5936 (reftex-bib-or-thebib, reftex-get-bibfile-list)
5937 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
5938 (reftex-bib-sort-author, reftex-bib-sort-year)
5939 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
5940 (reftex-extract-bib-entries-from-thebibliography)
5941 (reftex-get-bibkey-default, reftex-get-bib-names)
5942 (reftex-parse-bibtex-entry, reftex-get-bib-field)
5943 (reftex-format-bib-entry, reftex-parse-bibitem)
5944 (reftex-format-bibitem, reftex-do-citation)
5945 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
5946 (reftex-restrict-bib-matches, reftex-extract-bib-file)
5947 (reftex-insert-bib-matches, reftex-format-citation)
5948 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
5949 (reftex-create-bibtex-file): Add docstrings, mostly by converting
5950 existing comments into docstrings.
5951
5952 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
5953
5954 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
5955
5956 2013-06-12 Andreas Schwab <schwab@suse.de>
5957
5958 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
5959 for auto-save files.
5960
5961 2013-06-12 Glenn Morris <rgm@gnu.org>
5962
5963 * ido.el (ido-delete-ignored-files): Remove.
5964 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
5965 Go back to calling ido-ignore-item-p directly.
5966
5967 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
5968
5969 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
5970
5971 * ido.el (ido-delete-ignored-files): New function,
5972 split from ido-make-file-list-1.
5973 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
5974 (ido-make-file-list-1): Use ido-delete-ignored-files.
5975
5976 2013-06-12 Leo Liu <sdl.web@gmail.com>
5977
5978 * progmodes/octave.el (inferior-octave-startup)
5979 (inferior-octave-completion-table)
5980 (inferior-octave-track-window-width-change)
5981 (octave-eldoc-function-signatures, octave-help)
5982 (octave-find-definition): Use single quoted strings.
5983 (inferior-octave-startup-args): Change default value.
5984 (inferior-octave-startup): Do not hard code "-i" and
5985 "--no-line-editing".
5986 (inferior-octave-resync-dirs): Add optional arg NOERROR.
5987 (inferior-octave-directory-tracker): Use it.
5988 (octave-goto-function-definition): Robustify.
5989 (octave-help): Support highlighting operators in 'See also'.
5990 (octave-find-definition): Find subfunctions only in Octave mode.
5991
5992 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
5993
5994 * help-fns.el (help-fns--compiler-macro): If the handler function is
5995 named, then put a link to it.
5996 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
5997 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
5998 (cl-typep): Use it.
5999 (cl-eval-when): Simplify debug spec.
6000 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
6001 compiler-macro function instead of setting `compiler-macro-file'.
6002
6003 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
6004
6005 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
6006 * vc/vc-hooks.el (vc-stay-local): Doc fix.
6007
6008 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6009 Daniel Hackney <dan@haxney.org>
6010
6011 First part of Daniel Hackney's patch to package.el.
6012 * emacs-lisp/package.el: Use defstruct.
6013 (package-desc): New, main struct.
6014 (package--bi-desc, package--ac-desc): New structs, used to describe the
6015 format in external files.
6016 (package-desc-vers): Replace with package-desc-version accessor.
6017 (package-desc-doc): Replace with package-desc-summary accessor.
6018 (package-activate-1): Remove `package' arg since the pkg-vec now
6019 includes the name.
6020 (define-package): Use package-desc-from-define.
6021 (package-unpack-single): Change file-name arg to be a symbol.
6022 (package--add-to-archive-contents): Use package-desc-create and new
6023 accessor functions to package--ac-desc.
6024 (package-buffer-info, package-tar-file-info): Return a package-desc.
6025 (package-install-from-buffer): Remove `type' argument. Change pkg-info
6026 arg to be a package-desc.
6027 (package-install-file): Adjust accordingly. Use \' to match EOS.
6028 (package--from-builtin): New function.
6029 (describe-package-1, package-menu--generate): Use it.
6030 (package--make-autoloads-and-compile): Change name arg to be a symbol.
6031 (package-generate-autoloads): Idem and return the name of the file.
6032 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6033 Change pkg-info arg to be a package-desc.
6034 Use package-make-ac-desc.
6035 (package-upload-file): Use \' to match EOS.
6036 * finder.el (finder-compile-keywords): Use package-make-builtin.
6037
6038 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6039
6040 * vc/vc.el (vc-deduce-fileset): Change error message.
6041 (vc-read-backend): New function.
6042 (vc-next-action): Use it.
6043
6044 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
6045
6046 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
6047 (prolog-font-lock-keywords): Use regexp-opt instead.
6048 Don't manually highlight strings.
6049 (prolog-mode-variables): Simplify comment-start-skip.
6050 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
6051
6052 * emacs-lisp/generic.el (generic--normalise-comments)
6053 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
6054 (generic-mode-set-comments): Use them.
6055 (generic-bracket-support): Use setq-local.
6056 (generic-make-keywords-list): Declare obsolete.
6057
6058 2013-06-11 Glenn Morris <rgm@gnu.org>
6059
6060 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
6061 Prettify after setting font-lock-defaults. (Bug#14574)
6062
6063 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
6064
6065 * replace.el (query-replace, occur-read-regexp-defaults-function)
6066 (replace-search):
6067 * subr.el (declare-function, number-sequence, local-set-key)
6068 (substitute-key-definition, locate-user-emacs-file)
6069 (with-silent-modifications, split-string, eval-after-load):
6070 Fix typos, remove unneeded backslashes and reflow some docstrings.
6071
6072 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6073
6074 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
6075 default for Elisp files.
6076
6077 2013-06-11 Glenn Morris <rgm@gnu.org>
6078
6079 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
6080 although define-derived-mode was doing this anyway. (Bug#14583)
6081
6082 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
6083
6084 * allout.el (allout-encryption-plaintext-sanitization-regexps):
6085 Fix make-variable-buffer-local call to refer to the correct variable.
6086
6087 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
6088
6089 * eshell/em-term.el (eshell-visual-commands)
6090 (eshell-visual-subcommands, eshell-visual-options):
6091 Add summary line to docstrings. Add cross-references.
6092
6093 2013-06-10 Glenn Morris <rgm@gnu.org>
6094
6095 * epa.el (epa-read-file-name): New function. (Bug#14510)
6096 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
6097
6098 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
6099
6100 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
6101 output redirection to be ignored with visual commands.
6102
6103 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
6104
6105 * eshell/em-term.el (eshell-visual-command-p): New function.
6106 (eshell-term-initialize): Move long lambda to separate function
6107 eshell-visual-command-p.
6108 * eshell/em-dirs.el (eshell-dirs-initialise):
6109 * eshell/em-script.el (eshell-script-initialize):
6110 Add missing #' to lambda.
6111
6112 2013-06-08 Leo Liu <sdl.web@gmail.com>
6113
6114 * progmodes/octave.el (octave-add-log-current-defun): New function.
6115 (octave-mode): Set add-log-current-defun-function.
6116 (octave-goto-function-definition): Do not move point if not found.
6117 (octave-find-definition): Enhance to try subfunctions first.
6118
6119 2013-06-08 Glenn Morris <rgm@gnu.org>
6120
6121 * emacs-lisp/bytecomp.el (byte-compile-char-before)
6122 (byte-compile-backward-char, byte-compile-backward-word):
6123 Improve previous change, to handle non-explicit nil.
6124
6125 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6126
6127 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
6128 (smie--opener/closer-at-point): New function.
6129 (smie--matching-block-data): Use it. Don't match from right after an
6130 opener or right before a closer. Obey smie-blink-matching-inners.
6131 Don't signal a mismatch for repeated inners like "switch..case..case".
6132
6133 2013-06-07 Leo Liu <sdl.web@gmail.com>
6134
6135 * progmodes/octave.el (octave-mode): Set comment-use-global-state
6136 to t. (Bug#14303)
6137 (octave-function-header-regexp): Fix. (Bug#14570)
6138 (octave-help-mode-finish-hook, octave-help-mode-finish):
6139 Remove. Just use temp-buffer-show-hook.
6140
6141 * newcomment.el (comment-search-backward): Revert last change.
6142 (Bug#14434)
6143
6144 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
6145
6146 2013-06-07 Eli Zaretskii <eliz@gnu.org>
6147
6148 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
6149 through xargs, to avoid failure due to MS-Windows limitations on
6150 command-line length.
6151
6152 2013-06-06 Glenn Morris <rgm@gnu.org>
6153
6154 * font-lock.el (lisp-font-lock-keywords-2):
6155 Treat user-error like error.
6156
6157 * emacs-lisp/bytecomp.el (byte-compile-char-before)
6158 (byte-compile-backward-char, byte-compile-backward-word):
6159 Handle explicit nil arguments. (Bug#14565)
6160
6161 2013-06-05 Alan Mackenzie <acm@muc.de>
6162
6163 * isearch.el (isearch-allow-prefix): New user option.
6164 (isearch-other-meta-char): Don't exit isearch when a prefix
6165 argument is typed whilst `isearch-allow-prefix' is non-nil.
6166 (Bug#9706)
6167
6168 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6169
6170 * autorevert.el (auto-revert-notify-handler): Use memq.
6171 Hide assertion failure.
6172
6173 * skeleton.el: Use cl-lib.
6174 (skeleton-further-elements): Use defvar-local.
6175 (skeleton-insert): Use cl-progv.
6176
6177 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6178
6179 * progmodes/prog-mode.el (prog-prettify-symbols)
6180 (prog-prettify-install): Update docstrings.
6181
6182 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6183
6184 * simple.el: Move all the prog-mode code to prog-mode.el.
6185 * progmodes/prog-mode.el: New file.
6186 * loadup.el: Add prog-mode.el.
6187
6188 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6189
6190 * simple.el (prog-prettify-symbols): Add version.
6191 (prog-prettify-install): Add convenience function to prettify symbols.
6192
6193 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
6194 (perl--augmented-font-lock-keywords-1)
6195 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
6196 variables and use it.
6197
6198 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
6199 (cfengine3-mode): Remove unneeded variable and use it.
6200
6201 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6202 (lisp--augmented-font-lock-keywords-1)
6203 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
6204 Remove unneeded variables and use it.
6205
6206 2013-06-05 João Távora <joaotavora@gmail.com>
6207
6208 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
6209 to point when opening the connection. (Bug#14380)
6210
6211 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6212
6213 * subr.el (load-history-regexp, load-history-filename-element)
6214 (eval-after-load, after-load-functions, do-after-load-evaluation)
6215 (eval-next-after-load, display-delayed-warnings)
6216 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
6217 definition of save-match-data.
6218 (overriding-local-map): Remove accidental obsolescence declaration.
6219
6220 * emacs-lisp/edebug.el (edebug-result): Move before first use.
6221
6222 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6223
6224 Generalize symbol prettify support to prog-mode and implement it
6225 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
6226 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
6227 (prog--prettify-font-lock-compose-symbol)
6228 (prog-prettify-font-lock-symbols-keywords): New variables and
6229 functions to support symbol prettification.
6230 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6231 (lisp--augmented-font-lock-keywords-1)
6232 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
6233 (lisp--prettify-symbols-alist): Implement prettify of lambda.
6234 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
6235 (cfengine3--prettify-symbols-alist, cfengine3-mode):
6236 Implement prettify of -> => :: strings.
6237 * progmodes/perl-mode.el (perl-prettify-symbols)
6238 (perl--font-lock-compose-symbol)
6239 (perl--font-lock-symbols-keywords): Move to prog-mode.
6240 (perl--prettify-symbols-alist): Prettify -> => :: strings.
6241 (perl-font-lock-keywords-1)
6242 (perl-font-lock-keywords-2): Remove explicit prettify support.
6243 (perl--augmented-font-lock-keywords)
6244 (perl--augmented-font-lock-keywords-1)
6245 (perl--augmented-font-lock-keywords-2, perl-mode):
6246 Implement prettify support.
6247
6248 2013-06-05 Leo Liu <sdl.web@gmail.com>
6249
6250 Re-implement smie matching block highlight using
6251 show-paren-data-function. (Bug#14395)
6252 * emacs-lisp/smie.el (smie-matching-block-highlight)
6253 (smie--highlight-matching-block-overlay)
6254 (smie--highlight-matching-block-lastpos)
6255 (smie-highlight-matching-block)
6256 (smie-highlight-matching-block-mode): Remove.
6257 (smie--matching-block-data-cache): New variable.
6258 (smie--matching-block-data): New function.
6259 (smie-setup): Use smie--matching-block-data for
6260 show-paren-data-function.
6261
6262 * progmodes/octave.el (octave-mode-menu): Fix.
6263 (octave-find-definition): Skip garbage lines.
6264
6265 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6266
6267 Fix compilation error with simultaneous dynamic+lexical scoping.
6268 Add warning when a defvar appears after the first let-binding.
6269 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
6270 (byte-compile-close-variables): Initialize it.
6271 (byte-compile--declare-var): New function.
6272 (byte-compile-file-form-defvar)
6273 (byte-compile-file-form-define-abbrev-table)
6274 (byte-compile-file-form-custom-declare-variable): Use it.
6275 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
6276 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
6277 (byte-compile-bind): Handle dynamic bindings that shadow
6278 lexical bindings.
6279 (byte-compile-unbind): Make arg non-optional.
6280 (byte-compile-let): Simplify.
6281 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
6282 (cconv--analyse-function, cconv-analyse-form): Populate it.
6283 Protect byte-compile-bound-variables to limit the scope of defvars.
6284 (cconv-analyse-form): Add missing rule for (defvar <foo>).
6285 Remove unneeded rule for `declare'.
6286
6287 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
6288 so as to avoid depending on cl-adjoin at run-time.
6289 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
6290
6291 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
6292 (macroexp--warn-and-return): Use it.
6293
6294 2013-06-05 Leo Liu <sdl.web@gmail.com>
6295
6296 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
6297
6298 2013-06-04 Leo Liu <sdl.web@gmail.com>
6299
6300 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
6301 (compilation-auto-jump): Suppress the "Mark set" message to give
6302 way to exit message.
6303
6304 2013-06-04 Alan Mackenzie <acm@muc.de>
6305
6306 Remove faulty optimisation from indentation calculation.
6307 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
6308 search limit based on 2000 characters back from indent-point.
6309
6310 2013-06-03 Tassilo Horn <tsdh@gnu.org>
6311
6312 * eshell/em-term.el (cl-lib): Require `cl-lib'.
6313
6314 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6315
6316 * emacs-lisp/lisp.el: Use lexical-binding.
6317 (lisp--local-variables-1, lisp--local-variables): New functions.
6318 (lisp--local-variables-completion-table): New var.
6319 (lisp-completion-at-point): Use it complete let-bound vars.
6320
6321 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
6322 eagerly (bug#14422).
6323
6324 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
6325
6326 * autorevert.el (auto-revert-notify-enabled)
6327 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
6328 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
6329 (auto-revert-notify-handler): Handle also gfilenotify.
6330
6331 * subr.el (file-notify-handle-event): New defun. Replacing ...
6332 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
6333 Remove.
6334
6335 2013-06-03 Juri Linkov <juri@jurta.org>
6336
6337 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
6338 `M-s h .'. (Bug#14427)
6339
6340 * hi-lock.el (highlight-symbol-at-point): New alias for the new
6341 command `hi-lock-face-symbol-at-point'.
6342 (hi-lock-face-symbol-at-point): New command.
6343 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
6344 (hi-lock-menu): Add `highlight-symbol-at-point'.
6345 (hi-lock-mode): Doc fix.
6346
6347 * isearch.el (isearch-forward-symbol-at-point): New command.
6348 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
6349 (isearch-highlight-regexp): Add a regexp which matches
6350 words/symbols for word/symbol mode.
6351
6352 * subr.el (find-tag-default-bounds): New function with the body
6353 mostly moved from `find-tag-default'.
6354 (find-tag-default): Move most code to `find-tag-default-bounds',
6355 call it and apply `buffer-substring-no-properties' afterwards.
6356
6357 2013-06-03 Tassilo Horn <tsdh@gnu.org>
6358
6359 * eshell/em-term.el (eshell-term-initialize):
6360 Use `cl-intersection' rather than `intersection'.
6361
6362 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
6363
6364 * vc/log-view.el: Doc fix.
6365 (log-view-mode-map): Copy keymap from `special-mode-map'.
6366
6367 2013-06-02 Eric Ludlam <zappo@gnu.org>
6368
6369 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
6370 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
6371 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
6372 (eieio-unbound, eieio-default-superclass)
6373 (eieio--define-field-accessors, method-static, method-before)
6374 (method-primary, method-after, method-num-lists)
6375 (method-generic-before, method-generic-primary)
6376 (method-generic-after, method-num-slots)
6377 (eieio-specialized-key-to-generic-key)
6378 (eieio--check-type, class-v, class-p)
6379 (eieio-class-name, define-obsolete-function-alias)
6380 (eieio-class-parents-fast, eieio-class-children-fast)
6381 (same-class-fast-p, class-constructor, generic-p)
6382 (generic-primary-only-p, generic-primary-only-one-p)
6383 (class-option-assoc, class-option, eieio-object-p)
6384 (class-abstract-p, class-method-invocation-order)
6385 (eieio-defclass-autoload-map, eieio-defclass-autoload)
6386 (eieio-class-un-autoload, eieio-defclass)
6387 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
6388 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
6389 (eieio--defgeneric-init-form, eieio-defgeneric-form)
6390 (eieio-defgeneric-reset-generic-form)
6391 (eieio-defgeneric-form-primary-only)
6392 (eieio-defgeneric-reset-generic-form-primary-only)
6393 (eieio-defgeneric-form-primary-only-one)
6394 (eieio-defgeneric-reset-generic-form-primary-only-one)
6395 (eieio-unbind-method-implementations)
6396 (eieio--defmethod, eieio--typep)
6397 (eieio-perform-slot-validation, eieio-validate-slot-value)
6398 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
6399 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
6400 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
6401 (eieio-slot-name-index, eieio-class-slot-name-index)
6402 (eieio-set-defaults, eieio-initarg-to-attribute)
6403 (eieio-attribute-to-initarg, eieio-c3-candidate)
6404 (eieio-c3-merge-lists, eieio-class-precedence-c3)
6405 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
6406 (eieio-class-precedence-list, eieio-generic-call-methodname)
6407 (eieio-generic-call-arglst, eieio-generic-call-key)
6408 (eieio-generic-call-next-method-list)
6409 (eieio-pre-method-execution-functions, eieio-generic-call)
6410 (eieio-generic-call-primary-only, eieiomt-method-list)
6411 (eieiomt-optimizing-obarray, eieiomt-install)
6412 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
6413 (eieio-generic-form, eieio-defmethod, make-obsolete)
6414 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
6415 (defclass): Remove `eval-and-compile' from macro.
6416 (call-next-method, shared-initialize): Instead of using
6417 `scoped-class' variable, use new eieio--scoped-class, and
6418 eieio--with-scoped-class.
6419 (initialize-instance): Rename local variable 'scoped-class' to
6420 'this-class' to remove ambiguitity from old global.
6421
6422 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
6423 eieio.el.
6424 (eieio--scoped-class-stack): New variable.
6425 (eieio--scoped-class): New fcn.
6426 (eieio--with-scoped-class): New scoping macro.
6427 (eieio-defclass): Use pushnew instead of add-to-list.
6428 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
6429 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
6430 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
6431 `scoped-class' variable, use new eieio--scoped-class, and
6432 eieio--with-scoped-class.
6433
6434 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
6435
6436 2013-06-02 Tassilo Horn <tsdh@gnu.org>
6437
6438 * eshell/esh-ext.el (eshell-external-command): Pass args to
6439 `eshell-find-interpreter'.
6440 (eshell-find-interpreter): Add new second parameter ARGS.
6441
6442 * eshell/em-script.el (eshell-script-initialize): Add second arg
6443 to the function added as MATCH to `eshell-interpreter-alist'.
6444
6445 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
6446 the function added as MATCH to `eshell-interpreter-alist'.
6447
6448 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
6449 (eshell-visual-options): New defcustom.
6450 (eshell-escape-control-x): Adapt docstring.
6451 (eshell-term-initialize): Test `eshell-visual-subcommands' and
6452 `eshell-visual-options' in addition to `eshell-visual-commands'.
6453 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
6454
6455 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
6456
6457 * progmodes/python.el (python-indent-block-enders): Add break,
6458 continue and raise keywords.
6459
6460 2013-06-01 Glenn Morris <rgm@gnu.org>
6461
6462 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
6463
6464 Plain (f)boundp silences compilation warnings since Emacs 22.1.
6465 * progmodes/cc-cmds.el (delete-forward-p):
6466 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
6467 * progmodes/cc-engine.el (buffer-syntactic-context):
6468 * progmodes/cc-fonts.el (face-property-instance):
6469 * progmodes/cc-mode.el (set-keymap-parents):
6470 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
6471 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
6472 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
6473 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
6474 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
6475
6476 * progmodes/cc-vars.el (other): Emacs has this widget since
6477 at least 21.1, so don't (re)define it.
6478
6479 * eshell/em-cmpl.el (eshell-cmpl-initialize):
6480 Replace the obsolete alias pcomplete-arg-quote-list.
6481
6482 2013-06-01 Leo Liu <sdl.web@gmail.com>
6483
6484 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
6485 punctuation syntax.
6486 (inferior-octave-minimal-columns)
6487 (inferior-octave-last-column-width): New variables.
6488 (inferior-octave-track-window-width-change): New function.
6489 (inferior-octave-mode): Adjust column width so that Octave output,
6490 for example from 'ls', can fit into the window nicely.
6491
6492 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6493
6494 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6495 Highlight expansions inside regexp literals.
6496
6497 2013-05-31 Glenn Morris <rgm@gnu.org>
6498
6499 * obsolete/sym-comp.el (symbol-complete):
6500 Replace obsolete completion-annotate-function.
6501
6502 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
6503
6504 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6505
6506 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6507 New function, checks if point is inside a literal that allows
6508 expression expansion.
6509 (ruby-syntax-propertize-expansion): Use it.
6510 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
6511 around the body.
6512
6513 2013-05-30 Juri Linkov <juri@jurta.org>
6514
6515 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
6516 to "\M-si".
6517 (isearch-invisible): New variable.
6518 (isearch-forward): Doc fix.
6519 (isearch-mode): Set `isearch-invisible'
6520 to the value of `search-invisible'.
6521 (isearch-toggle-case-fold): Doc fix.
6522 (isearch-toggle-invisible): New command.
6523 (isearch-query-replace): Let-bind `search-invisible'
6524 to the value of `isearch-invisible'.
6525 (isearch-search): Use `isearch-invisible' instead of
6526 `search-invisible'. Let-bind `search-invisible'
6527 to the value of `isearch-invisible'. (Bug#11378)
6528
6529 2013-05-30 Juri Linkov <juri@jurta.org>
6530
6531 * replace.el (perform-replace): Avoid `isearch-range-invisible'
6532 call when `query-flag' is nil and `search-invisible' is non-nil.
6533 (Bug#11746)
6534
6535 2013-05-30 Glenn Morris <rgm@gnu.org>
6536
6537 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
6538
6539 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
6540 (cc-require): Suppress spurious "noruntime" warnings.
6541 (cc-require-when-compile): Use fboundp, for sake of compiler.
6542
6543 * progmodes/cc-mode.el: Move load of cc-vars before that of
6544 cc-langs (which in turn loads cc-vars), to quieten compiler.
6545
6546 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6547
6548 * paren.el: Simplify the code.
6549 (show-paren-mode): Always start the timer.
6550 (show-paren--idle-timer): Rename from show-paren-idle-timer.
6551 (show-paren--overlay, show-paren--overlay-1): Rename from
6552 show-paren-overlay and show-paren-overlay-1, and initialize to an
6553 overlay rather than to nil.
6554 (show-paren-function): Misc cleanup and simplifications.
6555
6556 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6557
6558 * paren.el (show-paren-data-function): New hook.
6559 (show-paren--default): New function, extracted from show-paren-function.
6560 (show-paren-function): Use show-paren-data-function.
6561
6562 2013-05-30 Glenn Morris <rgm@gnu.org>
6563
6564 * ielm.el (ielm-map, ielm-complete-symbol):
6565 Use completion-at-point rather than obsolete functions.
6566 (inferior-emacs-lisp-mode): Doc fix.
6567 Set completion-at-point-functions, rather than
6568 comint-dynamic-complete-functions.
6569
6570 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
6571 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
6572 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
6573
6574 * image.el (image-animated-p): Tweak definition.
6575
6576 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
6577 (rlogin-process-connection-type): Tweak default. Add set-after.
6578 (rlogin-host): Doc fix.
6579 (rlogin): Tweak prompt.
6580 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
6581
6582 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
6583 * progmodes/tcl.el (inferior-tcl-mode-map):
6584 Use completion-at-point rather than obsolete alias.
6585
6586 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
6587
6588 * minibuffer.el (read-file-name-completion-ignore-case):
6589 Move before completion--in-region, for eager macro expansion.
6590
6591 2013-05-29 Juri Linkov <juri@jurta.org>
6592
6593 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
6594 for total count of matching lines. Add `global-matches' for total
6595 count of matches. Rename `matches' to `lines' for count of
6596 matching lines. Add `matches' for count of matches.
6597 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
6598 to `prev-line' for line number of prev match endpt.
6599 Increment `matches' for every match. Print the number of
6600 matching lines in the header.
6601 (occur-context-lines): Rename `lines' to `curr-line'.
6602 Rename `prev-lines' to `prev-line'. (Bug#14017)
6603
6604 2013-05-29 Juri Linkov <juri@jurta.org>
6605
6606 * replace.el (perform-replace): Add `skip-read-only-count',
6607 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
6608 Increment them for corresponding conditions and report the number
6609 of skipped occurrences in the final message. (Bug#11746)
6610 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6611 (replace-string, replace-regexp): Doc fix.
6612
6613 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6614
6615 * emacs-lisp/trace.el (trace--read-args): Provide a default.
6616
6617 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
6618 prog-mode-map (bug#14504).
6619
6620 2013-05-29 Leo Liu <sdl.web@gmail.com>
6621
6622 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
6623 (octave-help): Small simplification.
6624
6625 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
6626 off the highlight first.
6627
6628 2013-05-29 Glenn Morris <rgm@gnu.org>
6629
6630 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
6631 Handle idlwave-last-system-routine-info-cons-cell being nil.
6632
6633 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
6634 (idlwave-write-paths): Simplify via with-temp-buffer.
6635
6636 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
6637 * emulation/cua-rect.el: Also load cua-base at run time.
6638
6639 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
6640 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
6641 (cperl-imenu-on-info): Require imenu.
6642
6643 2013-05-28 Alan Mackenzie <acm@muc.de>
6644
6645 Handle "capitalised keywords" correctly.
6646 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
6647
6648 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
6649
6650 * eshell/em-unix.el: Add -r option to cp.
6651
6652 2013-05-28 Glenn Morris <rgm@gnu.org>
6653
6654 * vc/vc-arch.el (vc-exec-after): Declare.
6655 (vc-switches): Autoload.
6656 * vc/vc-bzr.el: No need to require vc when compiling.
6657 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
6658 (vc-resynch-buffer, vc-dir-refresh): Declare.
6659 (vc-setup-buffer, vc-switches): Autoload.
6660 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
6661 (vc-resynch-buffer): Declare.
6662 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
6663 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
6664 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
6665 (grep-read-regexp, grep-read-files, grep-expand-template)
6666 (vc-dir-refresh): Declare.
6667 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
6668 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
6669 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
6670 * vc/vc-mtn.el (vc-exec-after): Declare.
6671 (vc-switches): Autoload.
6672 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
6673 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
6674 (vc-file-tree-walk): Declare.
6675 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
6676 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
6677 (vc-tag-precondition, vc-rename-master): Autoload.
6678 * vc/vc-svn.el (vc-exec-after): Declare.
6679 (vc-switches, vc-setup-buffer): Autoload.
6680 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
6681 Autoload.
6682 (vc-resynch-buffer): Declare.
6683
6684 * obsolete/fast-lock.el (byte-compile-warnings):
6685 Don't warn about obsolete features in this obsolete file.
6686
6687 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
6688 Move definition before use.
6689
6690 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
6691 (dun-unix-verbs): Remove dun-zippy.
6692 (dun-zippy): Remove function.
6693
6694 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
6695
6696 2013-05-27 Juri Linkov <juri@jurta.org>
6697
6698 * replace.el (replace-search): New function with code moved out
6699 from `perform-replace'.
6700 (replace-highlight, replace-dehighlight): Move function definitions
6701 up closer to `replace-search'. (Bug#11746)
6702
6703 2013-05-27 Juri Linkov <juri@jurta.org>
6704
6705 * replace.el (perform-replace): Ignore invisible matches.
6706 In addition to checking `query-replace-skip-read-only', also
6707 filter out matches by calling `run-hook-with-args-until-failure'
6708 on `isearch-filter-predicates', and also check `search-invisible'
6709 for t or call `isearch-range-invisible'.
6710 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
6711
6712 2013-05-27 Juri Linkov <juri@jurta.org>
6713
6714 * isearch.el (isearch-filter-predicates): Rename from
6715 `isearch-filter-predicate'. Doc fix. (Bug#11378)
6716 (isearch-message-prefix): Display text from the property
6717 `isearch-message-prefix' of the currently active filters.
6718 (isearch-search): Don't compare `isearch-filter-predicate' with
6719 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
6720 on `isearch-filter-predicates'. Also check `search-invisible' for t
6721 or call `isearch-range-invisible'.
6722 (isearch-filter-visible): Make obsolete.
6723 (isearch-lazy-highlight-search):
6724 Call `run-hook-with-args-until-failure' on
6725 `isearch-filter-predicates' and use `isearch-range-invisible'.
6726
6727 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
6728 `isearch-filter-predicates' instead of `funcall'ing
6729 `isearch-filter-predicate'.
6730 (Info-mode): Set `Info-isearch-filter' to
6731 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
6732
6733 * dired-aux.el (dired-isearch-filter-predicate-orig):
6734 Remove variable.
6735 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
6736 (dired-isearch-filenames-end): Add and remove
6737 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
6738 instead of changing the value of `isearch-filter-predicate'.
6739 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
6740 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
6741 Put property `isearch-message-prefix' to "filename " on
6742 `dired-isearch-filter-filenames'.
6743
6744 * wdired.el (wdired-change-to-wdired-mode):
6745 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
6746 locally instead of changing `isearch-filter-predicate'.
6747 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
6748
6749 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
6750
6751 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
6752 return the commit hash (Bug#14459). Also set the
6753 `vc-git-detached' property.
6754 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
6755 (vc-git-mode-line-string): Use the same help-echo format whether
6756 in detached mode or not, because we know the actual revision now.
6757 When in detached mode, shorten the revision to 7 chars.
6758
6759 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6760
6761 * emacs-lisp/easy-mmode.el (define-minor-mode):
6762 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
6763 mode hook and provide a docstring.
6764
6765 2013-05-27 Alan Mackenzie <acm@muc.de>
6766
6767 Remove spurious syntax-table text properties inserted by C-y.
6768 * progmodes/cc-mode.el (c-after-change): Also clear hard
6769 syntax-table property with value nil.
6770
6771 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
6772
6773 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
6774 when reading the events; the buffer layout shall not be changed.
6775
6776 2013-05-27 Leo Liu <sdl.web@gmail.com>
6777
6778 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
6779 New variable.
6780 (inferior-octave-directory-tracker): Automatically re-sync
6781 default-directory.
6782 (octave-help): Improve handling of 'See also'.
6783
6784 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6785
6786 * doc-view.el: Minor naming convention tweaks.
6787 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
6788
6789 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
6790 even if there's no `display' property yet (bug#14435).
6791
6792 2013-05-25 Eli Zaretskii <eliz@gnu.org>
6793
6794 * subr.el (unmsys--file-name): Rename from reveal-filename.
6795
6796 * Makefile.in (custom-deps, finder-data, autoloads)
6797 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
6798 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
6799 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
6800
6801 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6802
6803 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
6804 error-completion on the first 2 args of condition-case (bug#14446).
6805 Don't burp at EOB.
6806
6807 2013-05-25 Leo Liu <sdl.web@gmail.com>
6808
6809 * comint.el (comint-previous-matching-input): Do not flood the
6810 *Messages* buffer with trivial messages.
6811
6812 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6813
6814 * progmodes/flymake.el (flymake-nop): Don't return a string.
6815 (flymake-set-at): Fix typo.
6816
6817 * simple.el (read--expression): New function, extracted from
6818 eval-expression. Set completion-at-point-functions (bug#14465).
6819 (eval-expression, eval-minibuffer): Use it.
6820
6821 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
6822
6823 * progmodes/flymake.el (flymake-save-buffer-in-file)
6824 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
6825 (flymake-selected-frame, flymake-log, flymake-ins-after)
6826 (flymake-set-at, flymake-get-buildfile-from-cache)
6827 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
6828 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
6829 Refine the doc string.
6830 (flymake-get-file-name-mode-and-masks): Reformat.
6831 (flymake-get-real-file-name-function): Fix a minor bug.
6832
6833 2013-05-24 Juri Linkov <juri@jurta.org>
6834
6835 * progmodes/grep.el (grep-mode-font-lock-keywords):
6836 Support =linenumber= format used by git-grep for lines with
6837 function names. (Bug#13549)
6838
6839 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6840
6841 * progmodes/octave.el (octave-smie-rules): Return nil rather than
6842 0 after a semi-colon; it works better for smie-auto-fill.
6843 (octave--indent-new-comment-line): New function.
6844 (octave-indent-new-comment-line): Use it (indirectly).
6845 (octave-mode): Don't disable smie-auto-fill. Use add-function to
6846 modify comment-line-break-function.
6847
6848 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
6849 (smie-setup): Use add-function to set it.
6850
6851 2013-05-24 Sam Steingold <sds@gnu.org>
6852
6853 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
6854 argument (before the `interactive' argument).
6855
6856 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6857
6858 * image-mode.el (image-mode-winprops): Add winprops to
6859 image-mode-winprops-alist before running
6860 image-mode-new-window-functions.
6861 * doc-view.el (doc-view-new-window-function): Don't delay
6862 doc-view-goto-page via timers (bug#14435).
6863
6864 2013-05-24 Tassilo Horn <tsdh@gnu.org>
6865
6866 * doc-view.el: Integrate with desktop.el. (Bug#14435)
6867 (doc-view-desktop-save-buffer): New function.
6868 (doc-view-restore-desktop-buffer): New function.
6869 (desktop-buffer-mode-handlers):
6870 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
6871 handler.
6872 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
6873 `desktop-save-buffer' function.
6874
6875 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
6876
6877 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
6878 (tramp-gvfs-file-name-handler): Raise a user error when
6879 `tramp-gvfs-enabled' is nil.
6880 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
6881 Do not raise a user error when loading package. (Bug#14447)
6882
6883 * net/xesam.el: Move to obsolete/.
6884
6885 2013-05-24 Glenn Morris <rgm@gnu.org>
6886
6887 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
6888
6889 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
6890
6891 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
6892 (Info-find-node, Man-getpage-in-background): Declare.
6893
6894 * mail/unrmail.el (unrmail):
6895 Replace obsolete detect-coding-with-priority.
6896
6897 * net/socks.el (socks-split-string): Use this rather than split-string.
6898 (socks-nslookup-host): Update for above change.
6899 (dynamic-choice, s5-dynamic-choice-match)
6900 (s5-dynamic-choice-match-inline, s5-widget-value-create):
6901 Comment out unused code.
6902
6903 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
6904 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
6905 (gud-tooltip-echo-area): Make obsolete.
6906 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
6907
6908 * progmodes/js.el (js--optimize-arglist): Declare.
6909
6910 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
6911
6912 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
6913 (ediff-window-C): Declare.
6914
6915 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
6916 Tweak requires to silence compiler.
6917
6918 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
6919 (he-search-string, he-tried-table, he-expand-list)
6920 (he-init-string, he-string-member, he-substitute-string)
6921 (he-reset-string): Declare.
6922
6923 * obsolete/options.el (list-options): Use custom-variable-p,
6924 rather than obsolete alias.
6925
6926 2013-05-23 Sam Steingold <sds@gnu.org>
6927
6928 * simple.el (shell-command-on-region): Pass the `replace' argument
6929 down to `call-process-region' to comply with the doc as reported on
6930 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
6931
6932 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6933
6934 * emacs-lisp/smie.el (smie-indent-forward-token)
6935 (smie-indent-backward-token): Handle string tokens (bug#14381).
6936
6937 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6938
6939 * ielm.el (ielm-menu): New menu.
6940 (inferior-emacs-lisp-mode): Set comment-start.
6941
6942 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6943
6944 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
6945 Fix deactivate action.
6946
6947 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
6948 Add cleveref macros.
6949
6950 * lisp/textmodes/reftex-parse.el
6951 (reftex-locate-bibliography-files): Accept options for
6952 bibliography commands.
6953 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
6954 Add addbibresource. Basic Biblatex support.
6955
6956 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
6957
6958 * net/tramp-gvfs.el (top):
6959 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
6960 when loading package. (Bug#14447)
6961
6962 2013-05-23 Glenn Morris <rgm@gnu.org>
6963
6964 * progmodes/js.el: No need to load comint when compiling.
6965 (ring-insert, comint-send-string, comint-send-input)
6966 (comint-last-input-end, ido-chop): Declare.
6967
6968 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
6969 * vc/ediff-mult.el: Adjust requires.
6970 (ediff-directories-internal, ediff-directory-revisions-internal)
6971 (ediff-patch-file-internal): Declare.
6972 * vc/ediff-ptch.el: Adjust requires.
6973 (ediff-use-last-dir, ediff-buffers-internal): Declare.
6974 (ediff-find-file): Autoload.
6975 * vc/ediff-util.el: No need to load ediff when compiling.
6976 (ediff-regions-internal): Declare.
6977 * vc/ediff-wind.el: Adjust requires.
6978 (ediff-compute-toolbar-width): Define when compiling.
6979 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
6980 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
6981 (dired-get-filename, dired-get-marked-files)
6982 (ediff-last-dir-patch, ediff-patch-default-directory)
6983 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
6984 (ediff-patch-buffer-internal): Declare.
6985
6986 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
6987 (ispell-process, ispell-buffer-local-words, lm-summary)
6988 (lm-section-start, lm-section-end): Declare.
6989 (checkdoc-ispell-init): Simplify.
6990
6991 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
6992 (he-string-member, he-reset-string, he-substitute-string): Declare.
6993
6994 * eshell/em-ls.el: Adjust requires.
6995 (eshell-glob-regexp): Declare.
6996 * eshell/em-tramp.el: Adjust requires.
6997 (eshell-parse-command): Autoload.
6998 * eshell/em-xtra.el: Adjust requires.
6999 (eshell-parse-command): Autoload.
7000 * eshell/esh-ext.el: Adjust requires.
7001 (eshell-parse-command, eshell-close-handles): Autoload.
7002 * eshell/esh-io.el: Adjust requires.
7003 (eshell-output-filter): Autoload.
7004 * eshell/esh-util.el: No need to load tramp when compiling.
7005 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
7006 Declare.
7007 (eshell-parse-ange-ls): Require ange-ftp and tramp.
7008 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
7009 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
7010 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
7011 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
7012 * eshell/esh-opt.el, eshell/esh-proc.el:
7013 * eshell/esh-var.el: Adjust requires.
7014 * eshell/eshell.el: Do not require esh-util twice.
7015 (eshell-add-input-to-history): Declare.
7016 (eshell-command): Check history module is active before using it.
7017
7018 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
7019
7020 2013-05-22 Leo Liu <sdl.web@gmail.com>
7021
7022 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
7023
7024 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
7025
7026 * autorevert.el (auto-revert-notify-add-watch)
7027 (auto-revert-notify-handler): Add `attrib' for the inotify case,
7028 it indicates changes in file modification time.
7029
7030 2013-05-22 Glenn Morris <rgm@gnu.org>
7031
7032 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
7033 Always delete the autoloaded function from the noruntime and
7034 unresolved functions lists.
7035
7036 * allout.el: No need to load epa, epg, overlay when compiling.
7037 (epg-context-set-passphrase-callback, epg-list-keys)
7038 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
7039 (epg-key-user-id-list): Declare.
7040
7041 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7042 (viper-set-parsing-style-toggling-macro)
7043 (viper-set-emacs-state-searchstyle-macros):
7044 Use called-interactively-p on Emacs.
7045 (viper-looking-back): Make it an obsolete alias. Update callers.
7046 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
7047 Use looking-back rather than viper-looking-back.
7048 (viper-tmp-insert-at-eob, viper-enlarge-region)
7049 (viper-read-string-with-history, viper-register-to-point)
7050 (viper-append-to-register, viper-change-state-to-vi)
7051 (viper-backward-char-carefully, viper-forward-char-carefully)
7052 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
7053 (viper-change-state-to-emacs): Declare.
7054 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
7055 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
7056 * emulation/viper-mous.el: Do not load viper-cmd.
7057 (viper-backward-char-carefully, viper-forward-char-carefully)
7058 (viper-forward-word, viper-adjust-window): Declare.
7059
7060 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
7061
7062 * progmodes/idlw-help.el (idlwave-help-fontify):
7063 Use called-interactively-p.
7064
7065 * term/w32console.el (w32-get-console-codepage)
7066 (w32-get-console-output-codepage): Declare.
7067
7068 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
7069 Remove unnecessary declarations.
7070 (dframe-message): Doc fix.
7071
7072 * info.el (dframe-select-attached-frame, dframe-current-frame):
7073 Declare.
7074
7075 * speedbar.el (speedbar-message): Make it an obsolete alias.
7076 Update all callers.
7077 (speedbar-with-attached-buffer)
7078 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
7079 (speedbar-with-writable): Use backquote.
7080 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
7081 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
7082 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
7083 rather than speedbar- aliases.
7084 * mail/rmail.el: Load dframe rather than speedbar when compiling.
7085 (speedbar-make-specialized-keymap, speedbar-insert-button)
7086 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
7087 (speedbar-do-function-pointer): Declare.
7088 (rmail-speedbar-button, rmail-speedbar-find-file)
7089 (rmail-speedbar-move-message):
7090 Use dframe-with-attached-buffer rather than speedbar- alias.
7091 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
7092 (dframe-message, speedbar-make-specialized-keymap)
7093 (speedbar-add-expansion-list, speedbar-mode-functions-list)
7094 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
7095 (speedbar-insert-button, dframe-select-attached-frame)
7096 (dframe-maybee-jump-to-attached-frame)
7097 (speedbar-change-initial-expansion-list)
7098 (speedbar-previously-used-expansion-list-name): Declare.
7099 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
7100 Use dframe-message, dframe-with-attached-buffer rather than
7101 speedbar- aliases.
7102 (gud-sentinel): Silence compiler.
7103 * progmodes/vhdl-mode.el (speedbar-refresh)
7104 (speedbar-do-function-pointer, speedbar-add-supported-extension)
7105 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
7106 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
7107 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
7108 (speedbar-file-lists, speedbar-make-tag-line)
7109 (speedbar-line-directory, speedbar-goto-this-file)
7110 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
7111 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
7112 (speedbar-make-button, speedbar-reset-scanners)
7113 (speedbar-files-item-info, speedbar-line-text)
7114 (speedbar-find-file-in-frame, speedbar-set-timer)
7115 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
7116 (speedbar-with-writable): Do not (re)define it.
7117 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
7118 rather than speedbar- alias.
7119
7120 2013-05-21 Leo Liu <sdl.web@gmail.com>
7121
7122 * progmodes/octave.el (octave-mode-menu): Update and re-organize
7123 menu items.
7124 (octave-mode): Tweak fill-nobreak-predicate.
7125 (inferior-octave-startup): Check process to avoid infinite loop.
7126 (inferior-octave): Pop to buffer first to show abornmal process
7127 exit information.
7128
7129 2013-05-21 Glenn Morris <rgm@gnu.org>
7130
7131 * printing.el (pr-menu-bar): Define when compiling.
7132
7133 2013-05-21 Leo Liu <sdl.web@gmail.com>
7134
7135 * progmodes/octave.el (octave-auto-fill): Remove.
7136 (octave-indent-new-comment-line): Improve.
7137 (octave-mode): Use auto fill mode through
7138 comment-line-break-function and fill-nobreak-predicate.
7139 (octave-goto-function-definition): Support DEFUN_DLD.
7140 (octave-beginning-of-defun): Small tweak.
7141 (octave-help): Show parent directory.
7142
7143 2013-05-21 Glenn Morris <rgm@gnu.org>
7144
7145 * files.el (dired-unmark):
7146 * progmodes/gud.el (gdb-input): Update declarations.
7147
7148 * calculator.el (electric, ehelp): No need to load when compiling.
7149 (Electric-command-loop, electric-describe-mode): Declare.
7150
7151 * doc-view.el (doc-view-current-converter-processes): Move before use.
7152
7153 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7154 Move MODE-set-explicitly definition before use.
7155
7156 * international/mule-diag.el (mule-diag):
7157 Don't use obsolete window-system-version.
7158
7159 * mail/feedmail.el (smtpmail): No need to load when compiling.
7160 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
7161
7162 * mail/mail-utils.el (rfc822): No need to load when compiling.
7163 (rfc822-addresses): Autoload it.
7164 (mail-strip-quoted-names): Trivial simplification.
7165
7166 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
7167 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
7168
7169 * net/snmp-mode.el (tempo): Don't duplicate requires.
7170
7171 * progmodes/prolog.el (info): No need to load when compiling.
7172 (comint): Require before shell requires it.
7173 (Info-goto-node): Autoload it.
7174 (Info-follow-nearest-node): Declare.
7175 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
7176
7177 * textmodes/artist.el (picture-mode-exit): Declare.
7178
7179 * textmodes/reftex-parse.el (reftex-parse-from-file):
7180 Trivial rewrite so the compiler can parse it better.
7181
7182 2013-05-20 Leo Liu <sdl.web@gmail.com>
7183
7184 * progmodes/octave.el (octave-help-mode-map)
7185 (octave-help-mode-finish-hook): New variables.
7186 (octave-help-mode, octave-help-mode-finish): New functions.
7187 (octave-help): Use octave-help-mode.
7188
7189 2013-05-20 Glenn Morris <rgm@gnu.org>
7190
7191 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
7192
7193 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
7194
7195 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
7196 start at point, so that expansion starting right after opening
7197 slash in a regexp is recognized.
7198 (ruby-syntax-before-regexp-re): New defvar, extracted from
7199 ruby-syntax-propertize-function. Since the value of this regexp
7200 is looked up at runtime now, we should be able to turn
7201 `ruby-syntax-methods-before-regexp' into a defcustom later.
7202 (ruby-syntax-propertize-function): Split regexp matching into two
7203 parts, for opening and closing slashes. That allows us to skip
7204 over string interpolations and support multiline regexps.
7205 Don't call `ruby-syntax-propertize-expansions', instead use another rule
7206 for them, which calls `ruby-syntax-propertize-expansion'.
7207 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
7208 call to `ruby-syntax-propertize-function'.
7209 (ruby-syntax-propertize-expansion): Extracted from
7210 `ruby-syntax-propertize-expansions'. Handles one expansion.
7211 (ruby-syntax-propertize-percent-literal): Leave point right after
7212 the percent symbol, so that the expression expansion rule can
7213 propertize the contents.
7214 (ruby-syntax-propertize-heredoc): Leave point at bol following the
7215 heredoc openers.
7216 (ruby-syntax-propertize-expansions): Remove.
7217
7218 2013-05-18 Juri Linkov <juri@jurta.org>
7219
7220 * man.el (Man-default-man-entry): Remove `-' from the end
7221 of the default value. (Bug#14400)
7222
7223 2013-05-18 Glenn Morris <rgm@gnu.org>
7224
7225 * comint.el (comint-password-prompt-regexp):
7226 Allow "password for XXX" where XXX contains colons (eg https://...).
7227
7228 2013-05-18 Leo Liu <sdl.web@gmail.com>
7229
7230 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
7231 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
7232 (octave-source-directories): Don't check process.
7233 (octave-source-directories, octave-find-definition): Doc fix.
7234
7235 2013-05-18 Glenn Morris <rgm@gnu.org>
7236
7237 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
7238 Remove backspace/delete bindings. (Bug#14392)
7239
7240 * cus-dep.el (custom-make-dependencies): Sort the output.
7241 (custom-versions-load-alist): Convert comment to doc.
7242
7243 2013-05-17 Leo Liu <sdl.web@gmail.com>
7244
7245 * newcomment.el (comment-search-backward): Stricter in finding
7246 comment start. (Bug#14303)
7247
7248 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
7249 (octave-comment-start-skip): Properly anchored.
7250
7251 2013-05-17 Leo Liu <sdl.web@gmail.com>
7252
7253 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
7254 Clean up when turned off. (Bug#14395)
7255 (smie--highlight-matching-block-overlay): No longer buffer-local.
7256 (smie-highlight-matching-block): Adjust.
7257
7258 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
7259
7260 Doc string fix for "nanoseconds" (Bug#14406).
7261 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
7262 Fix doc string typo that had "nanoseconds" instead of "microseconds".
7263
7264 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
7265
7266 * calc/calc-units.el (math-extract-units): Preserve powers
7267 of units.
7268
7269 2013-05-17 Leo Liu <sdl.web@gmail.com>
7270
7271 * subr.el (delete-consecutive-dups): New function.
7272 * ido.el (ido-set-matches-1): Use it.
7273 * progmodes/octave.el (inferior-octave-completion-table): Use it.
7274 * ido.el (ido-remove-consecutive-dups): Remove.
7275
7276 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7277
7278 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
7279 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
7280 regexp-opt's `words'.
7281
7282 2013-05-16 Leo Liu <sdl.web@gmail.com>
7283
7284 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
7285 (smie--highlight-matching-block-overlay)
7286 (smie--highlight-matching-block-lastpos)
7287 (smie--highlight-matching-block-timer): New variables.
7288 (smie-highlight-matching-block): New function.
7289 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
7290 (smie-setup): Conditionally enable smie-blink-matching-open.
7291
7292 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
7293
7294 Sync with upstream verilog-mode r840.
7295 * progmodes/verilog-mode.el (verilog-mode-version)
7296 (verilog-mode-release-date): Update.
7297 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
7298 (verilog-sig-tieoff): Fix string error on
7299 AUTORESET with colon define, bug594. Reported by Andrew Hou.
7300 (verilog-read-decls): Fix parameters confusing
7301 AUTOINST interfaces, bug565. Reported by Leith Johnson.
7302
7303 2013-05-16 Eli Zaretskii <eliz@gnu.org>
7304
7305 * subr.el (reveal-filename): New function.
7306
7307 * loadup.el: Compute Emacs executable versions on MS-Windows,
7308 where executables have the .exe extension. Add a hard link
7309 emacs-XX.YY.ZZ.exe on MS-Windows.
7310
7311 * Makefile.in (XARGS_LIMIT): New variable.
7312 (custom-deps, finder-data, autoloads)
7313 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7314 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7315 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
7316 (compile-main): Limit xargs according to $(XARGS_LIMIT).
7317
7318 2013-05-16 Leo Liu <sdl.web@gmail.com>
7319
7320 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
7321 (octave-mode-menu, octave-mode-map): Remove its uses.
7322
7323 2013-05-16 Reto Zimmermann <reto@gnu.org>
7324
7325 Sync with upstream vhdl mode v3.34.2.
7326 * progmodes/vhdl-mode.el: Use `push' throughout.
7327 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
7328 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
7329 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
7330 (vhdl-actual-generic-name): New option to derive actual generic name.
7331 (vhdl-port-paste-signals): Replace formal by actual generics.
7332 (vhdl-beautify): New name for old group vhdl-align. Update users.
7333 (vhdl-beautify-options): New option.
7334 (vhdl-last-input-event): New compat alias. Use throughout.
7335 (vhdl-goto-line): Replace user level function `goto-line'.
7336 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
7337 vhdl-fix-statement-buffer.
7338 (vhdl-create-mode-menu): Add some entries.
7339 (vhdl-align-region-groups): Respect vhdl-beautify-options.
7340 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
7341 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
7342 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
7343 to force statements on one line.
7344 (vhdl-remove-trailing-spaces-region):
7345 New, split from vhdl-remove-trailing-spaces.
7346 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
7347 Respect vhdl-beautify-options.
7348 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
7349 (vhdl-update-sensitivity-list): Not add with index if exists without.
7350 Not include array index with signal. Ignore keywords in comments.
7351 (vhdl-get-visible-signals): Regexp tweaks.
7352 (vhdl-template-component-inst): Handle empty library.
7353 (vhdl-template-type): Add template for 'enum' type.
7354 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
7355 Use vhdl-replace-string.
7356 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
7357 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
7358 (vhdl-speedbar-initialize): Update for above name change.
7359 (vhdl-compose-wire-components): Fix in handling of constants.
7360 (vhdl-error-regexp-emacs-alist): New variable.
7361 (vhdl-error-regexp-add-emacs): New function;
7362 adds support for new compile.el (Emacs 22+)
7363 (vhdl-generate-makefile-1): Change target order for single lib. units.
7364 Allow use of absolute file names.
7365
7366 2013-05-16 Leo Liu <sdl.web@gmail.com>
7367
7368 * simple.el (prog-indent-sexp): Indent enclosing defun.
7369
7370 2013-05-15 Glenn Morris <rgm@gnu.org>
7371
7372 * cus-start.el (show-trailing-whitespace): Move to editing basics.
7373 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
7374 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
7375 (whitespace-highlight): Move to whitespace group.
7376
7377 * comint.el (comint-source):
7378 * pcmpl-linux.el (pcmpl-linux):
7379 * shell.el (shell-faces):
7380 * eshell/esh-opt.el (eshell-opt):
7381 * international/ccl.el (ccl): Remove empty custom groups.
7382
7383 * completion.el (dynamic-completion-mode):
7384 * jit-lock.el (jit-lock-debug-mode):
7385 * minibuffer.el (completion-in-region-mode):
7386 * type-break.el (type-break-mode-line-message-mode)
7387 (type-break-query-mode):
7388 * emulation/tpu-edt.el (tpu-edt-mode):
7389 * progmodes/subword.el (global-subword-mode, global-superword-mode):
7390 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7391 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
7392
7393 * term/xterm.el (xterm): Change parent group to terminals.
7394
7395 * master.el (master): Remove empty custom group.
7396 (master-mode): Remove unused :group argument.
7397 * textmodes/refill.el (refill): Remove empty custom group.
7398 (refill-mode): Remove unused :group argument.
7399
7400 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
7401
7402 * cus-dep.el: Provide a feature.
7403 (custom-make-dependencies): Ignore dotfiles (dir-locals).
7404 Don't mistakenly ignore files whose basenames match a basename
7405 from preloaded-file-list (eg cedet/ede/simple.el).
7406 Add a fallback method for getting :group.
7407
7408 2013-05-15 Juri Linkov <juri@jurta.org>
7409
7410 * isearch.el (isearch-char-by-name): Rename from
7411 `isearch-insert-char-by-name'. Doc fix.
7412 (isearch-forward): Mention `isearch-char-by-name' in
7413 the docstring. (Bug#13348)
7414
7415 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
7416 `exit-minibuffer' instead of
7417 `isearch-nonincremental-exit-minibuffer'.
7418 (isearch-edit-string): Remove mention of
7419 `isearch-nonincremental-exit-minibuffer' from docstring.
7420 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
7421 (isearch-forward-exit-minibuffer)
7422 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
7423
7424 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7425
7426 * loadup.el: Just use unversioned DOC.
7427
7428 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
7429 literals as extending to EOB.
7430 (nxml-last-fontify-end): Remove unused variable.
7431 (nxml-after-change1): Use with-silent-modifications.
7432 (nxml-extend-after-change-region): Simplify.
7433 (nxml-extend-after-change-region1): Remove function.
7434 (nxml-after-change1): Don't adjust for dependent regions.
7435 (nxml-fontify-matcher): Simplify.
7436 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
7437 (xmltok-add-dependent): Remove function.
7438 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
7439 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
7440 (xmltok-scan-prolog-after-processing-instruction-open): Treat
7441 unclosed <[[, <?, comment, and other literals as extending to EOB.
7442 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
7443 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
7444 Remove functions.
7445 (rng-do-some-validation-1): Don't mark dependent regions.
7446 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
7447 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
7448 (nxml-clear-dependent-regions): Remove functions.
7449 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
7450 (nxml-ensure-scan-up-to-date):
7451 Don't clear&mark dependent regions.
7452
7453 2013-05-15 Leo Liu <sdl.web@gmail.com>
7454
7455 * progmodes/octave.el (octave-goto-function-definition):
7456 Improve and fix callers.
7457
7458 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7459
7460 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
7461 the setter (bug#14387).
7462
7463 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
7464 surrounding group (bug#14402).
7465
7466 2013-05-14 Juri Linkov <juri@jurta.org>
7467
7468 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
7469 (Bug#14390)
7470
7471 2013-05-14 Glenn Morris <rgm@gnu.org>
7472
7473 * progmodes/f90.el (f90-imenu-generic-expression):
7474 Fix typo in 2013-05-08 change. (Bug#14402)
7475
7476 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7477
7478 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
7479 Remove signals for which replies are never received.
7480
7481 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7482
7483 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
7484 (gdb-handler-alist, gdb-handler-number): Remove variables.
7485 (gdb-handler-list): New variable.
7486 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
7487 (gdb-pending-handler-p, gdb-handle-reply)
7488 (gdb-remove-all-pending-triggers): New functions.
7489 (gdb-discard-unordered-replies): New defcustom.
7490 (gdb-handler): New defstruct.
7491 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
7492 instead of gdb-pending-triggers. Update docstring.
7493 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
7494 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
7495 (gdb-var-update-handler, def-gdb-auto-update-trigger)
7496 (def-gdb-auto-update-handler, gdb-get-changed-registers)
7497 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
7498 (gdb-frame-handler): Pending triggers are now automatically managed.
7499 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
7500 Remove argument.
7501 (gdb-input): Automatically handles pending triggers. Update docstring.
7502 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
7503 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
7504 Update comments.
7505 (gdb-done-or-error): Now use gdb-handle-reply.
7506
7507 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7508
7509 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
7510 gdb-debug-log.
7511
7512 2013-05-14 Glenn Morris <rgm@gnu.org>
7513
7514 * subr.el (user-emacs-directory-warning): New option.
7515 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
7516
7517 2013-05-14 Leo Liu <sdl.web@gmail.com>
7518
7519 * progmodes/octave.el (octave-font-lock-keywords): Fix error
7520 during redisplay.
7521 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
7522 (octave-font-lock-texinfo-comment): Fix invalid search bound
7523 error: wrong side of point.
7524
7525 2013-05-14 Glenn Morris <rgm@gnu.org>
7526
7527 * progmodes/flymake.el (flymake-xml-program): New option.
7528 (flymake-xml-init): Use it.
7529
7530 * term/xterm.el: Provide a feature.
7531
7532 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
7533
7534 2013-05-13 Glenn Morris <rgm@gnu.org>
7535
7536 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
7537 Add compat aliases as a hack workaround. (Bug#14384)
7538
7539 2013-05-13 Leo Liu <sdl.web@gmail.com>
7540
7541 * progmodes/octave.el (octave-indent-comment): Fix indentation for
7542 ###, and %!.
7543 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
7544 C-M-q.
7545 (octave-comment-start-skip): Include %!.
7546 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
7547
7548 2013-05-12 Leo Liu <sdl.web@gmail.com>
7549
7550 * progmodes/octave.el (inferior-octave-startup): Store the value
7551 of __octave_srcdir__ for octave-source-directories.
7552 (inferior-octave-check-process): New function refactored out of
7553 inferior-octave-send-list-and-digest.
7554 (octave-source-directories)
7555 (octave-find-definition-filename-function): New variables.
7556 (octave-source-directories)
7557 (octave-find-definition-default-filename): New functions.
7558 (octave-find-definition): Improve to find functions implemented in C++.
7559
7560 2013-05-12 Glenn Morris <rgm@gnu.org>
7561
7562 * calendar/diary-lib.el (diary-outlook-format-1):
7563 Don't include dayname in the output. (Bug#14349)
7564
7565 2013-05-11 Glenn Morris <rgm@gnu.org>
7566
7567 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
7568
7569 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
7570 Treat cc-provide like provide.
7571
7572 2013-05-11 Kevin Ryde <user42@zip.com.au>
7573
7574 * cus-dep.el (custom-make-dependencies):
7575 Use generated-autoload-load-name for the sake of files such
7576 such cedet/semantic/bovine/c.el, where the base file name
7577 is not in load-path. (Bug#5277)
7578
7579 2013-05-11 Glenn Morris <rgm@gnu.org>
7580
7581 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
7582 Provide features.
7583
7584 2013-05-11 Leo Liu <sdl.web@gmail.com>
7585
7586 * progmodes/octave.el (octave-indent-comment): Improve.
7587 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
7588 (octave-eldoc-function-signatures, octave-eldoc-function):
7589 New functions.
7590 (octave-mode, inferior-octave-mode): Add eldoc support.
7591
7592 2013-05-11 Richard Stallman <rms@gnu.org>
7593
7594 * epa.el (epa-decrypt-file): Take output file name as argument
7595 and read it using `interactive'.
7596
7597 2013-05-11 Leo Liu <sdl.web@gmail.com>
7598
7599 * progmodes/octave.el (octave-beginning-of-line)
7600 (octave-end-of-line): Check before using up-list because it jumps
7601 out of more syntactic contructs since moving to smie.
7602 (octave-indent-comment): New function.
7603 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
7604 (octave-begin-keywords, octave-end-keywords)
7605 (octave-reserved-words, octave-smie-bnf-table)
7606 (octave-smie-rules): Add new keywords from Octave 3.6.4.
7607
7608 2013-05-11 Glenn Morris <rgm@gnu.org>
7609
7610 * faces.el (internal-face-x-get-resource):
7611 * frame.el (ns-display-monitor-attributes-list):
7612 * calc/calc-aent.el (math-to-radians-2):
7613 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
7614 Fix declarations.
7615
7616 * calc/calc-menu.el: Make it loadable in isolation.
7617
7618 * net/eudcb-bbdb.el: Make it loadable without bbdb.
7619 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
7620 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
7621 (eudc-bbdb-query-internal): Require 'bbdb.
7622
7623 * lpr.el (lpr-headers-switches):
7624 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
7625
7626 * progmodes/sql.el (sql-login-params): Fix and improve :type.
7627
7628 * emulation/edt-mapper.el: In batch mode, error rather than hang.
7629
7630 * term.el (term-set-escape-char): Make it idempotent.
7631
7632 2013-05-10 Leo Liu <sdl.web@gmail.com>
7633
7634 * progmodes/octave.el (inferior-octave-completion-table):
7635 No longer a function and all uses changed. Use cache to speed up
7636 completion due to bug#11906.
7637 (octave-beginning-of-defun): Re-write to be more general.
7638
7639 2013-05-10 Glenn Morris <rgm@gnu.org>
7640
7641 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
7642
7643 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7644
7645 * comint.el (comint-redirect-send-command-to-process): Use :around
7646 rather than :override for comint-redirect-filter.
7647 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
7648 Call it instead of comint-redirect-original-filter-function (which
7649 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
7650
7651 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
7652
7653 * frame.el (display-monitor-attributes-list): Add NS case.
7654 (ns-display-monitor-attributes-list): Declare.
7655
7656 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
7657
7658 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
7659
7660 2013-05-09 Glenn Morris <rgm@gnu.org>
7661
7662 * international/fontset.el (vertical-centering-font-regexp):
7663 Set standard-value.
7664
7665 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
7666
7667 * bookmark.el (bookmark-search-delay):
7668 * cus-start.el (vertical-centering-font-regexp):
7669 * ps-mule.el (ps-mule-font-info-database-default):
7670 * ps-print.el (ps-default-fg, ps-default-bg):
7671 * type-break.el (type-break-good-break-interval):
7672 * whitespace.el (whitespace-indentation-regexp)
7673 (whitespace-space-after-tab-regexp):
7674 * emacs-lisp/testcover.el (testcover-1value-functions)
7675 (testcover-noreturn-functions, testcover-progn-functions)
7676 (testcover-prog1-functions):
7677 * emulation/viper-init.el (viper-emacs-state-cursor-color):
7678 * eshell/em-glob.el (eshell-glob-translate-alist):
7679 * play/tetris.el (tetris-tty-colors):
7680 * progmodes/cpp.el (cpp-face-default-list):
7681 * progmodes/flymake.el (flymake-allowed-file-name-masks):
7682 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
7683 (idlwave-help-browser-generic-args):
7684 * progmodes/make-mode.el (makefile-special-targets-list):
7685 * progmodes/python.el (python-shell-virtualenv-path):
7686 * progmodes/verilog-mode.el (verilog-active-low-regexp)
7687 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
7688 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
7689 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
7690 * textmodes/reftex-vars.el (reftex-format-label-function):
7691 * textmodes/remember.el (remember-diary-file): Fix custom types.
7692
7693 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
7694 Add :version.
7695
7696 2013-05-09 Leo Liu <sdl.web@gmail.com>
7697
7698 * progmodes/octave.el (inferior-octave-completion-at-point):
7699 Restore file completion. (Bug#14300)
7700 (inferior-octave-startup): Fix incorrect highlighting for the
7701 first prompt.
7702
7703 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7704
7705 * progmodes/ruby-mode.el: First cut at SMIE support.
7706 (ruby-use-smie): New var.
7707 (ruby-smie-grammar): New constant.
7708 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
7709 (ruby-smie--forward-token, ruby-smie--backward-token)
7710 (ruby-smie-rules): New functions.
7711 (ruby-mode-variables): Setup SMIE if applicable.
7712
7713 2013-05-08 Eli Zaretskii <eliz@gnu.org>
7714
7715 * simple.el (line-move-visual): Signal beginning/end of buffer
7716 only if vertical-motion moved less than it was requested. Avoids
7717 silly incorrect error messages when there are display strings with
7718 multiple newlines at EOL.
7719
7720 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7721
7722 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
7723 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
7724 (prolog-char-quote-workaround):
7725 * progmodes/cperl-mode.el (cperl-under-as-char):
7726 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
7727 Mark as obsolete.
7728 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
7729 their declaration.
7730 (vhdl-mode-syntax-table-init): Remove.
7731
7732 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
7733 last change.
7734
7735 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
7736 syntax for "_".
7737 (ld-script-font-lock-keywords):
7738 Change regexps to use things like \_< and \_>.
7739
7740 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
7741 Change all regexps to use things like \_< and \_>.
7742
7743 * progmodes/autoconf.el (autoconf-definition-regexp)
7744 (autoconf-font-lock-keywords, autoconf-current-defun-function):
7745 Handle a _ with symbol syntax.
7746 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
7747
7748 * progmodes/ada-mode.el (ada-mode-abbrev-table):
7749 Consolidate declaration.
7750 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
7751 the declaration.
7752 (ada-create-syntax-table): Remove.
7753 (ada-capitalize-word): Don't mess with the syntax of "_" since it
7754 already has the right syntax nowadays.
7755 (ada-goto-next-word): Don't change the syntax of "_".
7756
7757 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
7758 with-wrapper-hook.
7759
7760 2013-05-08 Sam Steingold <sds@gnu.org>
7761
7762 * thingatpt.el (thing-at-point): Accept optional second argument
7763 NO-PROPERTIES to strip the text properties from the return value.
7764 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
7765 to `thing-at-point' instead of stripping the properties ourselves.
7766 Also, when `thing-at-point' fails to find a url, prepend "http://"
7767 to the filename at point on the assumption that the user is
7768 pointing at something like gnu.org/gnu.
7769
7770 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
7771
7772 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
7773 * faces.el (crm-separator):
7774 Silence byte-compiler.
7775
7776 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
7777 (tool-bar-map): Remove unneeded defvars.
7778
7779 2013-05-08 Leo Liu <sdl.web@gmail.com>
7780
7781 Re-work a fix for bug#10994 based on Le Wang's patch.
7782 * ido.el (ido-remove-consecutive-dups): New helper.
7783 (ido-completing-read): Use it.
7784 (ido-chop): Revert fix for bug#10994.
7785
7786 2013-05-08 Adam Spiers <emacs@adamspiers.org>
7787
7788 * cus-edit.el (custom-save-variables):
7789 Pretty-print long values. (Bug#14187)
7790
7791 2013-05-08 Glenn Morris <rgm@gnu.org>
7792
7793 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
7794 (m4-mode-syntax-table): Init in the defvar.
7795 (m4-mode-abbrev-table): Let define-derived-mode define it.
7796
7797 2013-05-08 Tom Tromey <tromey@redhat.com>
7798
7799 * progmodes/m4-mode.el (m4-mode-syntax-table):
7800 Do not treat "_" as word constituent. (Bug#14167)
7801
7802 2013-05-07 Glenn Morris <rgm@gnu.org>
7803
7804 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
7805 Remove explicit eshell-isearch-cancel-map.
7806
7807 * progmodes/f90.el (f90-smart-end-names): New option.
7808 (f90-smart-end): Doc fix.
7809 (f90-end-block-optional-name): New constant.
7810 (f90-block-match): Respect f90-smart-end-names.
7811
7812 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7813
7814 * progmodes/octave.el (octave-smie-forward-token): Be more careful
7815 about implicit semi-colons (bug#14218).
7816
7817 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7818
7819 * frame.el (display-monitor-attributes-list)
7820 (frame-monitor-attributes): New functions.
7821
7822 2013-05-06 Leo Liu <sdl.web@gmail.com>
7823
7824 * progmodes/octave.el (octave-syntax-propertize-function): Change
7825 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
7826 (octave-font-lock-keywords): Use octave-operator-regexp.
7827 (octave-completion-at-point): Rename from
7828 octave-completion-at-point-function.
7829 (inferior-octave-directory-tracker): Robustify.
7830 (octave-text-functions): Remove and fix its uses. No such things
7831 any more.
7832
7833 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7834
7835 * emacs-lisp/trace.el (trace--display-buffer): New function.
7836 (trace-make-advice): Use it.
7837
7838 2013-05-06 Juri Linkov <juri@jurta.org>
7839
7840 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
7841 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
7842 Doc fix.
7843 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
7844 in the help string. (Bug#12985)
7845
7846 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
7847
7848 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
7849
7850 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7851
7852 * progmodes/perl-mode.el: Add support for here documents.
7853 (perl-syntax-propertize-function): Match here-doc markers.
7854 (perl-syntax-propertize-special-constructs): Find their end.
7855 (perl-imenu-generic-expression): Use [:alnum:].
7856
7857 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
7858 (advice--add-function): Refresh the advice if already present
7859 (bug#14317).
7860
7861 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
7862
7863 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
7864
7865 2013-05-06 Glenn Morris <rgm@gnu.org>
7866
7867 * w32-fns.el (w32-charset-info-alist): Declare.
7868
7869 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
7870 of its defcustom properties.
7871 (eshell-cmpl-initialize): No need to load pcomplete.
7872
7873 * generic-x.el: No need to require comint when compiling.
7874
7875 * net/eudc-export.el: Make it loadable without bbdb.
7876 (top-level): Use require rather than load-library.
7877 (eudc-create-bbdb-record, eudc-bbdbify-phone)
7878 (eudc-batch-export-records-to-bbdb)
7879 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
7880 Require bbdb.
7881
7882 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7883
7884 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
7885 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
7886 some tweaks, instead.
7887
7888 2013-05-05 Leo Liu <sdl.web@gmail.com>
7889
7890 * progmodes/octave.el (octave-font-lock-keywords)
7891 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
7892 (inferior-octave-send-list-and-digest): Improve error message.
7893 (octave-mode, inferior-octave-mode): Use setq-local.
7894 (octave-help): Set info-lookup-mode.
7895
7896 2013-05-05 Richard Stallman <rms@gnu.org>
7897
7898 * vc/compare-w.el (compare-windows-whitespace):
7899 Treat no-break space as whitespace.
7900
7901 * mail/rmailsum.el (rmail-summary-rmail-update):
7902 Detect empty summary and don't change selected message.
7903 (rmail-summary-goto-msg): Likewise.
7904
7905 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
7906 Doc fixes, rename args.
7907
7908 2013-05-05 Alan Mackenzie <acm@muc.de>
7909
7910 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
7911
7912 2013-05-05 Juri Linkov <juri@jurta.org>
7913
7914 * info.el (Info-read-subfile): Use (point-min) instead of (point)
7915 to not add the length of the summary segment to the return value.
7916 (Bug#14125)
7917
7918 2013-05-05 Leo Liu <sdl.web@gmail.com>
7919
7920 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
7921 (inferior-octave-output-filter): Remove.
7922 (octave-send-region, inferior-octave-startup): Fix callers.
7923 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
7924 (octave-binary-file-extensions): New user variable.
7925 (octave-find-definition): Confirm if opening binary files.
7926 (octave-help-file): Use octave-find-definition to get the binary
7927 confirmation.
7928 (octave-help): Adjust for octave-help-file change.
7929
7930 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7931
7932 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
7933 Merge the two entries that handle function definitions.
7934 (pascal--syntax-propertize): New const.
7935 (pascal-mode): Use it. Use setq-local.
7936
7937 2013-05-04 Glenn Morris <rgm@gnu.org>
7938
7939 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
7940 (diary-from-outlook): Respect diary-from-outlook-function.
7941
7942 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7943
7944 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
7945 Move the declaration from C.
7946 (read-minibuffer, eval-minibuffer): Move from C.
7947 (completion-setup-function): Avoid minibuffer-completion-contents.
7948
7949 2013-05-03 Leo Liu <sdl.web@gmail.com>
7950
7951 * progmodes/octave.el (octave-font-lock-keywords): Do not
7952 dehighlight 'end' in comments or strings.
7953 (octave-completing-read, octave-goto-function-definition):
7954 New helpers.
7955 (octave-help-buffer): New user variable.
7956 (octave-help-file, octave-help-function): New button types.
7957 (octave-help): New command and bind it to C-h ;.
7958 (octave-find-definition): New command and bind it to M-.
7959 (user-error): Alias to error if not defined.
7960
7961 2013-05-02 Leo Liu <sdl.web@gmail.com>
7962
7963 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
7964 for \. (bug#14332)
7965 (octave-font-lock-keywords): Include [ and {.
7966
7967 2013-05-02 Leo Liu <sdl.web@gmail.com>
7968
7969 * progmodes/octave.el (inferior-octave-startup-file): Change default.
7970 (inferior-octave): Remove calling comint-mode and return the buffer.
7971 (inferior-octave-startup): Cosmetic changes.
7972
7973 2013-05-02 Leo Liu <sdl.web@gmail.com>
7974
7975 * progmodes/octave.el (octave-syntax-propertize-function):
7976 Include the case when ' is at line beginning. (Bug#14336)
7977
7978 2013-05-02 Glenn Morris <rgm@gnu.org>
7979
7980 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
7981 * desktop.el (vc-dir-mode): Just autoload it here.
7982
7983 2013-05-02 Alan Mackenzie <acm@muc.de>
7984
7985 Eliminate variable c-standard-font-lock-fontify-region-function.
7986 * progmodes/cc-mode.el
7987 (c-standard-font-lock-fontify-region-function): Remove.
7988 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
7989
7990 2013-05-01 Leo Liu <sdl.web@gmail.com>
7991
7992 * progmodes/octave.el: Compatible with older emacs-24 releases.
7993 (inferior-octave-has-built-in-variables): Remove. Built-in
7994 variables were removed from Octave in 2007.
7995 (inferior-octave-startup): Fix uses.
7996 (comint-line-beginning-position): Remove compatibility code for
7997 emacs 21.
7998
7999 2013-05-01 Juri Linkov <juri@jurta.org>
8000
8001 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
8002
8003 2013-05-01 Juri Linkov <juri@jurta.org>
8004
8005 * comint.el (comint-previous-matching-input): Don't print message
8006 "History item: %d" when `isearch-mode' is active.
8007 (comint-history-isearch-message): Print message "History item: %d"
8008 when `comint-input-ring-index' is not empty and this function is
8009 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
8010
8011 2013-05-01 Leo Liu <sdl.web@gmail.com>
8012
8013 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
8014 definitions. Use completion-at-point to insert keywords.
8015 (octave-abbrev-start): Remove.
8016 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
8017
8018 2013-04-30 Leo Liu <sdl.web@gmail.com>
8019
8020 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
8021 change.
8022
8023 2013-04-30 Alan Mackenzie <acm@muc.de>
8024
8025 Handle arbitrarily long C++ member initialisation lists.
8026 * progmodes/cc-engine.el (c-back-over-member-initializers):
8027 new function.
8028 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
8029 (most) member init lists.
8030
8031 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8032
8033 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
8034 variable.
8035
8036 2013-04-30 Leo Liu <sdl.web@gmail.com>
8037
8038 * progmodes/octave.el (octave-variables): Remove. No builtin
8039 variables any more. All converted to functions.
8040 (octave-font-lock-keywords, octave-completion-at-point-function):
8041 Fix uses.
8042 (octave-font-lock-texinfo-comment): New user variable.
8043 (octave-texinfo-font-lock-keywords): New variable for texinfo
8044 comment block.
8045 (octave-function-comment-block): New face.
8046 (octave-font-lock-texinfo-comment): New function.
8047 (octave-mode): Font lock texinfo comment block.
8048
8049 2013-04-29 Leo Liu <sdl.web@gmail.com>
8050
8051 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
8052 indexing expression.
8053 (octave-continuation-string): Do not use \.
8054 (inferior-octave-complete-impossible): Remove.
8055 (inferior-octave-completion-table)
8056 (inferior-octave-completion-at-point): Remove its uses.
8057 (inferior-octave-startup): completion_matches was introduced to
8058 Octave in 1996 so safe to assume it.
8059 (octave-function-file-comment): Improve to follow how Octave does it.
8060 (octave-update-function-file-comment): Tweak.
8061
8062 2013-04-29 Leo Liu <sdl.web@gmail.com>
8063
8064 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
8065 (inferior-octave-startup): Remove inferior-octave-startup-hook.
8066 (octave-function-file-comment): Fix typo.
8067 (octave-sync-function-file-names): Use read-char-choice.
8068
8069 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
8070
8071 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
8072 to t for the less important warnings.
8073
8074 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
8075
8076 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
8077
8078 2013-04-27 Glenn Morris <rgm@gnu.org>
8079
8080 * vc/log-view.el (log-view-current-entry):
8081 Treat "---" separator lines as part of the following rev. (Bug#14169)
8082
8083 2013-04-27 Juri Linkov <juri@jurta.org>
8084
8085 * subr.el (read-number): Doc fix about using it by interactive
8086 code letter `n'. (Bug#14254)
8087
8088 2013-04-27 Juri Linkov <juri@jurta.org>
8089
8090 * desktop.el (desktop-auto-save-timeout): New option.
8091 (desktop-file-checksum): New variable.
8092 (desktop-save): Add optional arg `auto-save' and don't auto-save
8093 if nothing changed.
8094 (desktop-auto-save-timer): New variable.
8095 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
8096 (after-init-hook): Call `desktop-auto-save-set-timer'.
8097 Suggested by Reuben Thomas <rrt@sc3d.org> in
8098 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
8099
8100 2013-04-27 Leo Liu <sdl.web@gmail.com>
8101
8102 * progmodes/octave.el (octave-function-file-p)
8103 (octave-skip-comment-forward, octave-function-file-comment)
8104 (octave-update-function-file-comment): New functions.
8105 (octave-mode-map): Bind C-c ; to
8106 octave-update-function-file-comment.
8107 (octave-mode-menu): Add octave-update-function-file-comment.
8108 (octave-mode, inferior-octave-mode): Fix doc-string.
8109 (octave-insert-defun): Conform to Octave's coding convention.
8110 (Bug#14285)
8111
8112 * files.el (basic-save-buffer): Don't let errors in
8113 before-save-hook prevent saving buffer.
8114
8115 2013-04-20 Roland Winkler <winkler@gnu.org>
8116
8117 * faces.el (read-face-name): Use completing-read if arg multiple
8118 is nil.
8119
8120 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
8121
8122 * ls-lisp.el (ls-lisp-insert-directory): If no files are
8123 displayed, move point to after the totals line.
8124 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
8125 for the details.
8126
8127 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8128
8129 * emacs-lisp/package.el (package-autoload-ensure-default-file):
8130 Add current dir to the load-path.
8131 (package-generate-autoloads): Don't rely on
8132 autoload-ensure-default-file.
8133
8134 2013-04-26 Reuben Thomas <rrt@sc3d.org>
8135
8136 * textmodes/remember.el (remember-store-in-files): Document that
8137 the file name format is passed to `format-time-string'.
8138
8139 2013-04-26 Leo Liu <sdl.web@gmail.com>
8140
8141 * progmodes/octave.el (octave-sync-function-file-names): New function.
8142 (octave-mode): Use it in before-save-hook.
8143
8144 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8145
8146 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
8147 (bug#14274).
8148
8149 * progmodes/octave.el (octave-smie-forward-token): Properly skip
8150 \n and comment, even if it's not an implicit ; (bug#14218).
8151
8152 2013-04-26 Glenn Morris <rgm@gnu.org>
8153
8154 * subr.el (read-number): Once more use `read' rather than
8155 `string-to-number', to trap non-numeric input. (Bug#14254)
8156
8157 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
8158
8159 * emacs-lisp/syntax.el (syntax-propertize-multiline):
8160 Use `syntax-multiline' text property consistently instead of
8161 `font-lock-multiline'. (Bug#14237)
8162
8163 2013-04-26 Glenn Morris <rgm@gnu.org>
8164
8165 * emacs-lisp/shadow.el (list-load-path-shadows):
8166 No longer necessary to check for duplicate simple.el, since
8167 2012-07-07 change to init_lread to not include installation lisp
8168 directories in load-path when running uninstalled. (Bug#14270)
8169
8170 2013-04-26 Leo Liu <sdl.web@gmail.com>
8171
8172 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
8173 (octave-mode, inferior-octave-mode): Use setq-local.
8174 (octave-not-in-string-or-comment-p): Rename to
8175 octave-in-string-or-comment-p.
8176 (octave-in-comment-p, octave-in-string-p)
8177 (octave-in-string-or-comment-p): Replace defsubst with defun.
8178
8179 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
8180
8181 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
8182
8183 2013-04-25 Bastien Guerry <bzg@gnu.org>
8184
8185 * textmodes/remember.el (remember-data-directory)
8186 (remember-directory-file-name-format): Fix custom types.
8187
8188 2013-04-25 Leo Liu <sdl.web@gmail.com>
8189
8190 * progmodes/octave.el (octave-completion-at-point-function):
8191 Make use of inferior octave process.
8192 (octave-initialize-completions): Remove.
8193 (inferior-octave-completion-table): New function.
8194 (inferior-octave-completion-at-point): Use it.
8195 (octave-completion-alist): Remove.
8196
8197 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8198
8199 * progmodes/opascal.el: Use font-lock and syntax-propertize.
8200 (opascal-mode-syntax-table): New var.
8201 (opascal-literal-kind, opascal-is-literal-end)
8202 (opascal-literal-token-at): Rewrite.
8203 (opascal--literal-start-re, opascal-font-lock-keywords)
8204 (opascal--syntax-propertize): New constants.
8205 (opascal-font-lock-defaults): Adjust.
8206 (opascal-mode): Use them. Set comment-<foo> variables as well.
8207 (delphi-comment-face, opascal-comment-face, delphi-string-face)
8208 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
8209 (delphi-other-face, opascal-other-face): Remove face variables.
8210 (opascal-save-state): Remove macro.
8211 (opascal-fontifying-progress-step): Remove constant.
8212 (opascal--ignore-changes): Remove var.
8213 (opascal-set-token-property, opascal-parse-next-literal)
8214 (opascal-is-stable-literal, opascal-complete-literal)
8215 (opascal-is-literal-start, opascal-face-of)
8216 (opascal-parse-region, opascal-parse-region-until-stable)
8217 (opascal-fontify-region, opascal-after-change)
8218 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
8219 (opascal-debug-parse-region, opascal-debug-parse-window)
8220 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
8221 (opascal-debug-fontify-buffer): Remove.
8222 (opascal-debug-mode-map): Adjust accordingly.
8223
8224 2013-04-25 Leo Liu <sdl.web@gmail.com>
8225
8226 Merge octave-mod.el and octave-inf.el into octave.el with some
8227 cleanups.
8228 * progmodes/octave.el: New file renamed from octave-mod.el.
8229 * progmodes/octave-inf.el: Merged into octave.el.
8230 * progmodes/octave-mod.el: Renamed to octave.el.
8231
8232 2013-04-25 Tassilo Horn <tsdh@gnu.org>
8233
8234 * textmodes/reftex-vars.el
8235 (reftex-label-ignored-macros-and-environments): New defcustom.
8236
8237 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
8238
8239 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8240
8241 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
8242 (smie-indent-keyword): Improve the check to ensure that the next
8243 comment is really on the same line.
8244 (smie-indent-comment): Don't align with a subsequent closer (or eob).
8245
8246 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
8247 semi-colons if the line is not otherwise empty (bug#14218).
8248
8249 2013-04-25 Glenn Morris <rgm@gnu.org>
8250
8251 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
8252
8253 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8254
8255 * progmodes/opascal.el (opascal-set-token-property): Rename from
8256 opascal-set-text-properties and only set `token' (bug#14134).
8257 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
8258 (opascal-literal-text-properties): Remove.
8259 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
8260 Adjust callers.
8261
8262 2013-04-24 Reuben Thomas <rrt@sc3d.org>
8263
8264 * textmodes/remember.el (remember-handler-functions): Add an
8265 option for a new handler `remember-store-in-files'.
8266 (remember-data-directory, remember-directory-file-name-format):
8267 New options.
8268 (remember-store-in-files): New function to store remember notes
8269 as separate files within a directory.
8270
8271 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
8272
8273 * progmodes/compile.el (compilation-next-error-function):
8274 Pass "formats" to compilation-find-file (bug#11777).
8275
8276 2013-04-24 Glenn Morris <rgm@gnu.org>
8277
8278 * vc/vc-bzr.el (vc-bzr-print-log):
8279 * vc/vc-hg.el (vc-hg-print-log):
8280 * vc/vc-svn.el (vc-svn-print-log):
8281 Fix START-REVISION with LIMIT != 1. (Bug#14168)
8282
8283 * vc/vc-bzr.el (vc-bzr-print-log):
8284 * vc/vc-cvs.el (vc-cvs-print-log):
8285 * vc/vc-git.el (vc-git-print-log):
8286 * vc/vc-hg.el (vc-hg-print-log):
8287 * vc/vc-mtn.el (vc-mtn-print-log):
8288 * vc/vc-rcs.el (vc-rcs-print-log):
8289 * vc/vc-sccs.el (vc-sccs-print-log):
8290 * vc/vc-svn.el (vc-svn-print-log):
8291 * vc/vc.el (vc-print-log-internal): Doc fixes.
8292
8293 2013-04-23 Glenn Morris <rgm@gnu.org>
8294
8295 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
8296 Remove venerable code attempting to avoid substitute-command-keys.
8297
8298 2013-04-23 Tassilo Horn <tsdh@gnu.org>
8299
8300 * textmodes/reftex-vars.el (reftex-label-regexps):
8301 Call `reftex-compile-variables' after changes to this variable.
8302
8303 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
8304
8305 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
8306 Use lexical-binding.
8307 (jit-lock-force-redisplay): Use markers, check buffer's continued
8308 existence and beware narrowed buffers.
8309 (jit-lock-fontify-now): Adjust call accordingly.
8310
8311 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
8312
8313 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
8314 to avoid misleading the user.
8315
8316 2013-04-22 Leo Liu <sdl.web@gmail.com>
8317
8318 * info-look.el: Prefer latex2e.info. (Bug#14240)
8319
8320 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
8321
8322 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
8323
8324 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
8325 * net/tramp.el (tramp-call-process): ... here.
8326 (tramp-set-completion-function, tramp-parse-putty):
8327 * net/tramp-adb.el (tramp-adb-execute-adb-command):
8328 * net/tramp-gvfs.el (tramp-gvfs-send-command):
8329 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
8330 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
8331 (tramp-call-local-coding-command): Use `tramp-call-process'
8332 instead of `tramp-compat-call-process'.
8333
8334 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
8335 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
8336 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
8337 (tramp-find-inline-compress): Improve traces.
8338 (tramp-maybe-send-script): Check for Perl binary.
8339 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
8340
8341 2013-04-22 Daiki Ueno <ueno@gnu.org>
8342
8343 * epg.el (epg-context-pinentry-mode): New function.
8344 (epg-context-set-pinentry-mode): New function.
8345 (epg--start): Pass --pinentry-mode option to gpg command.
8346
8347 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
8348
8349 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
8350 `comint-dynamic-complete' is obsolete since 24.1, replaced by
8351 `completion-at-point'. (Bug#13774)
8352
8353 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
8354 default key binding for `describe-distribution' has been moved to
8355 `C-h C-o'. (Bug#13970)
8356
8357 2013-04-21 Glenn Morris <rgm@gnu.org>
8358
8359 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
8360 Add doc strings.
8361 (vc-print-log): Clarify interactive prompt.
8362
8363 2013-04-20 Glenn Morris <rgm@gnu.org>
8364
8365 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
8366 No longer include timestamp etc information.
8367
8368 2013-04-20 Roland Winkler <winkler@gnu.org>
8369
8370 * faces.el (read-face-name): Bug fix, return just one face if arg
8371 multiple is nil. (Bug#14209)
8372
8373 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8374
8375 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
8376 (remove-function): Autoload.
8377
8378 * comint.el (comint-redirect-original-filter-function): Remove.
8379 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
8380 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
8381 (vc-cvs-annotate-command):
8382 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
8383 * progmodes/prolog.el (prolog-consult-compile):
8384 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
8385 Use add/remove-function instead.
8386 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
8387 (gud-tooltip-process-output, gud-tooltip-tips):
8388 Use add/remove-function instead.
8389 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
8390 (scheme-interaction-mode, exit-scheme-interaction-mode):
8391 Use add/remove-function instead.
8392
8393 * vc/vc-dispatcher.el: Use lexical-binding.
8394 (vc--process-sentinel): Rename from vc-process-sentinel.
8395 Change last arg to be the code to run. Don't use vc-previous-sentinel
8396 and vc-sentinel-commands any more.
8397 (vc-exec-after): Allow code to be a function. Use add/remove-function.
8398 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
8399
8400 2013-04-19 Masatake YAMATO <yamato@redhat.com>
8401
8402 * progmodes/sh-script.el (sh-imenu-generic-expression):
8403 Handle function names with a single character. (Bug#14111)
8404
8405 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
8406
8407 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
8408 for subroutines defined in an eval (bug#14182).
8409
8410 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8411
8412 * bookmark.el (bookmark-completing-read): Improve handling of empty
8413 string (bug#14176).
8414
8415 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8416
8417 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
8418
8419 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
8420
8421 New faster Imenu implementation (bug#14058).
8422 * progmodes/python.el:
8423 (python-imenu-prev-index-position):
8424 (python-imenu-format-item-label-function)
8425 (python-imenu-format-parent-item-label-function)
8426 (python-imenu-format-parent-item-jump-label-function):
8427 New vars.
8428 (python-imenu-format-item-label)
8429 (python-imenu-format-parent-item-label)
8430 (python-imenu-format-parent-item-jump-label)
8431 (python-imenu--put-parent, python-imenu--build-tree)
8432 (python-imenu-create-index, python-imenu-create-flat-index)
8433 (python-util-popn): New functions.
8434 (python-mode): Set imenu-create-index-function to
8435 python-imenu-create-index.
8436
8437 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8438
8439 * winner.el (winner-active-region): Use region-active-p, activate-mark
8440 and deactivate-mark (bug#14225).
8441
8442 * simple.el (deactivate-mark): Don't inline it.
8443
8444 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
8445
8446 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
8447
8448 2013-04-18 Tassilo Horn <tsdh@gnu.org>
8449
8450 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
8451 file extensions from the archive-mode entry in order to prefer
8452 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
8453
8454 2013-04-18 Leo Liu <sdl.web@gmail.com>
8455
8456 * bindings.el (help-event-list): Add ?\?.
8457
8458 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8459
8460 * subr.el (with-wrapper-hook): Declare obsolete.
8461 * simple.el (filter-buffer-substring-function): New hook.
8462 (filter-buffer-substring): Use it.
8463 (filter-buffer-substring-functions): Mark obsolete.
8464 * minibuffer.el (completion-in-region-function): New hook.
8465 (completion-in-region): Use it.
8466 (completion-in-region-functions): Mark obsolete.
8467 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
8468 * abbrev.el (abbrev-expand-function): New hook.
8469 (expand-abbrev): Use it.
8470 (abbrev-expand-functions): Mark obsolete.
8471 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
8472 and :filter-return.
8473
8474 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8475
8476 * progmodes/python.el (python-nav--syntactically): Fix cornercases
8477 and do not care about match data.
8478
8479 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8480
8481 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
8482 completion tables when completing error conditions and
8483 `declare' arguments.
8484 (lisp-complete-symbol, field-complete): Mark as obsolete.
8485 (check-parens): Unmatched parens are user errors.
8486 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
8487
8488 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
8489
8490 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
8491 command changed buffer (ie. `flyspell-pre-buffer' is not current
8492 buffer), which prevents making decisions based on invalid value of
8493 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
8494 cause an error when `flyspell-pre-point' was nil after switching
8495 buffers.
8496 (flyspell-post-command-hook): No longer needs to change buffers when
8497 checking pre-word. While at it remove unnecessary progn.
8498
8499 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
8500
8501 * textmodes/ispell.el (ispell-add-per-file-word-list):
8502 Fix `flyspell-correct-word-before-point' error when accepting
8503 words and `coment-padding' is an integer by using
8504 `comment-normalize-vars' (Bug #14214).
8505
8506 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8507
8508 New defun movement commands.
8509 * progmodes/python.el (python-nav--syntactically)
8510 (python-nav--forward-defun, python-nav-backward-defun)
8511 (python-nav-forward-defun): New functions.
8512
8513 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8514
8515 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
8516 (python-syntax-context): Use named compiler-macro for backwards
8517 compatibility with Emacs 24.x.
8518
8519 2013-04-17 Leo Liu <sdl.web@gmail.com>
8520
8521 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
8522 octave-hide-process-buffer.
8523
8524 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8525
8526 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
8527 (bug#14216).
8528
8529 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
8530
8531 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
8532 Fix adjustment of offset when receiving incomplete responses from GDB
8533 (bug#14129).
8534
8535 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8536
8537 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
8538 python-mode-abbrev-table.
8539 (python-skeleton-define): Adjust accordingly.
8540 (python-mode-abbrev-table): New table that inherits from it so that
8541 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
8542
8543 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
8544 (abbrev-symbol): Use it.
8545 (abbrev--before-point): Use it since we already handle inheritance.
8546
8547 2013-04-16 Leo Liu <sdl.web@gmail.com>
8548
8549 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
8550 binding to info-lookup-symbol.
8551
8552 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
8553
8554 * minibuffer.el (completion--twq-all):
8555 * term/ns-win.el (ns-initialize-window-system):
8556 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
8557
8558 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8559
8560 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
8561 global bindings.
8562
8563 * doc-view.el (doc-view-start-process): Handle url-handler directories.
8564
8565 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
8566
8567 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
8568 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
8569 to nil.
8570 (ruby-end-of-defun): Remove the unused arg, change the docstring
8571 to reflect that this function is only used as the value of
8572 `end-of-defun-function'.
8573 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
8574 to reflect an earlier change that beginning/end-of-defun functions
8575 jump between methods in a class definition, as well as top-level
8576 functions.
8577
8578 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8579
8580 * minibuffer.el (minibuffer-complete): Don't just scroll
8581 a *Completions* that's been iconified.
8582 (minibuffer-force-complete): Make sure repetitions do cycle when going
8583 through completion-in-region -> minibuffer-complete.
8584
8585 2013-04-15 Alan Mackenzie <acm@muc.de>
8586
8587 Correct the placement of c-cpp-delimiters when there're #s not at
8588 col 0.
8589
8590 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
8591 place a submatch around the #.
8592 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
8593 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
8594 on the #, not BOL.
8595
8596 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8597
8598 * emacs-lisp/nadvice.el: Properly test names when adding advice.
8599 (advice--member-p): New arg `name'.
8600 (advice--add-function, advice-member-p): Use it (bug#14202).
8601
8602 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
8603
8604 Reformulate java imenu-generic-expression.
8605 The old expression contained ill formed regexps.
8606
8607 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
8608 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
8609 (cc-imenu-java-method-arg-regexp): New defconsts.
8610 (cc-imenu-java-build-type-args-regex): New defun.
8611 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
8612 handling of spaces in the regexp.
8613
8614 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8615
8616 * textmodes/ispell.el (ispell-command-loop): Remove
8617 flyspell highlight of a word when ispell accepts it (bug #14178).
8618
8619 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
8620
8621 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
8622 uses code from the previous `ange-ftp-run-real-handler'.
8623 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
8624 only in case that function exist. This is needed for proper
8625 unloading of Tramp.
8626
8627 2013-04-15 Tassilo Horn <tsdh@gnu.org>
8628
8629 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
8630
8631 * textmodes/reftex.el (reftex-compile-variables): Use it.
8632
8633 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8634
8635 * files.el (normal-mode): Only use default major-mode if no other mode
8636 was specified.
8637
8638 * emacs-lisp/trace.el (trace-values): New function.
8639
8640 * files.el: Allow : in local variables (bug#14089).
8641 (hack-local-variable-regexp): New var.
8642 (hack-local-variables-prop-line, hack-local-variables): Use it.
8643
8644 2013-04-13 Roland Winkler <winkler@gnu.org>
8645
8646 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
8647 data before it gets modified by bibtex-beginning-of-entry.
8648
8649 2013-04-13 Roland Winkler <winkler@gnu.org>
8650
8651 * textmodes/bibtex.el (bibtex-url): Doc fix.
8652
8653 2013-04-13 Roland Winkler <winkler@gnu.org>
8654
8655 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
8656 does not visit a BibTeX file, exclude it from the list of buffers
8657 returned by bibtex-initialize.
8658
8659 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
8660
8661 * window.el (split-window): Remove interactive form, since as a
8662 command this function is a special case of split-window-below.
8663 Correct doc string.
8664
8665 2013-04-12 Roland Winkler <winkler@gnu.org>
8666
8667 * faces.el (read-face-name): Do not override value of arg default.
8668 Allow single faces and strings as default values. Remove those
8669 elements from return value that are not faces.
8670 (describe-face): Simplify.
8671 (face-at-point): New optional args thing and multiple so that this
8672 function can provide the same functionality previously provided by
8673 read-face-name.
8674 (make-face-bold, make-face-unbold, make-face-italic)
8675 (make-face-unitalic, make-face-bold-italic, invert-face)
8676 (modify-face, read-face-and-attribute): Use face-at-point.
8677
8678 * cus-edit.el (customize-face, customize-face-other-window)
8679 * cus-theme.el (custom-theme-add-face)
8680 * face-remap.el (buffer-face-set)
8681 * facemenu.el (facemenu-set-face): Use face-at-point.
8682
8683 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
8684
8685 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
8686
8687 2013-04-10 Tassilo Horn <tsdh@gnu.org>
8688
8689 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
8690 off leading { and trailing } from field values.
8691
8692 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
8693
8694 * emacs-lisp/timer.el (timer--check): New function.
8695 (timer--time, timer-set-function, timer-event-handler): Use it.
8696 (timer-set-idle-time): Simplify.
8697 (timer--activate): CSE.
8698 (timer-event-handler): Give more info in error message.
8699 (internal-timer-start-idle): New function, moved from C.
8700
8701 * mpc.el (mpc-proc): Add `restart' argument.
8702 (mpc-proc-cmd): Use it.
8703 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
8704 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
8705 less often.
8706
8707 2013-04-10 Masatake YAMATO <yamato@redhat.com>
8708
8709 * progmodes/sh-script.el: Implement `sh-mode' own
8710 `add-log-current-defun-function' (bug#14112).
8711 (sh-current-defun-name): New function.
8712 (sh-mode): Use the function.
8713
8714 2013-04-09 Bastien Guerry <bzg@gnu.org>
8715
8716 * simple.el (choose-completion-string): Fix docstring (bug#14163).
8717
8718 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
8719
8720 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
8721
8722 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
8723 timer (bug#14156).
8724
8725 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
8726
8727 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
8728 declaration.
8729
8730 2013-04-07 Leo Liu <sdl.web@gmail.com>
8731
8732 * pcmpl-x.el: New file.
8733
8734 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
8735
8736 Do not set x-display-name until X connection is established.
8737 This is needed to prevent from weird situation described at
8738 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
8739 * frame.el (make-frame): Set x-display-name after call to
8740 window system initialization function, not before.
8741 * term/x-win.el (x-initialize-window-system): Add optional
8742 display argument and use it.
8743 * term/w32-win.el (w32-initialize-window-system):
8744 * term/ns-win.el (ns-initialize-window-system):
8745 * term/pc-win.el (msdos-initialize-window-system):
8746 Add compatible optional display argument.
8747
8748 2013-04-06 Eli Zaretskii <eliz@gnu.org>
8749
8750 * files.el (normal-backup-enable-predicate): On MS-Windows and
8751 MS-DOS compare truenames of temporary-file-directory and of the
8752 file, so that 8+3 aliases (usually found in $TEMP on Windows)
8753 don't fail comparison by compare-strings. Also, compare file
8754 names case-insensitively on MS-Windows and MS-DOS.
8755
8756 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8757
8758 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
8759 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
8760
8761 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
8762
8763 * whitespace.el (whitespace-color-on, whitespace-color-off):
8764 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
8765
8766 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
8767
8768 * ispell.el (ispell-set-spellchecker-params):
8769 Really set `ispell-args' for all equivs.
8770
8771 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8772
8773 * ido.el (ido-completions): Use extra elements of ido-decorations
8774 (bug#14143).
8775 (ido-decorations): Update docstring.
8776
8777 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
8778
8779 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
8780 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
8781 nil during initialization, in order not to miss changes since the
8782 file was opened. (Bug#14140)
8783
8784 2013-04-05 Leo Liu <sdl.web@gmail.com>
8785
8786 * kmacro.el (kmacro-call-macro): Fix bug#14135.
8787
8788 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
8789
8790 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
8791
8792 2013-04-04 Glenn Morris <rgm@gnu.org>
8793
8794 * electric.el (electric-pair-inhibit-predicate): Add :version.
8795
8796 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
8797
8798 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
8799 when a package is required several times (bug#14082).
8800
8801 2013-04-04 Roland Winkler <winkler@gnu.org>
8802
8803 * faces.el (read-face-name): Behave as promised by the docstring.
8804 Assume that arg default is a list of faces.
8805 (describe-face): Call read-face-name with list of default faces.
8806
8807 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8808
8809 * bookmark.el: Fix deletion of bookmarks (bug#13972).
8810 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
8811 (bookmark-bmenu-execute-deletions): Only skip first line if it's
8812 the header.
8813 (bookmark-exit-hook-internal): Save even if list is empty.
8814
8815 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
8816
8817 * emacs-lisp/package.el (package-pinned-packages): New var.
8818 (package--add-to-archive-contents): Obey it (bug#14118).
8819
8820 2013-04-03 Alan Mackenzie <acm@muc.de>
8821
8822 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
8823 Also adapt to the new values of element 7 of a parse state.
8824
8825 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
8826 parameter `not-in-delimiter'. Handle being inside comment opener.
8827 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
8828 character in case we're typing a '*' after a '/'.
8829 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
8830 instead by passing the parameter to c-state-pp-to-literal.
8831
8832 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
8833 for elt. 7 of a parse state.
8834
8835 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
8836
8837 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
8838 * international/latin1-disp.el, international/mule-util.el:
8839 * language/cyril-util.el, language/european.el, language/ind-util.el:
8840 * language/lao-util.el, language/thai.el, language/tibet-util.el:
8841 * language/tibetan.el, language/viet-util.el:
8842 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
8843
8844 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
8845
8846 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
8847 (electric-pair-post-self-insert-function): Use it.
8848 (electric-pair-default-inhibit): New function, extracted from
8849 electric-pair-post-self-insert-function.
8850
8851 2013-03-31 Roland Winkler <winkler@gnu.org>
8852
8853 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
8854
8855 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8856
8857 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
8858
8859 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
8860
8861 Un-indent after "pass" and "return" statements (Bug#13888)
8862 * progmodes/python.el (python-indent-block-enders): New var.
8863 (python-indent-calculate-indentation): Use it.
8864
8865 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
8866
8867 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
8868 defun. Defining it as defalias could introduce too eager
8869 byte-compiler optimization. (Bug#14030)
8870
8871 2013-03-30 Chong Yidong <cyd@gnu.org>
8872
8873 * iswitchb.el (iswitchb-read-buffer): Fix typo.
8874
8875 2013-03-30 Leo Liu <sdl.web@gmail.com>
8876
8877 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
8878 (kmacro-execute-from-register): Pass the keyboard macro to
8879 kmacro-call-macro or repeating won't work correctly.
8880
8881 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
8882
8883 * progmodes/subword.el: Back to using `forward-symbol'.
8884
8885 * subr.el (forward-whitespace, forward-symbol)
8886 (forward-same-syntax): Move from thingatpt.el.
8887
8888 2013-03-29 Leo Liu <sdl.web@gmail.com>
8889
8890 * kmacro.el (kmacro-to-register): New command.
8891 (kmacro-execute-from-register): New function.
8892 (kmacro-keymap): Bind to 'x'. (Bug#14071)
8893
8894 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
8895
8896 * mpc.el: Use defvar-local and setq-local.
8897 (mpc--proc-connect): Connection failures are not bugs.
8898 (mpc-mode-map): `follow-link' only applies to the buffer's content.
8899 (mpc-volume-map): Bind to the up-events.
8900
8901 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
8902
8903 * progmodes/subword.el (superword-mode): Use `forward-sexp'
8904 instead of `forward-symbol'.
8905
8906 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
8907
8908 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
8909 (edebug--recursive-edit): Use it.
8910 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
8911 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
8912
8913 2013-03-28 Leo Liu <sdl.web@gmail.com>
8914
8915 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
8916
8917 2013-03-27 Eli Zaretskii <eliz@gnu.org>
8918
8919 * facemenu.el (list-colors-callback): New defvar.
8920 (list-colors-redisplay): New function.
8921 (list-colors-display): Install list-colors-redisplay as the
8922 revert-buffer-function. (Bug#14063)
8923
8924 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
8925
8926 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
8927 and suffixes don't overlap (bug#14061).
8928
8929 * case-table.el: Use lexical-binding.
8930 (case-table-get-table): New function.
8931 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
8932
8933 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
8934
8935 * progmodes/subword.el: Add `superword-mode' to do word motion
8936 over symbol_words (parallels and leverages `subword-mode' which
8937 does word motion inside MixedCaseWords).
8938
8939 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
8940
8941 * eshell/em-unix.el: Move su and sudo to...
8942 * eshell/em-tramp.el: ...Eshell tramp module.
8943
8944 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
8945
8946 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
8947 Change return value to be a sexp. Delay `get-buffer' to after
8948 restoring the desktop (bug#13951).
8949
8950 2013-03-26 Leo Liu <sdl.web@gmail.com>
8951
8952 * register.el: Move semantic tag handling back to
8953 cedet/semantic/senator.el. (Bug#14052)
8954
8955 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
8956
8957 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
8958 into the prompt either (bug#13963).
8959
8960 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
8961
8962 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
8963 part of "(error-foo)".
8964
8965 2013-03-24 Juri Linkov <juri@jurta.org>
8966
8967 * replace.el (list-matching-lines-prefix-face): New defcustom.
8968 (occur-1): Pass `list-matching-lines-prefix-face' to the function
8969 `occur-engine' if `face-differs-from-default-p' returns t.
8970 (occur-engine): Add `,' inside backquote construct to evaluate
8971 `prefix-face'. Propertize the prefix with the `prefix-face' face.
8972 Pass `prefix-face' to the functions `occur-context-lines' and
8973 `occur-engine-add-prefix'.
8974 (occur-engine-add-prefix, occur-context-lines): Add optional arg
8975 `prefix-face' and propertize the prefix with `prefix-face'.
8976 (Bug#14017)
8977
8978 2013-03-24 Leo Liu <sdl.web@gmail.com>
8979
8980 * nxml/rng-valid.el (rng-validate-while-idle)
8981 (rng-validate-quick-while-idle): Guard against deleted buffer.
8982 (Bug#13999)
8983
8984 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
8985 is the last entry in kill-buffer-hook.
8986
8987 * files.el (kill-buffer-hook): Doc fix.
8988
8989 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
8990
8991 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
8992 Make it safe-local.
8993
8994 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
8995
8996 2013-03-23 Leo Liu <sdl.web@gmail.com>
8997
8998 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
8999 Remove.
9000
9001 * nxml/rng-valid.el (rng-validate-mode)
9002 (rng-after-change-function, rng-do-some-validation):
9003 * nxml/rng-maint.el (rng-validate-buffer):
9004 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
9005 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
9006 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
9007 (nxml-extend-after-change-region): Use with-silent-modifications.
9008
9009 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
9010 timer-idle-list.
9011
9012 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
9013 (rng-next-error-1, rng-previous-error-1): Do not let-bind
9014 timer-idle-list. (Bug#13999)
9015
9016 2013-03-23 Juri Linkov <juri@jurta.org>
9017
9018 * info.el (info-index-match): New face.
9019 (Info-index, Info-apropos-matches): Add a nested subgroup to the
9020 main pattern and add text properties with the new face to matches
9021 in index entries relative to the beginning of the index entry.
9022 (Bug#14015)
9023
9024 2013-03-21 Eric Ludlam <zappo@gnu.org>
9025
9026 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
9027 Inhibit read only while inserting objects.
9028
9029 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
9030
9031 * progmodes/cfengine.el: Update docs to mention
9032 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
9033 symbol motion. Remove "_" from the word syntax.
9034
9035 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
9036
9037 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
9038 syntax for both `cfengine2-mode' and `cfengine3-mode'.
9039
9040 2013-03-20 Juri Linkov <juri@jurta.org>
9041
9042 * info.el (Info-next-reference-or-link)
9043 (Info-prev-reference-or-link): New functions.
9044 (Info-next-reference, Info-prev-reference): Use them.
9045 (Info-try-follow-nearest-node): Handle footnote navigation.
9046 (Info-fontify-node): Fontify footnotes. (Bug#13989)
9047
9048 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
9049
9050 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
9051 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
9052
9053 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
9054
9055 Suppress unnecessary non-ASCII chatter during build process.
9056 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
9057 (batch-skkdic-convert): Suppress most of the chatter.
9058 It's not needed so much now that machines are faster,
9059 and its non-ASCII component was confusing; see Dmitry Gutov in
9060 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
9061
9062 2013-03-20 Leo Liu <sdl.web@gmail.com>
9063
9064 * ido.el (ido-chop): Fix bug#10994.
9065
9066 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
9067
9068 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
9069 Remove vars.
9070 (whitespace-color-on, whitespace-color-off):
9071 Use `font-lock-fontify-buffer' (Bug#13817).
9072
9073 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
9074
9075 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
9076 remapping in mode-line.
9077 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
9078
9079 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
9080
9081 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
9082 value for `whitespace-line' face (Bug#13875).
9083 (whitespace-font-lock-keywords): Change description.
9084 (whitespace-color-on): Don't save `font-lock-keywords' value, save
9085 the constructed keywords instead.
9086 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
9087
9088 2013-03-19 Leo Liu <sdl.web@gmail.com>
9089
9090 * progmodes/compile.el (compilation-display-error): New command.
9091 (compilation-mode-map, compilation-minor-mode-map): Bind it to
9092 C-o. (Bug#13992)
9093
9094 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
9095
9096 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
9097
9098 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
9099
9100 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
9101
9102 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
9103
9104 * net/tramp-compat.el (tramp-compat-user-error): New defun.
9105
9106 * net/tramp-adb.el (tramp-adb-handle-shell-command):
9107 * net/tramp-gvfs.el (top):
9108 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
9109 (tramp-handle-shell-command): Use it.
9110 (tramp-dissect-file-name): Raise an error when hostname is a
9111 method name, and neither method nor user is specified.
9112
9113 * net/trampver.el: Update release number.
9114
9115 2013-03-18 Leo Liu <sdl.web@gmail.com>
9116
9117 Make sure eldoc can be turned off properly.
9118 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
9119 eldoc-mode.
9120 (eldoc-display-message-p): Revert last change.
9121 (eldoc-display-message-no-interference-p)
9122 (eldoc-print-current-symbol-info): Tweak.
9123
9124 2013-03-18 Tassilo Horn <tsdh@gnu.org>
9125
9126 * doc-view.el (doc-view-new-window-function): Check the new window
9127 overlay's display property instead the char property of the
9128 buffer's first char. Use `with-selected-window' instead of
9129 `save-window-excursion' with `select-window'.
9130 (doc-view-document->bitmap): Check the current doc-view overlay's
9131 display property instead the char property of the buffer's first char.
9132
9133 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
9134
9135 Automate the build of ja-dic.el (Bug#13984).
9136 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
9137 from the input, rather than assume that it's been done for us by the
9138 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
9139 the current date into a ja-dic.el comment, as that complicates
9140 regression testing.
9141
9142 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
9143
9144 * whitespace.el: Fix double evaluation.
9145 (whitespace-space, whitespace-hspace, whitespace-tab)
9146 (whitespace-newline, whitespace-trailing, whitespace-line)
9147 (whitespace-space-before-tab, whitespace-indentation)
9148 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
9149 obsolete defvars.
9150 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
9151 (whitespace-color-on): Use a single font-lock-add-keywords call.
9152 Fix double-evaluation of face variables.
9153
9154 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
9155
9156 * net/tramp-adb.el (tramp-adb-parse-device-names):
9157 Use `start-process' instead of `call-process'. Otherwise, the
9158 function might be blocked under MS Windows. (Bug#13299)
9159
9160 2013-03-17 Leo Liu <sdl.web@gmail.com>
9161
9162 Extend eldoc to display info in the mode-line. (Bug#13978)
9163 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
9164 (eldoc-mode-line-string): New variable.
9165 (eldoc-minibuffer-message): New function.
9166 (eldoc-message-function): New variable.
9167 (eldoc-message): Use it.
9168 (eldoc-display-message-p)
9169 (eldoc-display-message-no-interference-p):
9170 Support eldoc-post-insert-mode.
9171
9172 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
9173 (eval-expression): Run it.
9174
9175 2013-03-17 Roland Winkler <winkler@gnu.org>
9176
9177 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
9178 strings in the list of return values.
9179
9180 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
9181
9182 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
9183 radix before checking for HMS forms.
9184
9185 2013-03-16 Leo Liu <sdl.web@gmail.com>
9186
9187 * progmodes/scheme.el: Add indentation and font-locking for λ.
9188 (Bug#13975)
9189
9190 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
9191
9192 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
9193 token before point (bug#13942).
9194
9195 2013-03-16 Leo Liu <sdl.web@gmail.com>
9196
9197 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
9198
9199 2013-03-16 Eli Zaretskii <eliz@gnu.org>
9200
9201 * startup.el (command-line-normalize-file-name): Fix handling of
9202 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
9203 <xfq.free@gmail.com> in
9204 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
9205
9206 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
9207
9208 Sync with Tramp 2.2.7.
9209
9210 * net/trampver.el: Update release number.
9211
9212 2013-03-14 Tassilo Horn <tsdh@gnu.org>
9213
9214 * doc-view.el: Fix bug#13887.
9215 (doc-view-insert-image): Don't modify overlay associated to
9216 non-live windows, and implement horizontal centering of image in
9217 case it's smaller than the window.
9218 (doc-view-new-window-function): Force redisplay of new windows on
9219 doc-view buffers.
9220
9221 2013-03-13 Karl Fogel <kfogel@red-bean.com>
9222
9223 * saveplace.el (save-place-alist-to-file): Don't sort
9224 `save-place-alist', just pretty-print it (bug#13882).
9225
9226 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
9227
9228 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
9229 Check whether `default-file-name-coding-system' is bound.
9230 It isn't in XEmacs.
9231
9232 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
9233
9234 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
9235 backquotes for `obsolete' (bug#13929).
9236
9237 * international/mule.el (find-auto-coding): Include file name in
9238 obsolescence warning (bug#13922).
9239
9240 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
9241
9242 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
9243 for CFEngine 3-specific indentation.
9244 (cfengine3-indent-line): Use it. Fix up category regex.
9245 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
9246
9247 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9248
9249 * type-break.el (type-break-file-name):
9250 * textmodes/remember.el (remember-data-file):
9251 * strokes.el (strokes-file):
9252 * shadowfile.el (shadow-initialize):
9253 * saveplace.el (save-place-file):
9254 * ps-bdf.el (bdf-cache-file):
9255 * progmodes/idlwave.el (idlwave-config-directory):
9256 * net/quickurl.el (quickurl-url-file):
9257 * international/kkc.el (kkc-init-file-name):
9258 * ido.el (ido-save-directory-list-file):
9259 * emulation/viper.el (viper-custom-file-name):
9260 * emulation/vip.el (vip-startup-file):
9261 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
9262 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
9263
9264 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
9265
9266 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
9267 * language/thai-word.el: Switch to UTF-8.
9268
9269 See ChangeLog.16 for earlier changes.
9270
9271 ;; Local Variables:
9272 ;; coding: utf-8
9273 ;; End:
9274
9275 Copyright (C) 2011-2013 Free Software Foundation, Inc.
9276
9277 This file is part of GNU Emacs.
9278
9279 GNU Emacs is free software: you can redistribute it and/or modify
9280 it under the terms of the GNU General Public License as published by
9281 the Free Software Foundation, either version 3 of the License, or
9282 (at your option) any later version.
9283
9284 GNU Emacs is distributed in the hope that it will be useful,
9285 but WITHOUT ANY WARRANTY; without even the implied warranty of
9286 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9287 GNU General Public License for more details.
9288
9289 You should have received a copy of the GNU General Public License
9290 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.