Fix Bug#17739.
[bpt/emacs.git] / lisp / ChangeLog
1 2014-06-28 K. Handa <handa@gnu.org>
2
3 Fix Bug#17739.
4
5 * composite.el: Setup composition-function-table for dotted circle.
6 (compose-gstring-for-dotted-circle): New function.
7
8 * international/characters.el: Add category "^" to all
9 non-spacing characters.
10
11 2014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12
13 * ses.el: Miscellaneous cleanups; use lexical-binding; avoid
14 add-to-list.
15 (ses-localvars): Remove ses--local-printer-list, unused.
16 (ses--metaprogramming): New macro. Use it to defvar variables.
17 (ses-set-localvars): Simplify.
18 (ses--locprn, ses-cell): Use defstruct. Change ses-cell's
19 property-list into an alist.
20 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
21 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number):
22 Remove; use defstruct accessors/setters instead.
23 (ses-cell-formula-aset, ses-cell-printer-aset)
24 (ses-cell-references-aset): Remove, use setf instead.
25 (ses--alist-get): New function.
26 (ses-cell-property): Rename from ses-cell-property-get and rewrite.
27 Use an alist instead of a plist and don't do move-to-front since the
28 list is always short.
29 (ses-cell-property-get-fun, ses-cell-property-delq-fun)
30 (ses-cell-property-set-fun, ses-cell-property-set)
31 (ses-cell-property-pop-fun, ses-cell-property-get-handle)
32 (ses-cell-property-handle-car, ses-cell-property-handle-setcar): Remove.
33 (ses--letref): New macro.
34 (ses-cell-property-pop): Rewrite.
35 (ses--cell): Rename from ses-cell and make it into a function.
36 Make `formula' fallback on `value' if nil.
37 (ses--local-printer): Rename from ses-local-printer and make it into
38 a function.
39 (ses-set-cell): Turn it into a macro so finding the accessor from the
40 field name is done at compile time.
41 (ses-repair-cell-reference-all): Test presence of `sym' rather than
42 `ref' before adding `sym' to :ses-repair-reference.
43 (ses-calculate-cell): Use ses--letref rather than
44 ses-cell-property-get-handle.
45 (ses-write-cells): Use a single prin1-to-string.
46 (ses-setter-with-undo): New function.
47 (ses-aset-with-undo, ses-set-with-undo): Rewrite using it.
48 (ses-unset-with-undo): Remove.
49 (ses-load): Prefer apply' over `eval'.
50 (ses-read-printer, ses-set-column-width): Use standard "(default
51 foo)" format.
52
53 2014-06-15 Glenn Morris <rgm@gnu.org>
54
55 * Makefile.in (leim, semantic): Use `make -C' rather than `cd && make'.
56
57 * progmodes/cc-langs.el: Require cl-lib. (Bug#17463)
58 Replace delete-duplicates and mapcan by cl- versions throughout.
59 And cl-macroexpand-all by macroexpand-all.
60 (delete-duplicates, mapcan, cl-macroexpand-all): No need to declare.
61
62 2014-06-15 Eli Zaretskii <eliz@gnu.org>
63
64 * subr.el (posn-col-row): Doc fix. (Bug#17768)
65
66 2014-06-15 Juri Linkov <juri@jurta.org>
67
68 * bindings.el: Put `ascii-character' property on keypad keys
69 mapped to characters. (Bug#17759)
70
71 2014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
72
73 * emacs-lisp/smie.el (smie-next-sexp): Fix up "other-end" info when
74 bumping forward into a closing paren (bug#17761).
75
76 * term/xterm.el (xterm--version-handler): Work around for OSX
77 Terminal.app (bug#17607).
78
79 2014-06-14 Ron Schnell <ronnie@driver-aces.com>
80
81 * play/dunnet.el If a lamp is in the room, you won't be eaten by a grue.
82
83 2014-06-13 Glenn Morris <rgm@gnu.org>
84
85 * Makefile.in ($(lisp)/cus-load.el, $(lisp)/finder-inf.el)
86 (autoloads, $(lisp)/subdirs.el, compile-main, leim, semantic, compile)
87 (compile-always): GNU make automatically passes
88 command-line arguments to sub-makes.
89
90 * calendar/calendar.el (calendar-generate-window):
91 Remove pointless call to font-lock-fontify-buffer.
92
93 2014-06-13 Matthias Meulien <orontee@gmail.com>
94
95 * simple.el (completion-list-mode-map): Navigate with tab and backtab
96 (bug#17767).
97
98 2014-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
99
100 * simple.el (set-mark-command): Simplify a bit.
101
102 2014-06-12 Nicolas Richard <theonewiththeevillook@yahoo.fr>
103
104 * help.el (help--key-binding-keymap): New function.
105 (help--binding-locus): New function.
106 (describe-key): Mention the keymap in which the binding was
107 found. (bug#13948)
108
109 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
110
111 * hippie-exp.el (he--all-buffers): New function.
112 (try-expand-line-all-buffers, try-expand-list-all-buffers)
113 (try-expand-dabbrev-all-buffers): Use it.
114
115 2014-06-12 Emilio C. Lopes <eclig@gmx.net>
116
117 * hippie-exp.el (try-expand-line-all-buffers)
118 (try-expand-list-all-buffers, try-expand-dabbrev-all-buffers):
119 Read hippie-expand-only-buffers and hippie-expand-ignore-buffers in the
120 original buffer, in case they're buffer-local.
121
122 2014-06-12 Vincent Belaïche <vincentb1@users.sourceforge.net>
123
124 * ses.el (ses-initial-global-parameters-re): New defconst, a
125 specific regexp is needed now that ses.el can handle both
126 file-format 2 --- ie. no local printers --- and 3 --- i.e. may have
127 local printers.
128 (ses-localvars): Add local variables needed for local printer handling.
129 (ses-set-localvars): Handle hashmap initialisation.
130 (ses-paramlines-plist): Add param-line for number of local printers.
131 (ses-paramfmt-plist): New defconst, needed for code factorization
132 between functions `ses-set-parameter' and
133 `ses-file-format-extend-paramter-list'
134 (ses-make-local-printer-info): New defsubst.
135 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
136 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number)
137 (ses-cell-printer-aset): New defmacro.
138 (ses-local-printer-compile): New defun.
139 (ses-local-printer): New defmacro.
140 (ses-printer-validate, ses-call-printer): Add support for local
141 printer functions.
142 (ses-file-format-extend-paramter-list): New defun.
143 (ses-set-parameter): Use const `ses-paramfmt-plist' for code
144 factorization.
145 (ses-load): Add support for local printer functions.
146 (ses-read-printer): Update docstring and add support for local printer
147 functions.
148 (ses-refresh-local-printer, ses-define-local-printer): New defun.
149 (ses-safe-printer): Add support for local printer functions.
150
151 2014-06-12 Ivan Andrus <darthandrus@gmail.com>
152
153 * ffap.el (ffap-lax-url): New var (bug#17723).
154 (ffap-url-at-point): Use it.
155 (ffap-file-at-point): Avoid returning just "/".
156
157 2014-06-12 Matthias Meulien <orontee@gmail.com>
158
159 * progmodes/python.el (import skeleton): New skeleton (bug#17672).
160 (python-mode-map): Bind it.
161
162 * progmodes/python.el (class skeleton): Don't erase last char of class
163 name (bug#17683).
164
165 2014-06-12 Cameron Desautels <camdez@gmail.com> (tiny change)
166
167 * help.el (where-is): Use `default' arg of completing-read (bug#17705).
168
169 2014-06-12 Kevin Ryde <user42_kevin@yahoo.com.au>
170
171 * files.el (auto-mode-alist): Map .ad files to xdefaults-mode
172 (bug#17745).
173
174 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
175
176 * international/mule-cmds.el: Use lexical-binding.
177 (ucs-names): Simplify.
178
179 2014-05-18 Eric Hanchrow <eric.hanchrow@gmail.com>
180
181 * progmodes/python.el (run-python): Use read-shell-command.
182
183 2014-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
184
185 * rect.el: Make it possible to move bounds past EOL or into TABs.
186 (operate-on-rectangle): Use apply-on-rectangle.
187 (rectangle--mark-crutches): New var.
188 (rectangle--pos-cols, rectangle--col-pos, rectangle--point-col)
189 (rectangle--crutches, rectangle--reset-crutches): New functions.
190 (apply-on-rectangle): Obey crutches. Avoid setq.
191 Fix missing final iteration if end is at EOB&BOL.
192 (rectangle-mark-mode-map): Add remap bindings for
193 exchange-point-and-mark and char/line movements.
194 (rectangle--*-char): New function.
195 (rectangle-exchange-point-and-mark, rectangle-right-char)
196 (rectangle-left-char, rectangle-forward-char)
197 (rectangle-backward-char, rectangle-next-line)
198 (rectangle-previous-line): New commands.
199 (rectangle--place-cursor): New function.
200 (rectangle--highlight-for-redisplay): Use it. Use apply-on-rectangle.
201
202 2014-06-08 Glenn Morris <rgm@gnu.org>
203
204 * startup.el (initial-buffer-choice): Doc fix.
205 Reset :version (adding an option does not merit a :version bump).
206
207 * bookmark.el (bookmark-load):
208 * uniquify.el (uniquify-buffer-name-style): Doc fixes.
209
210 2014-06-08 Juri Linkov <juri@jurta.org>
211
212 * desktop.el: Activate auto-saving on window configuration changes.
213 (desktop-save-mode, desktop-auto-save-timeout): Add/remove
214 `desktop-auto-save-set-timer' to/from
215 `window-configuration-change-hook'.
216 (desktop-auto-save-set-timer): Change REPEAT arg of
217 `run-with-idle-timer' from t to nil.
218 http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00147.html
219
220 2014-06-08 Santiago Payà i Miralta <santiagopim@gmail.com>
221
222 * vc/vc-hg.el (vc-hg-working-revision): Use "hg parent" and
223 vc-hg-command (bug#17570).
224
225 2014-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
226
227 * international/mule-cmds.el (ucs-names): Add special entry for BEL
228 (bug#17702).
229
230 2014-06-08 Glenn Morris <rgm@gnu.org>
231
232 * startup.el (window-setup-hook): Doc fix.
233
234 * emacs-lisp/package.el (package-check-signature)
235 (package-unsigned-archives): Doc fixes.
236
237 2014-06-08 Martin Rudalics <rudalics@gmx.at>
238
239 * window.el (display-buffer-use-some-window): Don't make window
240 used smaller than it was before (Bug#17671).
241
242 2014-06-08 Eli Zaretskii <eliz@gnu.org>
243
244 * menu-bar.el (menu-bar-open): Fix last change: use the PC
245 'redisplay' instead of '(sit-for 0)'.
246
247 2014-06-08 Michael Albinus <michael.albinus@gmx.de>
248
249 * net/tramp.el (tramp-ssh-controlmaster-options):
250 Improve search regexp. (Bug#17653)
251
252 2014-06-08 Glenn Morris <rgm@gnu.org>
253
254 * emacs-lisp/package.el (package-pinned-packages): Doc fix.
255
256 2014-06-08 Eli Zaretskii <eliz@gnu.org>
257
258 * menu-bar.el (menu-bar-open): Fix invocation via M-x.
259
260 2014-06-06 Santiago Payà i Miralta <santiagopim@gmail.com>
261
262 * vc/vc-hg.el (vc-hg-create-tag, vc-hg-retrieve-tag): New functions
263 (bug#17586).
264
265 * vc/vc-hg.el (vc-hg-log-graph): New var.
266 (vc-hg-print-log): Use it.
267 (vc-hg-root-log-format): Include branch name and bookmarks; ignore
268 graph output (bug#17515).
269
270 2014-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
271
272 * mouse.el (mouse-posn-property): Ignore buffer position info when the
273 even happened elsewhere.
274
275 2014-06-06 Mario Lang <mlang@delysid.org>
276
277 * emacs-lisp/tabulated-list.el (tabulated-list-print): Only call
278 `recenter' if `current-buffer' is equal to `window-buffer'.
279
280 2014-06-05 Leo Liu <sdl.web@gmail.com>
281
282 * emacs-lisp/cl-macs.el (cl-macrolet): Avoid excessive progn's.
283
284 2014-06-05 Michal Nazarewicz <mina86@mina86.com>
285
286 * textmodes/tildify.el (tildify-foreach-region-outside-env):
287 New function which calls a callback on portions of the buffer that are
288 outside of ignored environments.
289 (tildify-build-regexp): Remove function since it is now
290 incorporated in `tildify-foreach-region-outside-env' where it is
291 optimised and simplified by the use of `mapconcat'.
292 (tildify-tildify): Return number of substitutions made so that…
293 (tildify-count): …can be removed.
294 (tildify-find-env): Accept a new PAIRS argument which was
295 previously looked up in `tildify-ignored-environments-alist' each
296 time the function was called. With this change, the lookup is
297 performed only once in `tildify-foreach-region-outside-env'.
298 (tildify-region): Greatly simplify the function since now most of
299 the work is done by `tildify-foreach-region-outside-env'.
300 (tildify-mode-alist): Simplify slightly by avoiding if and setq
301 and instead using or.
302
303 * textmodes/tildify.el (tildify-ignored-environments-alist):
304 Optimise environments regexes
305
306 Each time beginning of an environment to ignore is found,
307 `tildify-find-env' needs to identify regexp for the ending
308 of the environment. This is done by trying all the opening
309 regexes on matched text in a loop, so to speed that up, this
310 loop should have fewer things to match, which can be done by
311 using alternatives in the opening regexes.
312
313 Coincidentally, this should make matching of the opening
314 regexp faster as well thanks to the use of `regexp-opt' and
315 having common prefix pulled from many regexes.
316
317 * textmodes/tildify.el (tildify-string-alist)
318 (tildify-ignored-environments-alist): Add `nxml-mode' to the list
319 of supported modes since `xml-mode' is no longer a thing but just
320 an alias to the former. Also include comments and insides of tags
321 in `tildify-ignored-environments-alist' for XML modes. Finally,
322 since XML does not define “&nbsp;”[1], use a numeric reference for
323 a no-break space (namely “&#160;”)
324
325 [1] XML specification defines only a handful of predefined entities.
326 The list is at <http://www.w3.org/TR/REC-xml/#sec-predefined-ent>
327 and includes only &lt;, &gt;, &amp;, &apos; and &quot; (meaning <,
328 >, &, ' and " respectively). This is in contrast to HTML and even
329 XHTML which defined a whole bunch of entities including “&nbsp;”.
330
331 * textmodes/tildify.el (tildify-pattern-alist)
332 (tildify-string-alist, tildify-ignored-environments-alist):
333 Improve defcustom's types by adding more tags explaining what each
334 value means and replace “sexp” used in
335 `tildify-ignored-environments-alist' with a full type declaration.
336
337 * textmodes/tildify.el (tildify-find-env): Fix matched group
338 indexes in end-regex building
339
340 When looking for a start of an ignore-environment, the regex is built
341 by concatenating regexes of all the environments configured in
342 `tildify-ignored-environments-alist'. So for example, the following
343 list could be used to match TeX's \verb and \verb* commands:
344
345 (("\\\\verb\\(.\\)" . (1))
346 ("\\\\verb\\*\\(.\\)" . (1)))
347
348 This would result in the following regex being used to find the start
349 of any of the variants of the \verb command:
350
351 \\\\verb\\(.\\)\\|\\\\verb\\*\\(.\\)
352
353 But now, if “\\\\verb\\*\\(.\\)” matches, the first capture group
354 won't match anything, and thus (match-string 1) will be nil, which
355 will cause building of the end-matching regex to fail.
356
357 Fix this by using capture groups from the time when the opening
358 regexes are matched individually.
359
360 * textmodes/tildify.el (tildify-find-env): Fix end-regex building
361 in `tildify-find-env'
362
363 The `tildify-ignored-environments-alist' allows the end-regex to
364 be provided not as a static string but mix of strings and indexes
365 of groups matched the begin-regex. For example, the “\verb!…!”
366 TeX-command (where “!” is an arbitrary character) is handled
367 using:
368
369 ("\\\\verb\\*?\\(.\\)" . (1))
370
371 In the same way, the following should be supported as well:
372
373 ("open-\\(.\\)" . ("end-" 1))
374
375 However the tildify-find-env function fails at
376
377 (concat result
378 (if (stringp (setq aux (car expression)))
379 expression ; BUG: expression is a list
380 (regexp-quote (match-string aux))))
381
382 where the string part is handled incorrectly.
383
384 The most trivial fix would be to replace `expression' in the
385 true-part of the if-statement with `aux', but instead, this commit
386 optimises `tildify-find-env' by changing it to use `mapconcat'
387 rather than open-coded while-loop.
388
389 2014-06-05 Mario Lang <mlang@delysid.org>
390
391 * woman.el (woman-mapcan): Remove.
392 (woman-parse-colon-path): Use cl-mapcan instead.
393
394 2014-06-03 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
395
396 * register.el: Add link to Emacs manual in Commentary.
397
398 2014-06-02 Sam Steingold <sds@gnu.org>
399
400 * menu-bar.el (lookup-key-ignore-too-long): Extract from...
401 (popup-menu): ...here.
402 (menu-bar-open): Use it to avoid an error when `lookup-key'
403 returns a number.
404
405 2014-06-02 Michael Albinus <michael.albinus@gmx.de>
406
407 * net/tramp.el (tramp-call-process): Add traces.
408 (tramp-handle-unhandled-file-name-directory): Return "/".
409
410 2014-06-02 Wilson Snyder <wsnyder@wsnyder.org>
411
412 Sync with upstream verilog-mode revision 3cd8144.
413 * progmodes/verilog-mode.el (verilog-mode-version): Bump.
414 (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
415 (verilog-type-font-keywords): Add nor.
416 (verilog-batch-execute-func): Force reading of Local Variables.
417 Fix printing "no changes to be saved" with verilog-batch.
418 (verilog-auto-arg-ports): Doc fix.
419 Add verilog-auto-arg-format to support newlines in AUTOARG.
420 (verilog-auto-arg): Doc fix.
421
422 2014-06-02 Glenn Morris <rgm@gnu.org>
423
424 * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
425 * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
426 * emulation/ws-mode.el: Move to obsolete/.
427 * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
428
429 2014-06-02 Eli Zaretskii <eliz@gnu.org>
430
431 * simple.el (keyboard-quit): Force update of mode lines, to remove
432 the "Def" indicator, if we were defining a macro. (Bug#17615)
433
434 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
435
436 * minibuffer.el (minibuffer-force-complete-and-exit):
437 Obey minibuffer-default (bug#17545).
438
439 * progmodes/js.el (js-indent-line): Don't mix columns and chars
440 (bug#17619).
441
442 * subr.el (set-transient-map): Don't wait for some "nested"
443 transient-map to finish if we're only supposed to be active for
444 the next command (bug#17642).
445
446 2014-06-02 Leo Liu <sdl.web@gmail.com>
447
448 * emacs-lisp/gv.el (window-buffer, window-display-table)
449 (window-dedicated-p, window-hscroll, window-point, window-start):
450 Fix gv-expander. (Bug#17630)
451
452 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
453
454 * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
455 clicks (bug#17633).
456
457 * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
458 for the single comma, since ", " is *very* common in normal French text
459 (bug#17643).
460
461 2014-06-02 Glenn Morris <rgm@gnu.org>
462
463 * emacs-lisp/package.el (package-check-signature)
464 (package-unsigned-archives): Fix :version.
465
466 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
467
468 * subr.el (sit-for): Don't run input-methods (bug#15614).
469
470 2014-06-02 Glenn Morris <rgm@gnu.org>
471
472 * cus-start.el: Fix some :version numbers.
473
474 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
475
476 * simple.el (deactivate-mark): Set mark-active to nil even if
477 deactivation is done via setting transient-mark-mode to nil,
478 since one is buffer-local and the other is global.
479
480 * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
481 there can't be more than 2 arguments (bug#17584).
482
483 2014-06-02 Glenn Morris <rgm@gnu.org>
484
485 * simple.el (filter-buffer-substring-functions)
486 (filter-buffer-substring-function, buffer-substring-filters)
487 (filter-buffer-substring, buffer-substring--filter): Doc fixes.
488
489 * minibuffer.el (completion-in-region-functions, completion-in-region)
490 (completion--in-region): Doc fixes.
491
492 * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
493 (expand-abbrev, abbrev--default-expand): Doc fixes.
494
495 2014-06-02 Paul Eggert <eggert@cs.ucla.edu>
496
497 Include sources used to create macuvs.h.
498 * international/README: Refer to the Unicode Terms of Use rather
499 than copying it bodily here, as that simplifies maintenance.
500
501 2014-06-01 Glenn Morris <rgm@gnu.org>
502
503 * loadup.el (load-prefer-newer): Set non-nil when dumping. (Bug#17629)
504
505 2014-05-31 Glenn Morris <rgm@gnu.org>
506
507 * files.el (locate-dominating-file): Expand file argument. (Bug#17641)
508
509 2014-05-30 Glenn Morris <rgm@gnu.org>
510
511 * loadup.el: Treat `command-line-args' more flexibly.
512
513 2014-05-30 Alan Mackenzie <acm@muc.de>
514
515 Guard (looking-at "\\s!") from XEmacs.
516 * progmodes/cc-engine.el (c-state-pp-to-literal): add guard form.
517
518 2014-05-30 Ken Olum <kdo@cosmos.phy.tufts.edu> (tiny change)
519
520 * mail/rmail.el (rmail-delete-forward, rmail-delete-backward):
521 The argument COUNT is now optional, to be more backward-compatible.
522 Doc fix. (Bug#17560)
523
524 2014-05-29 Reuben Thomas <rrt@sc3d.org>
525
526 * whitespace.el (whitespace-report-region):
527 Simplify documentation.
528 (whitespace-report-region): Allow report-if-bogus to take the
529 value `never', for non-interactive use.
530 (whitespace-report): Refer to whitespace-report-region's
531 documentation.
532
533 2014-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
534
535 * whitespace.el: Use font-lock-flush. Minimize refontifications.
536 Side benefit: it works without jit-lock.
537 (whitespace-point--used): New buffer-local var.
538 (whitespace-color-on): Initialize it and flush it. Use font-lock-flush.
539 (whitespace-color-off): Use font-lock-flush.
540 (whitespace-point--used, whitespace-point--flush-used): New functions.
541 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
542 (whitespace-empty-at-eob-regexp): Use them.
543 (whitespace-post-command-hook): Rewrite.
544
545 * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
546 (font-lock-fontify-buffer): Mark interactive-only.
547 (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
548 Make buffer-local.
549 (font-lock-specified-p): Remove redundant boundp check.
550 (font-lock-flush-function, font-lock-ensure-function): New vars.
551 (font-lock-turn-on-thing-lock): Set them.
552 (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
553 (font-lock-after-change-function): Make `old-len' optional.
554 (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
555 Call font-lock-flush, just in case.
556 * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
557 recent Emacsen.
558 * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
559 (vera-mode-map, vera-mode-menu): Remove bindings to it.
560 * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
561 and with-syntax-table.
562 * textmodes/conf-mode.el (conf-quote-normal):
563 * progmodes/sh-script.el (sh-set-shell):
564 * progmodes/prog-mode.el (prettify-symbols-mode):
565 * progmodes/f90.el (f90-font-lock-n):
566 * progmodes/cwarn.el (cwarn-mode):
567 * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
568 * progmodes/compile.el (compilation-setup, compilation--unsetup):
569 * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
570 (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
571 * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
572 font-lock-fontify-buffer-function and
573 font-lock-unfontify-buffer-function.
574 (rmail-unfontify-buffer-function, rmail-fontify-message):
575 Use with-silent-modifications.
576 * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
577 and font-lock-ensure.
578 * bs.el (bs-show-in-buffer): Use font-lock-ensure.
579
580 2014-05-28 Thien-Thi Nguyen <ttn@gnu.org>
581
582 * emacs-lisp/package.el (package-generate-autoloads):
583 Inhibit backup files.
584
585 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
586
587 * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
588 (bug#17608).
589
590 2014-05-21 Michal Nazarewicz <mina86@mina86.com>
591
592 * textmodes/tildify.el (tildify-buffer, tildify-region):
593 Add dont-ask option.
594
595 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
596
597 * subr.el (zerop): Move from C. Add compiler-macro (bug#17475).
598 * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
599
600 * subr.el (internal--funcall-interactively): New.
601 (internal--call-interactively): Remove.
602 (called-interactively-p): Detect funcall-interactively instead of
603 call-interactively.
604 * simple.el (repeat-complex-command): Use funcall-interactively.
605 (repeat-complex-command--called-interactively-skip): Remove.
606
607 2014-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
608
609 * register.el (register-read-with-preview): Don't burp on
610 frame switches (e.g. due to the frame we just popped).
611
612 * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
613 (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
614
615 2014-05-26 Andreas Schwab <schwab@linux-m68k.org>
616
617 * cus-face.el (custom-face-attributes): Add :distant-foreground.
618
619 2014-05-26 Martin Rudalics <rudalics@gmx.at>
620
621 * window.el (window--dump-frame): Remove interactive specification.
622
623 2014-05-26 Glenn Morris <rgm@gnu.org>
624
625 * hippie-exp.el (he-line-search-regexp):
626 Handle comint-prompt-regexp containing subgroups. (Bug#17529)
627
628 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
629
630 * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
631 to avoid errors when trying to create or visit a file foo.todo
632 located outside to todo-directory, and to allow having such files
633 without them being tied to Todo mode (bug#17482).
634 (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
635 (todo-archive-done-item, todo-find-filtered-items-file)
636 (todo-filter-items, todo-find-item, todo-diary-goto-entry)
637 (todo-category-completions, todo-read-category): When visiting a
638 Todo file, make sure we're in the right mode and the buffer local
639 variables are set.
640 (todo-make-categories-list, todo-reset-nondiary-marker)
641 (todo-reset-done-string, todo-reset-comment-string):
642 After processing all Todo files, kill the buffers of those files that
643 weren't being visited before the processing.
644 (todo-display-as-todo-file, todo-add-to-buffer-list)
645 (todo-visit-files-commands): Comment out.
646 (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
647 (auto-mode-alist): Remove add-to-list calls making Todo file
648 extensions unrestrictedly tied to Todo modes.
649
650 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
651
652 * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
653 (advice-function-member-p): Tell it to check both names and functions
654 (bug#17531).
655 (advice--add-function): Adjust call accordingly.
656
657 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
658
659 * calendar/todo-mode.el: Miscellaneous bug fixes.
660 (todo-delete-file): When deleting an archive but not its todo
661 file, make sure to update the todo file's category sexp.
662 (todo-move-category): Keep the moved category's name unless the
663 file moved to already has a category with that name. If the
664 numerically last category of the source file was moved, make the
665 first category current to avoid selecting a nonexisting category.
666 (todo-merge-category): Fix implementation to make merging to a
667 category in another file work as documented. Eliminate now
668 insufficient and unnecessary renaming of archive category, correct
669 document string accordingly, and clarify it. If the numerically
670 last category of the source file was merged, make the first
671 category current to avoid selecting a nonexisting category.
672 (todo-archive-done-item): When there are marked items and point
673 happens to be on an unmarked item, ignore the latter. Don't leave
674 point below last item after archiving marked items.
675 (todo-unarchive-items): Fix logic to ensure unarchiving an item
676 from an archive with only one category deletes the archive only
677 when the category is empty after unarchiving. Make sure the todo
678 file's category sexp is updated.
679 (todo-read-file-name): Allow an existing file name even when it is
680 not required (todo-move-category needs this to work as documented).
681 (todo-add-file): Call todo-validate-name to reject the name of an
682 existing todo file (needed due to fix in todo-read-file-name).
683 (todo-reset-nondiary-marker): Also reset in filtered items files.
684 (todo-reset-done-string, todo-reset-comment-string): Also reset in
685 regexp filtered items files.
686 (todo-reset-highlight-item): Also reset in filtered items files.
687 Fix incorrect variable reference in document string.
688
689 2014-05-26 Glenn Morris <rgm@gnu.org>
690
691 * window.el (window--dump-frame): Avoid error in --without-x builds.
692
693 2014-05-26 Glenn Morris <rgm@gnu.org>
694
695 * nxml/nxml-mode.el (xml-mode): Only define this alias once.
696
697 2014-05-26 Eli Zaretskii <eliz@gnu.org>
698
699 * frame.el (set-frame-font): Doc fix.
700
701 * menu-bar.el (menu-set-font): Doc fix. (Bug#17532)
702
703 2014-05-26 Dmitry Gutov <dgutov@yandex.ru>
704
705 * emacs-lisp/package.el (package--download-one-archive):
706 Use `write-region' instead of `save-buffer' to avoid running various
707 hooks. (Bug#17155)
708 (describe-package-1): Same. Insert newline at the end of the
709 buffer if appropriate.
710
711 2014-05-26 Juri Linkov <juri@jurta.org>
712
713 * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
714 (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
715 Add more modifiers: meta, control, shift, hyper, super, alt.
716 (Bug#17439)
717
718 * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
719 to allow changing its value with `set-variable'.
720
721 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
722
723 * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
724 #; comments.
725 (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
726 New functions.
727 (scheme-mode-variables): Set syntax-propertize-function instead of
728 font-lock-syntactic-face-function.
729 (scheme-font-lock-syntactic-face-function): Delete.
730
731 * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
732
733 * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
734 (bug#17392).
735
736 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
737
738 * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
739 for a temporary file name.
740
741 2014-05-26 Eli Zaretskii <eliz@gnu.org>
742
743 * simple.el (line-move-ignore-invisible): Doc fix. (Bug#17511)
744
745 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
746
747 * net/dbus.el (dbus-init-bus, dbus-call-method)
748 (dbus-call-method-asynchronously, dbus-send-signal)
749 (dbus-method-return-internal, dbus-method-error-internal):
750 Check, whether Emacs has been compiled with D-Bus support. (Bug#17508)
751
752 2014-05-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
753
754 * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
755 methods which do not have a doc string. (Bug#17490)
756
757 2014-05-25 Tassilo Horn <tsdh@gnu.org>
758
759 * textmodes/reftex-ref.el (reftex-format-special): Make it work
760 also for AMS Math's \eqref macro.
761
762 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
763
764 Arrange to never byte-compile the generated -pkg.el file.
765
766 * emacs-lisp/package.el (package-generate-description-file):
767 Output first-line comment to set buffer-local var `no-byte-compile'.
768 Suggested by Dmitry Gutov:
769 <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
770
771 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
772
773 Fix bug: Properly quote args to generated -pkg.el `define-package'.
774
775 * emacs-lisp/package.el (package-generate-description-file):
776 Inline `package--alist-to-plist'; rewrite to selectively
777 quote alist values that are not self-quoting.
778 (package--alist-to-plist): Delete func.
779
780 2014-05-25 Andreas Schwab <schwab@linux-m68k.org>
781
782 * term/xterm.el (xterm-function-map): Add mapping for shifted
783 keypad keys.
784
785 2014-05-24 Daniel Colascione <dancol@dancol.org>
786
787 * progmodes/subword.el (subword-find-word-boundary): Move point to
788 correct spot before search. (Bug#17580)
789
790 * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
791 breaking the build.
792
793 2014-05-24 Leo Liu <sdl.web@gmail.com>
794
795 * calc/calc.el (math-bignum): Handle most-negative-fixnum. (Bug#17556)
796
797 2014-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
798
799 * minibuffer.el (completion--sreverse): Remove.
800 (completion--common-suffix): Use `reverse' instead.
801 * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
802
803 2014-05-22 Glenn Morris <rgm@gnu.org>
804
805 * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
806
807 2014-05-21 Daniel Colascione <dancol@dancol.org>
808
809 * files.el (interpreter-mode-alist): Add mksh.
810
811 * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
812 derivative.
813 (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
814 mksh. Improve custom spec; allow regular expressions.
815 (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
816 (sh-after-hack-local-variables): New function.
817 (sh-mode): Use it; respect file-local `sh-shell' variable. (bug#17333)
818 (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
819 the normalization.
820 (sh-canonicalize-shell): Rewrite to support regexes.
821
822 2014-05-21 Leo Liu <sdl.web@gmail.com>
823
824 * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
825
826 2014-05-19 Leo Liu <sdl.web@gmail.com>
827
828 * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
829
830 2014-05-18 Glenn Morris <rgm@gnu.org>
831
832 * loadup.el:
833 * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
834
835 2014-05-14 Sam Steingold <sds@gnu.org>
836
837 * progmodes/python.el (python-shell-get-or-create-process):
838 Do not bind `current-prefix-arg' so that C-c C-z does not talk
839 back unless requested.
840
841 2014-05-14 Glenn Morris <rgm@gnu.org>
842
843 * subr.el (with-file-modes): New macro.
844 * printing.el (pr-save-file-modes): Make obsolete.
845 * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
846 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
847 Add with-file-modes.
848 * doc-view.el (doc-view-make-safe-dir):
849 * epg.el (epg--start):
850 * files.el (locate-user-emacs-file, make-temp-file)
851 (backup-buffer-copy, move-file-to-trash):
852 * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
853 * eshell/esh-util.el (eshell-with-private-file-modes)
854 (eshell-make-private-directory):
855 * net/browse-url.el (browse-url-mosaic):
856 * obsolete/mailpost.el (post-mail-send-it):
857 * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
858 * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
859 Use with-file-modes.
860
861 * vc/emerge.el (emerge-make-temp-file): Simplify.
862
863 2014-05-14 Stephen Berman <stephen.berman@gmx.net>
864 Stefan Monnier <monnier@iro.umontreal.ca>
865
866 * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
867 suffix (bug#15419).
868
869 2014-05-14 Glenn Morris <rgm@gnu.org>
870
871 * vc/emerge.el (emerge-temp-file-prefix):
872 Make pointless option obsolete.
873 (emerge-temp-file-mode): Make non-functional option obsolete.
874
875 2014-05-14 Michael Albinus <michael.albinus@gmx.de>
876
877 * net/browse-url.el (browse-url):
878 Use `unhandled-file-name-directory' when setting `default-directory',
879 in order to circumvent stalled remote connections. (Bug#17425)
880
881 2014-05-14 Glenn Morris <rgm@gnu.org>
882
883 * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
884 Optimize on Emacs, which has the relevant functions for ages.
885
886 2014-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
887
888 * simple.el (undo-make-selective-list): Obey undo-no-redo.
889
890 2014-05-12 Sam Steingold <sds@gnu.org>
891
892 * calendar/time-date.el (seconds-to-string): New function to
893 pretty print time delay in seconds.
894
895 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
896
897 * mpc.el (mpc-format): Trim Date to the year.
898 (mpc-songs-hashcons): Shorten the Date field.
899
900 * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
901 into autoloading just because of a silly indirection.
902
903 2014-05-12 Santiago Payà i Miralta <santiagopim@gmail.com>
904
905 * vc/vc-hg.el (vc-hg-unregister): New function. (Bug#17454)
906
907 2014-05-12 Glenn Morris <rgm@gnu.org>
908
909 * emacs-lisp/find-gc.el: Move to ../admin.
910
911 * printing.el (pr-version):
912 * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
913
914 * net/browse-url.el (browse-url-mosaic):
915 Create /tmp/Mosaic.PID as a private file.
916
917 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
918
919 * emacs-lisp/nadvice.el: Support adding a given function multiple times.
920 (advice--member-p): If name is given, only compare the name.
921 (advice--remove-function): Don't stop at the first match.
922 (advice--normalize-place): New function.
923 (add-function, remove-function): Use it.
924 (advice--add-function): Pass the name, if any, to
925 advice--remove-function.
926
927 2014-05-12 Philipp Rumpf <prumpf@gmail.com> (tiny change)
928
929 * electric.el (electric-indent-post-self-insert-function): Don't use
930 `pos' after modifying the buffer (bug#17449).
931
932 2014-05-12 Stephen Berman <stephen.berman@gmx.net>
933
934 * calendar/todo-mode.el (todo-insert-item-from-calendar):
935 Correct argument list to conform to todo-insert-item--basic.
936
937 2014-05-12 Glenn Morris <rgm@gnu.org>
938
939 * files.el (cd-absolute): Test if directory is accessible
940 rather than executable. (Bug#17330)
941
942 * progmodes/compile.el (recompile):
943 Handle C-u M-x recompile from a non-compilation buffer. (Bug#17444)
944
945 * net/browse-url.el (browse-url-mosaic):
946 Be careful when writing /tmp/Mosaic.PID. (Bug#17428)
947 This is CVE-2014-3423.
948
949 2014-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
950
951 * mouse.el: Use the normal toplevel loop while dragging.
952 (mouse-set-point): Handle multi-clicks.
953 (mouse-set-region): Handle multi-clicks for drags.
954 (mouse-drag-region): Update call accordingly.
955 (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
956 Use the normal event loop instead of a local while/read-event loop.
957 (global-map): Remove redundant bindings for double/triple-mouse-1.
958 * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
959 Generate synthetic down events when the protocol only sends up events.
960 (xterm-mouse-last): Remove.
961 (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
962 terminal parameter instead.
963 (xterm-mouse--set-click-count): New function.
964 (xterm-mouse-event): Detect/generate double/triple clicks.
965 * reveal.el (reveal-close-old-overlays): Don't close while dragging.
966
967 * info.el (Info-quoted): New face.
968 (Info-mode-font-lock-keywords): New var.
969 (Info-mode): Use it.
970
971 * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
972 are a hindrance for C-x C-e.
973
974 2014-05-11 Leo Liu <sdl.web@gmail.com>
975
976 * net/rcirc.el (rcirc-sentinel): Fix last change.
977
978 2014-05-08 Sam Steingold <sds@gnu.org>
979
980 * net/rcirc.el (rcirc-reconnect-delay): New user option.
981 (rcirc-sentinel): Auto-reconnect to the server if
982 `rcirc-reconnect-delay' is non-0 (but not more often than its
983 value in case the host is off-line).
984
985 2014-05-09 Eli Zaretskii <eliz@gnu.org>
986
987 * progmodes/grep.el (lgrep): Fix a typo in last commit.
988
989 2014-05-09 Glenn Morris <rgm@gnu.org>
990
991 * files.el (file-expand-wildcards):
992 * man.el (Man-support-local-filenames):
993 * printing.el (pr-i-directory, pr-interface-directory):
994 * progmodes/grep.el (lgrep, rgrep):
995 * textmodes/ispell.el (ispell-call-process)
996 (ispell-call-process-region, ispell-start-process)
997 (ispell-init-process): Use file-accessible-directory-p.
998
999 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1000
1001 * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
1002 (xterm-mouse--read-event-sequence-1000): Return nil if something
1003 looks fishy.
1004 (xterm-mouse-event): Propagate it.
1005 (xterm-mouse-translate-1): Handle it.
1006
1007 2014-05-08 Stephen Berman <stephen.berman@gmx.net>
1008
1009 * calendar/todo-mode.el (todo-insert-item--apply-args): When all
1010 four slots of the parameter list are filled, make sure to pass it
1011 to the argument list of todo-insert-item--basic.
1012
1013 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1014
1015 * emacs-lisp/package.el (package-compute-transaction): Topological sort.
1016 Add optional `seen' argument to detect and break infinite loops.
1017
1018 2014-05-08 Eli Zaretskii <eliz@gnu.org>
1019
1020 * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
1021 (trace-unsafe, trace-use-tree): Make parentheses style be
1022 according to Emacs style.
1023
1024 2014-05-08 Michael Albinus <michael.albinus@gmx.de>
1025
1026 * net/tramp-sh.el (tramp-remote-process-environment):
1027 Remove HISTFILE and HISTSIZE; it's too late to set them here.
1028 Add :version entry.
1029 (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
1030 Add "HISTSIZE=/dev/null" to the shell's env arguments. Do not send
1031 extra "PSx=..." commands.
1032 (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
1033 (Bug#17295)
1034
1035 (tramp-uudecode): Replace the hard-coded temporary file name by a
1036 format specifier.
1037 (tramp-remote-coding-commands): Enhance docstring.
1038 (tramp-find-inline-encoding): Replace "%t" by a temporary file
1039 name. (Bug#17415)
1040 This is CVE-2014-3424.
1041
1042 2014-05-08 Glenn Morris <rgm@gnu.org>
1043
1044 * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
1045 (find-gc-source-files): Update some names.
1046 (trace-call-tree): Simplify and update.
1047 Avoid predictable temp-file names. (http://bugs.debian.org/747100)
1048 This is CVE-2014-3422.
1049
1050 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1051
1052 * minibuffer.el (completion--try-word-completion): Revert fix for
1053 Bug#15980 (bug#17375).
1054
1055 * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
1056 Always store button numbers in the same way in xterm-mouse-last;
1057 Don't burp is xterm-mouse-last is not set as expected.
1058 Never return negative indices.
1059
1060 2014-05-08 Dmitry Gutov <dgutov@yandex.ru>
1061
1062 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1063 Backtrack one char if the global/char-literal var matcher hits
1064 inside a string. The next char could be the beginning of an
1065 expression expansion.
1066
1067 2014-05-08 Glenn Morris <rgm@gnu.org>
1068
1069 * help-fns.el (describe-function-1): Test for an autoload before a
1070 macro, since `macrop' works on autoloads. (Bug#17410)
1071
1072 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1073
1074 * electric.el (electric-indent-functions-without-reindent): Add yaml.
1075
1076 * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
1077 Make sure the new point we return is within the new string (bug#17239).
1078
1079 2014-05-05 Daniel Colascione <dancol@dancol.org>
1080
1081 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1082 Port `gnu' pattern to rx.
1083
1084 2014-05-05 Jarek Czekalski <jarekczek@poczta.onet.pl>
1085
1086 Remove unneeded prompt when closing a buffer with active
1087 emacsclient ("Buffer ... still has clients"), #16548.
1088 * server.el (server-start): Remove the only call to:
1089 (server-kill-buffer-query-function): Remove.
1090
1091 2014-05-04 Leo Liu <sdl.web@gmail.com>
1092
1093 * calendar/diary-lib.el (calendar-chinese-month-name-array):
1094 Defvar to pacify compiler.
1095
1096 2014-05-04 Eli Zaretskii <eliz@gnu.org>
1097
1098 * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
1099
1100 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1101
1102 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
1103 Use nil rather than `default' for the "default" appearance (bug#17388).
1104 * vc/ediff-util.el (ediff-inferior-compare-regions)
1105 (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
1106 a misleading `default' value when it's really a boolean.
1107 * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
1108 overlay is not visible.
1109
1110 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
1111
1112 * calendar/todo-mode.el (todo-edit-file): Use display-warning.
1113 (todo-menu): Uncomment and update.
1114
1115 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
1116
1117 * calendar/todo-mode.el: Reimplement item editing to have the same
1118 basic user interface as item insertion, and make small UI and
1119 larger internal improvements to the latter.
1120 (todo-insert-item): Add reference to the Todo mode user manual to
1121 the documentation string.
1122 (todo-insert-item--basic): Rename from todo-basic-insert-item and
1123 adjust all callers. Change signature to combine diary and
1124 nonmarking arguments. Incorporate functionality of deleted item
1125 copying command and add error checking. Remove detailed
1126 descriptions of the arguments from the documentation string, since
1127 this is treated in the Todo mode user manual.
1128 (todo-copy-item, todo-edit-multiline-item)
1129 (todo-edit-done-item-comment, todo-edit-item-header)
1130 (todo-edit-item-time, todo-edit-item-date-from-calendar)
1131 (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
1132 (todo-edit-item-date-year, todo-edit-item-date-month)
1133 (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
1134 Remove.
1135 (todo-edit-item): Reimplement as wrapper command for
1136 todo-edit-item--next-key and make it distinguish done and not done
1137 todo items.
1138 (todo-edit-item--text): New function, replacing old command
1139 todo-edit-item and incorporating deleted commands
1140 todo-edit-multiline-item and todo-edit-done-item-comment.
1141 (todo-edit-item--header): Rename from todo-basic-edit-item-header.
1142 Use only numeric value of prefix argument. Remove detailed
1143 descriptions of the arguments from the documentation string, since
1144 this is treated in the Todo mode user manual.
1145 (todo-edit-item--diary-inclusion): New function, replacing old
1146 command todo-edit-item-diary-inclusion and incorporating and fixing
1147 functionality of deleted command todo-edit-item-diary-nonmarking,
1148 making sure to remove todo-nondiary-marker when adding
1149 diary-nonmarking-symbol.
1150 (todo-edit-category-diary-inclusion): Make sure to delete
1151 diary-nonmarking-symbol when adding todo-nondiary-marker.
1152 (todo-edit-category-diary-nonmarking): Fix indentation.
1153 (todo-insert-item--parameters): Group diary and nonmarking
1154 parameters together.
1155 (todo-insert-item--apply-args): Adjust to signature of
1156 todo-insert-item--basic and incorporate copy parameter.
1157 Make small code improvements.
1158 (todo-insert-item--next-param): Improve prompt and adjust it to
1159 new parameter grouping. Remove obsolete code.
1160 (todo-edit-item--param-key-alist)
1161 (todo-edit-item--date-param-key-alist)
1162 (todo-edit-done-item--param-key-alist): New defconsts.
1163 (todo-edit-item--prompt): New variable.
1164 (todo-edit-item--next-key): New function.
1165 (todo-key-bindings-t): Bind "e" to todo-edit-item.
1166 Remove bindings of deleted commands.
1167
1168 2014-05-04 Leo Liu <sdl.web@gmail.com>
1169
1170 * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
1171
1172 2014-05-04 Glenn Morris <rgm@gnu.org>
1173
1174 * allout-widgets.el (allout-widgets-tally)
1175 (allout-decorate-item-guides):
1176 * menu-bar.el (menu-bar-positive-p):
1177 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
1178 * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
1179 * progmodes/js.el (js--inside-param-list-p)
1180 (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
1181 * progmodes/prolog.el (region-exists-p):
1182 * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
1183 * textmodes/reftex-parse.el (reftex-using-biblatex-p):
1184 Doc fixes (replace `iff').
1185
1186 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1187
1188 * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
1189
1190 2014-05-04 Leo Liu <sdl.web@gmail.com>
1191
1192 Support Chinese diary entries in calendar and diary. (Bug#17393)
1193 * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
1194 (calendar-chinese-from-absolute-for-diary)
1195 (calendar-chinese-to-absolute-for-diary)
1196 (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
1197 (diary-chinese-list-entries): New functions to list and mark
1198 Chinese diary entries in the calendar window.
1199 (diary-chinese-anniversary)
1200 (diary-chinese-insert-anniversary-entry)
1201 (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
1202 (diary-chinese-insert-yearly-entry): New commands to insert
1203 Chinese diary entries.
1204
1205 * calendar/diary-lib.el (diary-font-lock-keywords):
1206 Support font-locking Chinese dates.
1207
1208 * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
1209 inserting Chinese diary entries.
1210
1211 * calendar/calendar.el (diary-chinese-entry-symbol):
1212 New customizable variable.
1213 (calendar-mode-map): Add bindings for inserting Chinese diary
1214 entries.
1215
1216 2014-05-03 Juri Linkov <juri@jurta.org>
1217
1218 * dired.el (dired-check-switches, dired-switches-recursive-p):
1219 New functions. (Bug#17218)
1220 (dired-switches-escape-p, dired-move-to-end-of-filename):
1221 Use `dired-check-switches'.
1222 (dired-insert-old-subdirs, dired-build-subdir-alist)
1223 (dired-sort-R-check): Use `dired-switches-recursive-p'.
1224
1225 2014-05-01 Barry O'Reilly <gundaetiapo@gmail.com>
1226
1227 * simple.el (undo-make-selective-list): New algorithm fixes
1228 incorrectness of position adjustments when undoing in region.
1229 (Bug#17235)
1230 (undo-elt-crosses-region): Make obsolete.
1231 (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
1232 New functions to adjust positions using undo-deltas.
1233
1234 2014-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
1235
1236 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
1237 the last consecutive closing paren (bug#17345).
1238
1239 2014-04-30 Reuben Thomas <rrt@sc3d.org>
1240
1241 * dired.el (dired-mode): make terminology for eXpunge command
1242 consistent. (Bug#17276)
1243
1244 2014-04-30 Eli Zaretskii <eliz@gnu.org>
1245
1246 * dired.el (dired-initial-position-hook, dired-initial-position):
1247 Doc string fixes.
1248
1249 2014-04-30 Glenn Morris <rgm@gnu.org>
1250
1251 * mail/rmail.el (rmail-quit): Handle killed summaries. (Bug#17283)
1252
1253 2014-04-30 Matthias Dahl <matthias.dahl@binary-island.eu>
1254
1255 * faces.el (face-spec-recalc): Apply X resources only after the
1256 defface spec has been applied. Thus, X resources are no longer
1257 overriden by the defface spec which also fixes issues on win32 where
1258 the toolbar coloring was wrong because it is set through X resources
1259 and was (wrongfully) overriden. (Bug#16694)
1260
1261 2014-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
1262
1263 * textmodes/rst.el (electric-pair-pairs): Declare.
1264 (rst-mode): Set it (bug#17131).
1265
1266 2014-04-30 Juri Linkov <juri@jurta.org>
1267
1268 * desktop.el (desktop-value-to-string): Let-bind `print-length'
1269 and `print-level' to nil. (Bug#17351)
1270
1271 2014-04-30 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1272
1273 * battery.el (battery-update): Handle the case where battery
1274 status is "N/A" (bug#17319).
1275
1276 2014-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
1277
1278 * progmodes/ps-mode.el: Use SMIE. Move string and comment recognition
1279 to syntax-propertize.
1280 (ps-mode-auto-indent): Mark as obsolete.
1281 (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
1282 (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
1283 word regexp operators.
1284 (ps-mode-map): Move initialization into declaration. Remove binding
1285 for TAB, RET, >, ], and }.
1286 (ps-mode-syntax-table): Move initialization into declaration.
1287 Don't give word syntax to non-word chars.
1288 (ps-run-mode-map): Move initialization into declaration.
1289 (ps-mode-menu-main): Remove auto-indent entry.
1290 (ps-mode-smie-rules): New function.
1291 (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
1292 (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
1293 (ps-mode--string-syntax-table): New const.
1294 (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
1295 New functions.
1296 (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
1297 (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
1298
1299 2014-04-27 Daniel Colascione <dancol@dancol.org>
1300
1301 * term/xterm.el (xterm-paste): Use large finite timeout when
1302 reading event to avoid putting keys in this-command-keys.
1303
1304 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
1305
1306 * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
1307 (perl-syntax-propertize-function): Use it. Extend handling of
1308 here-docs to the unquoted case.
1309
1310 2014-04-25 Eli Zaretskii <eliz@gnu.org>
1311
1312 * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
1313 Use equal-including-properties to compare help-echo strings (bug#17331).
1314
1315 2014-04-25 Leo Liu <sdl.web@gmail.com>
1316
1317 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
1318 Fix syntax for @. (Bug#17325)
1319
1320 2014-04-25 Daniel Colascione <dancol@dancol.org>
1321
1322 * emacs-lisp/cl.el (gv): Require gv early to break eager
1323 macro-expansion cycles.
1324
1325 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
1326
1327 * simple.el (region-active-p): Check there's a mark (bug#17324).
1328
1329 * simple.el (completion-list-mode-map): Use choose-completion for the
1330 mouse binding as well (bug#17302).
1331 (completion-list-mode, completion-setup-function): Adjust docstring and
1332 echo area message accordingly.
1333 * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
1334 calling convention of choose-completion.
1335 * comint.el (comint-dynamic-list-completions):
1336 * term.el (term-dynamic-list-completions): Accept choose-completion.
1337
1338 * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
1339 &, |, +, - and * can't be a division (bug#17317).
1340
1341 * term/xterm.el (xterm--version-handler): Don't use modern xterm
1342 features on gnome-terminal (bug#16988).
1343
1344 2014-04-25 Thien-Thi Nguyen <ttn@gnu.org>
1345
1346 Improve Scheme font-locking for (define ((foo ...) ...) ...).
1347
1348 * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
1349 the declared object, ignore zero or more parens, not zero or one.
1350
1351 2014-04-24 Leo Liu <sdl.web@gmail.com>
1352
1353 * progmodes/xscheme.el (xscheme-expressions-ring)
1354 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
1355 (xscheme-control-g-disabled-p, xscheme-process-filter-state)
1356 (xscheme-allow-output-p, xscheme-prompt)
1357 (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
1358
1359 * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
1360 Comment out unused functions.
1361
1362 2014-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
1363
1364 * info.el: Use lexical-binding and cl-lib.
1365 Use defvar-local and setq-local instead of make-local-variable.
1366 (Info-apropos-matches): Avoid add-to-list.
1367 (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
1368
1369 2014-04-24 Daniel Colascione <dancol@dancol.org>
1370
1371 * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
1372
1373 2014-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1374
1375 * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
1376
1377 2014-04-22 Michael Heerdegen <michael_heerdegen@web.de>
1378
1379 * dired.el (dired-insert-set-properties): Do not consider
1380 subdirectory headings and empty lines to be information that
1381 `dired-hide-details-mode' should hide. (Bug#17228)
1382
1383 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1384
1385 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1386 Remove test messages.
1387 (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
1388 and `target' twice.
1389
1390 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1391
1392 * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
1393 * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
1394
1395 * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
1396
1397 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1398
1399 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1400 Set "IFS=" when using read builtin, in order to preserve spaces in
1401 the file name. Add test messages for hunting a bug on hydra.
1402 (tramp-get-ls-command): Undo using "-b" argument. It doesn't help.
1403
1404 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1405
1406 * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
1407 Don't prettify a word within a symbol.
1408
1409 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1410
1411 * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
1412 possible.
1413
1414 2014-04-22 Daniel Colascione <dancol@dancol.org>
1415
1416 * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
1417 use defun to define `function-put'.
1418
1419 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1420
1421 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
1422 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
1423 (lisp-mode-variables): Set font-lock-extra-managed-props.
1424
1425 * emacs-lisp/byte-run.el (function-put): New function.
1426 (defun-declarations-alist): Use it. Add `pure' and `side-effect-free'.
1427 * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
1428 (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
1429 Use them.
1430
1431 2014-04-22 Daniel Colascione <dancol@dancol.org>
1432
1433 * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
1434 Add `full-p' parameter; when nil, call `macroexpand' instead of
1435 `macroexpand-all'.
1436
1437 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1438 Improve docstrings.
1439
1440 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
1441 Use lambda function values, not quoted lambdas.
1442 (byte-compile-recurse-toplevel): Remove extraneous &optional.
1443
1444 * emacs-lisp/cl-macs.el
1445 (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
1446 (cl-struct-slot-value): Conditionally use aref or nth so that the
1447 compiler produces optimal code.
1448
1449 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1450
1451 * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
1452 (inline): Don't inline cl--set-elt.
1453 (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
1454 Define as inlinable instead.
1455 (cl-struct-set-slot-value): Remove.
1456
1457 * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
1458 * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
1459 Use setf instead.
1460
1461 2014-04-21 Daniel Colascione <dancol@dancol.org>
1462
1463 * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
1464 last two parameters after all.
1465 (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
1466 (cl--compiler-macro-assoc,cl-struct-slot-value)
1467 (cl-struct-set-slot-value): Stop using them.
1468
1469 (2014-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
1470
1471 * image-mode.el (image-mode-window-put): Don't assume there's a `t'
1472 entry in image-mode-winprops-alist.
1473
1474 2014-04-21 Daniel Colascione <dancol@dancol.org>
1475
1476 * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
1477 (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
1478 (byte-compile-toplevel-file-form): Use it.
1479
1480 * emacs-lisp/cl-macs.el:
1481 (cl--loop-let): Properly destructure `while' clauses.
1482
1483 2014-04-20 Daniel Colascione <dancol@dancol.org>
1484
1485 * vc/vc.el (vc-root-dir): New public autoloaded function for
1486 generically finding the current VC root.
1487 * vc/vc-hooks.el (vc-not-supported): New error.
1488 (vc-call-backend): Signal `vc-not-supported' instead of generic error.
1489
1490 2014-04-20 Daniel Colascione <dancol@dancol.org>
1491
1492 * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
1493 argument.
1494 (cl--const-expr-val): cl--const-expr-val should macroexpand its
1495 argument in case we're inside a symbol-macrolet.
1496 (cl--do-arglist, cl--compiler-macro-typep)
1497 (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
1498 environment to `cl--const-expr-val'.
1499 (cl-struct-sequence-type,cl-struct-slot-info)
1500 (cl-struct-slot-offset, cl-struct-slot-value)
1501 (cl-struct-set-slot-value): New functions.
1502
1503 2014-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1504
1505 * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
1506 assignments such as "case=hello" (bug#17297).
1507
1508 2014-04-18 Michael Albinus <michael.albinus@gmx.de>
1509
1510 * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
1511 Do not autoload.
1512 (tramp-file-name-handler, tramp-completion-file-name-handler):
1513 Revert patch from 2014-04-10, it isn't necessary anymore.
1514 (tramp-autoload-file-name-handler)
1515 (tramp-register-autoload-file-name-handlers): New defuns.
1516 (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
1517 (tramp-register-file-name-handlers): Remove also
1518 `tramp-autoload-file-name-handler' from `file-name-handler-list'.
1519 Do not autoload its invocation, but eval it after loading of 'tramp.
1520
1521 * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
1522
1523 * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
1524
1525 2014-04-17 Daniel Colascione <dancol@dancol.org>
1526
1527 Add support for bracketed paste mode; add infrastructure for
1528 managing terminal mode enabling and disabling automatically.
1529
1530 * xt-mouse.el:
1531 (xterm-mouse-mode): Simplify.
1532 (xterm-mouse-tracking-enable-sequence)
1533 (xterm-mouse-tracking-disable-sequence): New constants.
1534 (turn-on-xterm-mouse-tracking-on-terminal)
1535 (turn-off-xterm-mouse-tracking-on-terminal):
1536 Use tty-mode-set-strings and tty-mode-reset-strings terminal
1537 parameters instead of random hooks.
1538 (turn-on-xterm-mouse-tracking)
1539 (turn-off-xterm-mouse-tracking): Delete.
1540
1541 * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
1542 (xterm-paste-ending-sequence): New constant.
1543 (xterm-paste): New command used for bracketed paste support.
1544
1545 (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
1546 (terminal-init-xterm-bracketed-paste-mode): New function.
1547 (terminal-init-xterm): Call it.
1548 (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
1549 and tty-mode-reset-strings instead of random hooks.
1550 (xterm-turn-on-modify-other-keys)
1551 (xterm-turn-off-modify-other-keys)
1552 (xterm-remove-modify-other-keys): Delete obsolete functions.
1553
1554 * term/screen.el: Rewrite to just use the xterm code.
1555 Add copyright notice. Mention tmux.
1556
1557 2014-04-17 Ian D <dunni@gnu.org> (tiny change)
1558
1559 * image-mode.el (image-mode-window-put): Also update the property of
1560 the "default window".
1561 * doc-view.el (doc-view-new-window-function): If no window
1562 exists, move to the last known page.
1563
1564 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
1565
1566 * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
1567 here-documents (bug#17262).
1568
1569 2014-04-16 Eli Zaretskii <eliz@gnu.org>
1570
1571 * term/pc-win.el (x-list-fonts, x-get-selection-value):
1572 Provide doc strings, as required by snarf-documentation.
1573
1574 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
1575
1576 * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
1577 arg of overlays-at. Use `invisible-p'.
1578
1579 * obsolete/lucid.el (extent-at):
1580 * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
1581 overlays-at.
1582 (hfy-fontify-buffer): Remove unused var `orig-ovls'.
1583
1584 2014-04-16 João Távora <joaotavora@gmail.com>
1585
1586 * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
1587 links. (Bug#17217).
1588
1589 2014-04-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1590
1591 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
1592 Use mapc to loop over a vector. (Bug#17257).
1593
1594 2014-04-16 Michael Albinus <michael.albinus@gmx.de>
1595
1596 * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
1597 patch, there are new problems with file names containing spaces.
1598 Get rid of backticks. (Bug#17238)
1599
1600 2014-04-16 João Távora <joaotavora@gmail.com>
1601
1602 * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
1603 possible bug.
1604
1605 2014-04-16 Eli Zaretskii <eliz@gnu.org>
1606
1607 * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
1608 (blink-cursor-mode): Mention customization variables and the
1609 effect of 'blink-cursor-blinks'.
1610
1611 2014-04-16 Barry O'Reilly <gundaetiapo@gmail.com>
1612
1613 * simple.el (undo): Prevent insertion of identity mapping into
1614 undo-equiv-table so as undo-only does not inf loop in the presence
1615 of consecutive nils in undo list.
1616
1617 2014-04-16 Matthias Dahl <matthias.dahl@binary-island.eu>
1618
1619 * faces.el (make-face): Deprecate optional argument as it is no
1620 longer needed/used since the conditional X resources handling
1621 has been pushed down to make-face-x-resource-internal itself.
1622 (make-empty-face): Don't pass optional argument to make-face.
1623
1624 2014-04-16 Karl Fogel <kfogel@red-bean.com>
1625
1626 * savehist.el (savehist-save): Remove workaround for a read-passwd
1627 bug that was fixed before 24.3. Thanks to Juanma Barranquero for
1628 noticing that the shim was still present.
1629
1630 2014-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
1631
1632 * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
1633
1634 2014-04-14 Juanma Barranquero <lekktu@gmail.com>
1635
1636 * faces.el (face-set-after-frame-default): Remove unused local variable.
1637
1638 2014-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1639
1640 * progmodes/grep.el: Use lexical-binding.
1641 (grep-expand-template): Pass explicit lexical env to `eval'.
1642 (zrgrep): Let-bind grep-find-template explicitly.
1643
1644 * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
1645 * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
1646
1647 2014-04-12 Eli Zaretskii <eliz@gnu.org>
1648
1649 * international/characters.el <standard-case-table>: Add entries
1650 for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243)
1651 Set category of Coptic characters be 'g' (Greek).
1652
1653 2014-04-12 Leo Liu <sdl.web@gmail.com>
1654
1655 * progmodes/octave.el (completion-table-with-cache):
1656 Define if not available.
1657 (octave-goto-function-definition, octave-sync-function-file-names)
1658 (octave-find-definition-default-filename):
1659 Backquote upattern for compatibility.
1660
1661 2014-04-12 Michael Albinus <michael.albinus@gmx.de>
1662
1663 * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
1664 name twice due to backticks. (Bug#17238)
1665
1666 2014-04-12 Glenn Morris <rgm@gnu.org>
1667
1668 * term/w32-win.el (x-win-suspend-error):
1669 * term/x-win.el (x-win-suspend-error): Sync docs.
1670
1671 2014-04-12 Matthias Dahl <matthias.dahl@binary-island.eu>
1672
1673 * faces.el (make-face): Remove deprecated optional argument.
1674 The conditional application of X resources is handled directly by
1675 make-face-x-resource-internal since Emacs 24.4.
1676 (make-empty-face): Don't pass optional argument to make-face.
1677
1678 2014-04-11 Glenn Morris <rgm@gnu.org>
1679
1680 * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport. (Bug#16429)
1681
1682 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1683
1684 Ediff's overlay priorities cause more trouble than they solve.
1685 * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
1686 (ediff-highest-priority): Remove function (bug#17234).
1687 * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
1688 * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
1689 (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
1690 overlay priorities.
1691
1692 2014-04-11 Feng Li <fengli@gmail.com> (tiny change)
1693
1694 * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
1695 entry; use symbol boundaries to avoid mis-matches.
1696
1697 2014-04-11 Michael Albinus <michael.albinus@gmx.de>
1698
1699 * net/tramp.el (tramp-file-name-handler)
1700 (tramp-completion-file-name-handler): Avoid recursive loading.
1701
1702 * net/tramp-sh.el (tramp-make-copy-program-file-name):
1703 Quote result also locally.
1704
1705 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1706
1707 * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
1708 Remove left-over code.
1709
1710 * newcomment.el (comment-indent-new-line): Sink code where it's used.
1711 Reuse the previous comment's indentation unconditionally if it's on its
1712 own line.
1713
1714 2014-04-09 Daniel Colascione <dancol@dancol.org>
1715
1716 * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
1717 `no-syntax-crossing' arguments. Forward to `up-list'.
1718 (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
1719 Implement logic for escaping from strings. Use narrowing to deal
1720 with corner cases.
1721
1722 2014-04-09 Leo Liu <sdl.web@gmail.com>
1723
1724 * net/rcirc.el (rcirc-connection-info): New variable.
1725 (rcirc-connect): Use it to store connection info.
1726 (rcirc-buffer-process): Avoid get-buffer-process which returns nil
1727 for killed process.
1728 (rcirc-cmd-reconnect): New command. (Bug#17045)
1729 (rcirc-mode, set-rcirc-encode-coding-system)
1730 (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
1731
1732 2014-04-09 Daniel Colascione <dancol@dancol.org>
1733
1734 * emacs-lisp/cl-indent.el: Add comment claiming
1735 facility is also good for elisp.
1736 (lisp-indent-find-method): New function.
1737 (common-lisp-indent-function): Recognize cl-loop.
1738 (common-lisp-indent-function-1): Recognize cl constructs; use
1739 `lisp-indent-find-method' instead of `get' directly.
1740 (if): Use else-body style for elisp.
1741
1742 2014-04-09 Dmitry Gutov <dgutov@yandex.ru>
1743
1744 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
1745 Module methods. (Bug#17216)
1746
1747 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1748
1749 * help.el (describe-bindings): Fix buffer handling (bug#17210).
1750 (describe-bindings-internal): Mark obsolete.
1751
1752 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1753
1754 * subr.el (with-silent-modifications): Don't bind deactivate-mark,
1755 buffer-file-name, and buffer-file-truename any more.
1756
1757 2014-04-08 Leo Liu <sdl.web@gmail.com>
1758
1759 Use lexical-binding and require cl-lib.
1760 * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
1761 (rcirc-handler-generic, rcirc-fill-paragraph)
1762 (rcirc-format-response-string, rcirc-target-buffer)
1763 (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
1764 (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
1765 (rcirc-ctcp-sender-PING, rcirc-browse-url)
1766 (rcirc-markup-timestamp, rcirc-markup-attributes)
1767 (rcirc-markup-my-nick, rcirc-markup-urls)
1768 (rcirc-markup-bright-nicks, rcirc-markup-fill)
1769 (rcirc-check-auth-status, rcirc-handler-WALLOPS)
1770 (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
1771 (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
1772 (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
1773 (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
1774 (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
1775 (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
1776 (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
1777 (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
1778 (rcirc-handler-CTCP-response): Fix unused arguments warnings and
1779 use cl-lib.
1780
1781 2014-04-07 João Távora <joaotavora@gmail.com>
1782
1783 * elec-pair.el (electric-pair--syntax-ppss):
1784 When inside comments parse from comment beginning.
1785 (electric-pair--balance-info): Fix typo in comment.
1786 (electric-pair--in-unterminated-string-p): Delete.
1787 (electric-pair--unbalanced-strings-p): New function.
1788 (electric-pair-string-bound-function): New var.
1789 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
1790 according to `electric-pair--in-unterminated-string-p'
1791
1792 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
1793 Inhibit quote pairing if point-max is inside an unterminated string.
1794 (electric-pair--looking-at-unterminated-string-p): Delete.
1795 (electric-pair--in-unterminated-string-p): New function.
1796
1797 2014-04-07 Glenn Morris <rgm@gnu.org>
1798
1799 * shell.el (shell-directory-tracker):
1800 Go back to just ignoring failures. (Bug#17159)
1801
1802 2014-04-07 João Távora <joaotavora@gmail.com>
1803
1804 Fix `electric-pair-delete-adjacent-pairs' in modes binding
1805 backspace. (bug#16981)
1806 * elec-pair.el (electric-pair-backward-delete-char): Delete.
1807 (electric-pair-backward-delete-char-untabify): Delete.
1808 (electric-pair-mode-map): Bind backspace to a menu item filtering
1809 a new `electric-pair-delete-pair' command.
1810 (electric-pair-delete-pair): New command.
1811
1812 * progmodes/python.el (python-electric-pair-string-delimiter):
1813 Fix triple-quoting electricity. (Bug#17192)
1814
1815 * elec-pair.el (electric-pair-post-self-insert-function):
1816 Don't skip whitespace when `electric-pair-text-pairs' and
1817 `electric-pair-pairs' were used. syntax to
1818 electric-pair--skip-whitespace. (Bug#17183)
1819
1820 2014-04-07 Eli Zaretskii <eliz@gnu.org>
1821
1822 * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
1823 "<F>". (Bug#17199)
1824
1825 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
1826
1827 * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
1828 (mpc--status-idle-timer-run): Use mpc--status-timer-run.
1829
1830 2014-04-07 Glenn Morris <rgm@gnu.org>
1831
1832 * help.el (view-lossage): Doc tweak.
1833
1834 2014-04-07 Matthias Dahl <ml_emacs-lists@binary-island.eu>
1835
1836 * faces.el (face-spec-recalc): Call make-face-x-resource-internal
1837 only when inhibit-x-resources is nil, and do that earlier in the
1838 function. Doc fix. (Bug#16694)
1839 (face-spec-choose): Accept additional optional argument, whose
1840 value is returned if no matching attributes are found.
1841 (face-spec-recalc): Use the new optional argument when calling
1842 face-spec-choose. (Bug#16378)
1843 (make-face-x-resource-internal): Do nothing when
1844 inhibit-x-resources is non-nil. Don't touch the default face if
1845 reversed video is given--as was done in previous versions of Emacs.
1846 (face-set-after-frame-default): Don't call
1847 make-face-x-resource-internal here. (Bug#16434)
1848
1849 2014-04-07 Tassilo Horn <tsdh@gnu.org>
1850
1851 * doc-view.el (doc-view-bookmark-jump):
1852 Use `bookmark-after-jump-hook' to jump to the right page after the
1853 buffer is shown in a window. (bug#16090)
1854
1855 2014-04-07 Eli Zaretskii <eliz@gnu.org>
1856
1857 * international/characters.el (mirroring): Fix last change:
1858 instead of loading uni-mirrored.el explicitly, do that implicitly
1859 by creating the 'mirroring' uniprop table. This avoids announcing
1860 the loading of uni-mirrored.el.
1861
1862 2014-04-07 Glenn Morris <rgm@gnu.org>
1863
1864 * files.el (buffer-stale--default-function)
1865 (buffer-stale-function, revert-buffer--default):
1866 * autorevert.el (auto-revert-buffers): Doc tweaks.
1867
1868 2014-04-07 Eli Zaretskii <eliz@gnu.org>
1869
1870 * international/characters.el: Preload uni-mirrored.el. (Bug#17169)
1871
1872 2014-04-07 Glenn Morris <rgm@gnu.org>
1873
1874 * files.el (make-backup-file-name-function)
1875 (make-backup-file-name, make-backup-file-name--default-function)
1876 (make-backup-file-name-1, find-backup-file-name)
1877 (revert-buffer-function, revert-buffer-insert-file-contents-function)
1878 (buffer-stale--default-function, buffer-stale-function)
1879 (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
1880 (revert-buffer, revert-buffer--default)
1881 (revert-buffer-insert-file-contents--default-function):
1882 Doc fixes related to defaults no longer being nil.
1883 (make-backup-file-name-function): Bump :version.
1884 Restore nil as a valid but deprecated custom type.
1885
1886 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
1887
1888 * progmodes/perl-mode.el (perl-syntax-propertize-function):
1889 Handle $' used as a variable (bug#17174).
1890
1891 * progmodes/perl-mode.el (perl-indent-new-calculate):
1892 Handle forward-sexp failure (bug#16985).
1893 (perl-syntax-propertize-function): Add "foreach" and "for" statement
1894 modifiers introducing expressions (bug#17116).
1895
1896 2014-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
1897
1898 * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
1899
1900 2014-04-05 Leo Liu <sdl.web@gmail.com>
1901
1902 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
1903 Add define-compilation-mode.
1904
1905 2014-04-04 João Távora <joaotavora@gmail.com>
1906
1907 * elec-pair.el (electric-pair--syntax-ppss): When inside comments
1908 parse from comment beginning.
1909 (electric-pair--balance-info): Fix typo in comment.
1910 (electric-pair--in-unterminated-string-p): Delete.
1911 (electric-pair--unbalanced-strings-p): New function.
1912 (electric-pair-string-bound-function): New var.
1913 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
1914 according to `electric-pair--in-unterminated-string-p'.
1915
1916 2014-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
1917
1918 * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
1919 Move declaration before first use.
1920 (reftex-move-to-next-arg): Silence compiler warning.
1921
1922 2014-04-04 Joost Kremers <joostkremers@fastmail.fm> (tiny change)
1923
1924 * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
1925 Use `window-total-width' instead of `window-width'.
1926
1927 2014-04-03 Daniel Colascione <dancol@dancol.org>
1928
1929 * subr.el (set-transient-map): Remove rms's workaround entirely;
1930 use new `suspicious-object' subr to mark our lambda for closer
1931 scrutiny during gc.
1932
1933 2014-04-02 Richard Stallman <rms@gnu.org>
1934
1935 * subr.el (set-transient-map): Comment out previous change.
1936
1937 2014-04-02 Glenn Morris <rgm@gnu.org>
1938
1939 * menu-bar.el (menu-bar-file-menu):
1940 * vc/ediff.el (ediff-current-file):
1941 Update for revert-buffer-function no longer being nil by default.
1942
1943 * simple.el (command-execute): Respect nil disabled-command-function.
1944
1945 2014-04-02 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1946
1947 * simple.el (command-execute): Do not execute the command when it
1948 is disabled; fixes thinko in 2013-02-20 conversion from C. (Bug#17151)
1949
1950 2014-04-02 Juri Linkov <juri@jurta.org>
1951
1952 * dired-aux.el (dired-compress-file): Don't use string-match-p
1953 because its match data is used afterwards.
1954
1955 2014-04-02 Stefan Monnier <monnier@iro.umontreal.ca>
1956
1957 * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
1958 0 like nil.
1959
1960 2014-04-02 João Távora <joaotavora@gmail.com>
1961
1962 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
1963 Inhibit quote pairing if point-max is inside an unterminated string.
1964 (electric-pair--looking-at-unterminated-string-p):
1965 Delete.
1966 (electric-pair--in-unterminated-string-p): New function.
1967
1968 2014-04-01 Daniel Colascione <dancol@dancol.org>
1969
1970 * minibuffer.el (minibuffer-complete): Prevent assertion failure
1971 when trying to complete the prompt.
1972
1973 2014-03-31 Leo Liu <sdl.web@gmail.com>
1974
1975 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
1976 Refactor out eldoc-documentation-function-default.
1977 (eldoc-documentation-function-default): New function.
1978 (eldoc-documentation-function): Change value.
1979
1980 2014-03-31 Glenn Morris <rgm@gnu.org>
1981
1982 * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
1983
1984 * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
1985 (vhdl-compose-components-package, vhdl-compose-configuration):
1986 Abbreviate default-directory (missing from some previous upstream sync).
1987
1988 2014-03-31 Reto Zimmermann <reto@gnu.org>
1989
1990 Sync with upstream vhdl mode v3.35.2.
1991 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
1992 (top-level): No longer require assoc.
1993 (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
1994 New functions. Use throughout to replace aget etc.
1995 (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
1996 (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
1997 (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
1998 (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
1999 (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
2000 except `vhdl-compiler'.
2001 (vhdl-error-regexp-add-emacs): Remove all other compilers,
2002 when appropriate.
2003
2004 2014-03-31 Glenn Morris <rgm@gnu.org>
2005
2006 * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
2007 Revert 2014-03-26 merge goof; go back to using defalias.
2008
2009 2014-03-30 Daniel Colascione <dancol@dancol.org>
2010
2011 * comint.el (comint-send-input):
2012 Deactivate completion-in-region-mode before we send comint input.
2013 (Bug#17139).
2014
2015 * simple.el (keyboard-quit): Deactivate completion-in-region-mode
2016 on keyboard-quit.
2017
2018 2014-03-29 Glenn Morris <rgm@gnu.org>
2019
2020 * textmodes/reftex.el: Manage most autoloads automatically.
2021 * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
2022 * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
2023 * textmodes/reftex-index.el, textmodes/reftex-parse.el:
2024 * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
2025 * textmodes/reftex-toc.el: Set generated-autoload-file,
2026 and add autoload cookies for reftex.el.
2027 * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
2028
2029 2014-03-28 Glenn Morris <rgm@gnu.org>
2030
2031 * cus-start.el (report-emacs-bug-address): Set custom properties.
2032 * mail/emacsbug.el (report-emacs-bug-address):
2033 Variable is now defined in emacs.c.
2034
2035 * mail/emacsbug.el (report-emacs-bug):
2036 Include system-configuration-features.
2037
2038 2014-03-28 Michal Nazarewicz <mina86@mina86.com>
2039
2040 * simple.el (cycle-spacing): Never delete spaces on first run by
2041 default, but do so in a new 'fast mode and if there are already
2042 N spaces (the previous behavior).
2043 Compare N with its value in previous invocation so that changing
2044 prefix argument restarts `cycle-spacing' sequence.
2045 The idea is that with this change, binding M-SPC to
2046 `cycle-spacing' should not introduce any changes in behavior of
2047 the binding so long as users do not type M-SPC twice in a raw with
2048 the same prefix argument or lack thereof.
2049
2050 2014-03-28 Glenn Morris <rgm@gnu.org>
2051
2052 * faces.el (term-file-aliases): New variable.
2053 (tty-run-terminal-initialization): Respect term-file-aliases.
2054 * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
2055 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
2056 * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
2057
2058 2014-03-27 Glenn Morris <rgm@gnu.org>
2059
2060 * startup.el (inhibit-startup-hooks): Doc tweak.
2061 (normal-top-level): Simplify running of hooks.
2062 For window-setup-hook, respect inhibit-startup-hooks.
2063 (command-line-1): Don't set window-setup-hook to nil.
2064
2065 Allow selective autoloading from obsolete/ directory.
2066 * Makefile.in (obsolete-autoloads): New rule.
2067 (autoloads): Run obsolete-autoloads.
2068 * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
2069 * simple.el (iswitchb-mode): Remove hand-written autoloads.
2070
2071 2014-03-27 Dmitry Gutov <dgutov@yandex.ru>
2072
2073 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2074 Highlight special globals with font-lock-builtin-face. (Bug#17057)
2075
2076 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2077 Don't propertize `?' or `!' as symbol constituent when after
2078 colon. (Bug#17097)
2079
2080 2014-03-27 Juanma Barranquero <lekktu@gmail.com>
2081
2082 * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
2083 which is no longer needed and causes trouble in GTK builds (bug#17046).
2084
2085 * emacs-lisp/package-x.el (package--archive-contents-from-url):
2086 Use url-insert-file-contents; package-handle-response no longer exists.
2087
2088 2014-03-26 Daniel Colascione <dancol@dancol.org>
2089
2090 * simple.el (process-menu-mode-map): New variable.
2091 (process-menu-delete-process): New command.
2092
2093 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
2094
2095 * emacs-lisp/package.el: Fix bug#16733 (again).
2096 (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
2097 (url-http-target-url): Remove unused declarations.
2098 (package-handle-response): Remove.
2099 (package--with-work-buffer): Use url-insert-file-contents and simplify.
2100 (package--download-one-archive): Use current-buffer instead of
2101 dynamic binding of `buffer'.
2102 (describe-package-1): Do not decode readme-string.
2103
2104 2014-03-26 Michael Albinus <michael.albinus@gmx.de>
2105
2106 * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
2107
2108 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
2109 from 2014-03-07, it decreases performance unnecessarily. Let-bind
2110 `remote-file-name-inhibit-cache' to nil in the second pass.
2111 (tramp-find-executable): Do not call "which" on SunOS.
2112 (tramp-send-command-and-check): Fix docstring.
2113 (tramp-do-copy-or-rename-file-directly): In the `rename' case,
2114 check whether source directory has set the sticky bit.
2115
2116 2014-03-26 Barry O'Reilly <gundaetiapo@gmail.com>
2117
2118 * simple.el (primitive-undo): Only process marker adjustments
2119 validated against their corresponding (TEXT . POS). Issue warning
2120 for lone marker adjustments in undo history. (Bug#16818)
2121 (undo-make-selective-list): Add marker adjustments to selective
2122 undo list based on whether their corresponding (TEXT . POS) is in
2123 the region. Remove variable adjusted-markers, which was unused
2124 and only non nil during undo-make-selective-list.
2125 (undo-elt-in-region): Return nil when passed a marker adjustment
2126 and explain in function doc.
2127
2128 2014-03-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2129
2130 * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
2131
2132 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
2133
2134 * progmodes/ruby-mode.el (ruby-expression-expansion-re):
2135 Match special global variables without curlies, too.
2136 (ruby-font-lock-keywords): Simplify the matcher for special global
2137 variables. Don't require a non-word character after the variable.
2138 (Bug#17057)
2139
2140 2014-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
2141
2142 * simple.el (redisplay-highlight-region-function): Increase priority of
2143 overlay to make sure boundaries are visible (bug#15899).
2144
2145 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
2146
2147 * frameset.el (frameset--initial-params): Fix typo in parameter name.
2148 (frameset-restore): Compare display strings with equal.
2149
2150 * frame.el (make-frame): Don't quote display name in error message,
2151 it is already a string.
2152
2153 2014-03-26 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2154
2155 * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
2156 the password.
2157
2158 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
2159
2160 * emacs-lisp/package.el (package--add-to-archive-contents):
2161 Include already installed and built-in packages in
2162 `package-archive-contents'.
2163 (package-install): Don't include already installed packages in the
2164 options during interactive invocation. (Bug#16762)
2165 (package-show-package-list): If the buffer is already displayed in
2166 another window, switch to that window.
2167
2168 2014-03-26 Reto Zimmermann <reto@gnu.org>
2169
2170 Sync with upstream vhdl mode v3.35.1.
2171 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
2172 (vhdl-compiler-alist): Doc fix.
2173 (vhdl-goto-line): Remove.
2174 (vhdl-mode-abbrev-table-init): Add XEmacs compat.
2175 (vhdl-mode) <paragraph-start>: Fix value.
2176 (vhdl-fix-statement-region): Not `for' in wait-statement.
2177 (vhdl-beautify-region): Also (un)tabify.
2178 (vhdl-get-visible-signals):
2179 Scan declarative part of generate statements.
2180 (vhdl-template-record): Fix indentation for record type declaration.
2181 (vhdl-expand-abbrev, vhdl-expand-paren):
2182 Revert to using fset again rather than defalias.
2183 (vhdl-scan-directory-contents): Tweak.
2184 (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
2185 (vhdl-compose-components-package):
2186 Replace vhdl-goto-line with forward-line.
2187 (top-level): Tweak speedbar frame selection.
2188 (vhdl-generate-makefile-1): Support for compilers with no
2189 unit-to-file name mapping (create directory with dummy files).
2190
2191 2014-03-26 Wilson Snyder <wsnyder@wsnyder.org>
2192
2193 Sync with upstream verilog-mode revision 702457d.
2194 * progmodes/verilog-mode.el (verilog-mode-version): Update.
2195 (create-lockfiles): Declare.
2196 (verilog-read-decls): Fix module header imports, bug709.
2197 Reported by Victor Lau.
2198 Fix parsing 'var' in AUTOs, msg1294. Reported by Dominique Chen.
2199 (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
2200 interface-only modules, bug721. Reported by Dean Hoyt.
2201
2202 2014-03-26 Glenn Morris <rgm@gnu.org>
2203
2204 * obsolete/gulp.el: Move here from emacs-lisp/.
2205
2206 * files.el (lock-buffer, unlock-buffer, file-locked-p):
2207 Remove fallback aliases, since they are always defined now.
2208
2209 2014-03-24 Daniel Colascione <dancol@dancol.org>
2210
2211 * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
2212 instead of cl-loop search function.
2213
2214 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
2215
2216 * calendar/parse-time.el (parse-time-iso8601-regexp)
2217 (parse-iso8601-time-string): Copied from `url-dav' so that we can use
2218 it more generally.
2219
2220 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
2221
2222 * net/dns.el (network-interface-list): Define for XEmacs.
2223
2224 2014-03-23 Magnus Henoch <magnus.henoch@gmail.com>
2225
2226 * net/dns.el (dns-servers-up-to-date-p): New function to see whether
2227 the network interfaces changed.
2228 (dns-query): Use it to flush the data.
2229
2230 2014-03-23 Juanma Barranquero <lekktu@gmail.com>
2231
2232 * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
2233
2234 2014-03-23 Daniel Colascione <dancol@dancol.org>
2235
2236 Change subword-mode to use `find-word-boundary-function-table' and
2237 replace `capitalized-words-mode'. Also, convert to lexical
2238 binding.
2239
2240 * progmodes/cap-words.el: Delete now-obsolete file.
2241 * progmodes/subword.el: Reimplement using
2242 `find-word-boundary-function-table'.
2243 (subword-mode-map): Hollow out.
2244 (capitalized-words-mode): Define as obsolete alias for
2245 `subword-mode'.
2246 (subword-mode, superword-mode): Tweak documentation to reflect new
2247 implementation; call `subword-setup-buffer'.
2248 (subword-forward, subword-capitalize): Add underscore to indicate
2249 unused variable.
2250 (subword-find-word-boundary-function-table): New constant.
2251 (subword-empty-char-table): New constant.
2252 (subword-setup-buffer): New function.
2253 (subword-find-word-boundary): New function.
2254
2255 2014-03-23 Daniel Colascione <dancol@dancol.org>
2256
2257 * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
2258 list to look for keyword arguments instead of `memq', fixing
2259 (Bug#3647) --- unfortunately, only for freshly-compiled code.
2260 Please make bootstrap.
2261
2262 2014-03-22 Glenn Morris <rgm@gnu.org>
2263
2264 * dired.el (dired-read-regexp): Make obsolete.
2265 (dired-mark-files-regexp, dired-mark-files-containing-regexp)
2266 (dired-flag-files-regexp):
2267 * dired-aux.el (dired-mark-read-regexp):
2268 * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
2269
2270 * startup.el (fancy-startup-text):
2271 * help.el (describe-gnu-project): Visit online info about GNU project.
2272
2273 * help-fns.el (help-fns--interactive-only): New function.
2274 (help-fns-describe-function-functions): Add the above function.
2275 * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
2276 (next-line, previous-line): Remove hand-written interactive-only
2277 information from doc strings, it is auto-generated now.
2278 * bookmark.el (bookmark-write):
2279 * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
2280 (epa-mail-import-keys): Mark interactive-only,
2281 and remove hand-written interactive-only information from doc strings.
2282 * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
2283 (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
2284 * files.el (not-modified):
2285 * simple.el (mark-whole-buffer): Mark interactive-only.
2286
2287 * emacs-lisp/byte-run.el (defun-declarations-alist):
2288 Add interactive-only. Doc tweak.
2289 (macro-declarations-alist): Doc tweak.
2290 * subr.el (declare): Doc tweak (add xref to manual).
2291 * comint.el (comint-run):
2292 * files.el (insert-file-literally, insert-file):
2293 * replace.el (replace-string, replace-regexp):
2294 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
2295 (delete-forward-char, goto-line, insert-buffer, next-line)
2296 (previous-line): Set interactive-only via declare.
2297
2298 2014-03-22 Dmitry Gutov <dgutov@yandex.ru>
2299
2300 * emacs-lisp/package.el (package-desc): Use the contents of the
2301 quoted form, not its cdr. (Bug#16873)
2302
2303 2014-03-22 Juanma Barranquero <lekktu@gmail.com>
2304
2305 * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
2306 benefit of doc.c; change parameter profile to match the X function.
2307
2308 2014-03-22 Leo Liu <sdl.web@gmail.com>
2309
2310 * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
2311 (temp-buffer-show-hook): Remove help-mode-finish. (Bug#16038)
2312
2313 2014-03-21 Richard Stallman <rms@gnu.org>
2314
2315 * battery.el (battery-linux-sysfs): Search for each field
2316 from the beginning of the buffer.
2317
2318 * subr.el (set-transient-map): Clear out function and value
2319 of the temporary symbol when we're done with it.
2320
2321 * mail/rmailsum.el (rmail-summary-delete-forward):
2322 Optimize case of reaching end and handling count.
2323 (rmail-summary-mark-deleted): Optimize when N is current msg.
2324 Don't create new summary line.
2325 (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
2326 (rmail-summary-undelete-many): Rewrite for speed.
2327 (rmail-summary-msg-number): New function.
2328
2329 * mail/rmail.el (rmail-delete-message): Update summary.
2330 (rmail-undelete-previous-message): Handle repeat count arg.
2331 (rmail-delete-backward, rmail-delete-forward): Likewise.
2332
2333 2014-03-21 Daniel Colascione <dancol@dancol.org>
2334
2335 * mail/emacsbug.el (report-emacs-bug): Include memory usage
2336 information in bug reports.
2337
2338 2014-03-21 Michael Albinus <michael.albinus@gmx.de>
2339
2340 * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
2341 and `tramp-copy-env'.
2342
2343 * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
2344 (tramp-maybe-open-connection): Handle `tramp-login-env'.
2345
2346 2014-03-21 Glenn Morris <rgm@gnu.org>
2347
2348 * electric.el (electric-indent-post-self-insert-function): Add doc.
2349
2350 2014-03-21 Dmitry Gutov <dgutov@yandex.ru>
2351
2352 * emacs-lisp/package.el (package-compute-transaction):
2353 Use `version-list-<=' to compare the requirement version against
2354 the version of package already to be installed. Update the error
2355 message. (Bug#16826)
2356
2357 * progmodes/ruby-mode.el (ruby-smie-rules):
2358 Add indentation rule for ` @ '. (Bug#17050)
2359
2360 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
2361
2362 * align.el (align-regexp): Remove superfluous backslash.
2363
2364 * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
2365 (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
2366 (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
2367 Fix docstring typos.
2368 (ffap-next): Use C-u in docstring.
2369 (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
2370 (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
2371 Remove superfluous backslashes.
2372 (ffap-string-at-point): Reflow docstring.
2373
2374 * server.el (server-host): Reflow docstring.
2375 (server-unload-function): Fix docstring typo.
2376 (server-eval-at): Remove superfluous backslash.
2377
2378 * skeleton.el (skeleton-insert): Remove superfluous backslash.
2379 (skeleton-insert): Doc fix.
2380 (skeleton-insert): Reflow docstring.
2381
2382 * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
2383 (tty-color-approximate, tty-color-by-index, tty-color-values)
2384 (tty-color-desc): Remove superfluous backslashes.
2385
2386 2014-03-21 Glenn Morris <rgm@gnu.org>
2387
2388 * cus-start.el (history-length): Bump :version.
2389
2390 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
2391 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
2392 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
2393 Don't set `make-backup-files'.
2394
2395 * info.el (info--prettify-description): New function,
2396 to give info-finder descriptions consistent case, punctuation.
2397 (Info-finder-find-node): Use it. Sort packages.
2398 Refer to "description" rather than "commentary".
2399
2400 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
2401
2402 * frameset.el (frameset--print-register): New function.
2403 (frameset-to-register): Use it.
2404
2405 2014-03-20 Juanma Barranquero <lekktu@gmail.com>
2406
2407 * progmodes/hideif.el (hif-string-to-number): New function.
2408 (hif-tokenize): Use it to understand non-decimal floats.
2409
2410 * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
2411
2412 * skeleton.el (skeleton-autowrap): Mark as obsolete. Doc fix.
2413
2414 2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2415
2416 * electric.el (electric-newline-and-maybe-indent): New command.
2417 Bind it globally to C-j.
2418 (electric-indent-mode): Don't mess with the global map any more.
2419 Don't drop the post-self-insert-hook is some buffer is still using it
2420 (bug#16770).
2421
2422 * bindings.el (global-map): Remove C-j binding.
2423
2424 * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
2425 the docstring of functions advised before dumping (bug#16993).
2426
2427 2014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change)
2428
2429 * ps-print.el (ps-generate-postscript-with-faces):
2430 Explicitly deactivate the mark (bug#16866).
2431 * simple.el (deactivate-mark): Update region highlight.
2432
2433 2014-03-19 Juanma Barranquero <lekktu@gmail.com>
2434
2435 * emacs-lisp/package.el (describe-package-1):
2436 Decode commentary (bug#16733).
2437
2438 2014-03-18 Juanma Barranquero <lekktu@gmail.com>
2439
2440 * custom.el (defcustom): Doc fix: recommend avoiding destructive
2441 modification of the value argument of :set (bug#16755).
2442
2443 2014-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
2444
2445 * simple.el (newline-and-indent): Do autofill (bug#17031).
2446
2447 2014-03-18 Dmitry Gutov <dgutov@yandex.ru>
2448
2449 * newcomment.el (comment-normalize-vars): Only add escaping check
2450 to `comment-start-skip' if not `comment-use-syntax'. (Bug#16971)
2451 (comment-beginning): Use `narrow-to-region' instead of moving back
2452 one character.
2453 (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
2454 (comment-start-skip): Update the docstring.
2455
2456 2014-03-18 Richard Stallman <rms@gnu.org>
2457
2458 * dired.el (dired-display-file): Force use of other window.
2459
2460 2014-03-18 Daniel Colascione <dancol@dancol.org>
2461
2462 * startup.el (tty-handle-args): Remove debug message from 2007.
2463
2464 2014-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
2465
2466 * emacs-lisp/nadvice.el (advice--interactive-form): New function.
2467 (advice--make-interactive-form): Use it to avoid (auto)loading function.
2468 (advice--make-1, advice-add, advice-remove):
2469 Remove braindead :advice-pending hack.
2470
2471 2014-03-17 Glenn Morris <rgm@gnu.org>
2472
2473 * calendar/calendar.el (calendar-generate-month): Apply weekend
2474 face to the right days; fixes 2013-08-06 change. (Bug#17028)
2475
2476 2014-03-17 Michael Albinus <michael.albinus@gmx.de>
2477
2478 * net/tramp.el (tramp-action-out-of-band): Read pending output.
2479 (tramp-call-process): Trace also DESTINATION.
2480
2481 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2482 Quote file names when they are local. Remove superfluous trace.
2483
2484 2014-03-17 Dmitry Gutov <dgutov@yandex.ru>
2485
2486 * newcomment.el (comment-beginning): If `comment-start-skip'
2487 doesn't match, move back one char and try again. (Bug#16971)
2488
2489 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2490 Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
2491 Set `comment-start-skip' to a simpler value that doesn't try to
2492 check if the semicolon is escaped (this is handled by
2493 `syntax-ppss' now). (Bug#16971)
2494
2495 * progmodes/scheme.el (scheme-mode-variables): Same.
2496
2497 2014-03-16 Martin Rudalics <rudalics@gmx.at>
2498
2499 Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
2500 * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
2501 current (Bug#16816, Bug#17007).
2502 (with-current-buffer-window): New macro doing the same as
2503 `with-temp-buffer-window' but with BUFFER-OR-NAME current.
2504 * help.el (help-print-return-message): Warn in doc-string to not
2505 use this in `with-help-window'.
2506 (describe-bindings-internal): Call `describe-buffer-bindings'
2507 from within help buffer. See Juanma's scenario in (Bug#16816).
2508 (with-help-window): Update doc-string.
2509 * dired.el (dired-mark-pop-up):
2510 * files.el (save-buffers-kill-emacs):
2511 * register.el (register-preview): Use `with-current-buffer-window'
2512 instead of `with-temp-buffer-window'.
2513
2514 2014-03-16 Juanma Barranquero <lekktu@gmail.com>
2515
2516 * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
2517 Implement inserting into current buffer, documented in their docstrings.
2518 (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
2519 (rst-section-tree-point, rst-forward-section, rst-indent)
2520 (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
2521 (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
2522 (rst-font-lock-handle-adornment-pre-match-form)
2523 (rst-repeat-last-character): Reflow docstrings.
2524 (rst-preferred-adornments, rst-update-section, rst-find-title-line)
2525 (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
2526 (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
2527 (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
2528 Fix docstring typos.
2529 (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
2530 (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
2531 (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
2532
2533 2014-03-15 Juanma Barranquero <lekktu@gmail.com>
2534
2535 * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
2536 for compatibility with other ports.
2537 (ns-initialize-window-system): Use it. It is set in term/common-win.el
2538 from the -xrm command line argument, but in the Nextstep port its value
2539 is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
2540
2541 * progmodes/python.el (defconst, python-syntax-count-quotes)
2542 (python-indent-region, python-indent-shift-right)
2543 (python-indent-dedent-line-backspace, python-nav-backward-sexp)
2544 (python-nav-backward-sexp-safe, python-nav-backward-up-list)
2545 (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
2546 (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
2547 (inferior-python-mode, python-shell-make-comint, run-python-internal)
2548 (python-shell-buffer-substring, python-shell-send-buffer)
2549 (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
2550 (python-completion-complete-at-point, python-fill-docstring-style)
2551 (python-eldoc-function, python-imenu-format-item-label)
2552 (python-imenu-format-parent-item-label)
2553 (python-imenu-format-parent-item-jump-label)
2554 (python-imenu--build-tree, python-imenu-create-index)
2555 (python-imenu-create-flat-index): Fix docstring typos.
2556 (python-indent-context, python-shell-prompt-regexp, run-python):
2557 Remove superfluous backslashes.
2558 (python-indent-line, python-nav-beginning-of-defun)
2559 (python-shell-get-buffer, python-shell-get-process)
2560 (python-info-current-defun, python-info-current-line-comment-p)
2561 (python-info-current-line-empty-p, python-util-popn): Doc fixes.
2562 (python-indent-post-self-insert-function, python-shell-send-file)
2563 (python-shell-completion-get-completions)
2564 (python-shell-completion-complete-or-indent)
2565 (python-eldoc--get-doc-at-point): Reflow docstrings.
2566
2567 2014-03-14 Glenn Morris <rgm@gnu.org>
2568
2569 * emacs-lisp/package.el (package-menu-mode-map):
2570 Replace use of obsolete function alias. Tweak menu item text.
2571
2572 * info.el (Info-finder-find-node):
2573 Ignore the `emacs' metapackage. (Bug#10813)
2574
2575 * finder.el (finder-list-matches): Include unversioned packages
2576 in the result of a keyword search.
2577
2578 * finder.el (finder--builtins-descriptions): New constant.
2579 (finder-compile-keywords): Use finder--builtins-descriptions.
2580
2581 2014-03-14 Dmitry Gutov <dgutov@yandex.ru>
2582
2583 * simple.el (blink-matching-paren): Describe the new value,
2584 `jump', enabling the old behavior.
2585 (blink-matching-open): Use that value. (Bug#17008)
2586
2587 2014-03-14 Glenn Morris <rgm@gnu.org>
2588
2589 * finder.el (finder-no-scan-regexp): Add leim-list.
2590 (finder-compile-keywords):
2591 Don't skip files with same basename. (Bug#14010)
2592 * Makefile.in (setwins_finder): New, excluding leim.
2593 (finder-data): Use setwins_finder.
2594
2595 * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
2596 (help-function-arglist, help-make-usage): Move from here...
2597 * help.el (help-split-fundoc, help-add-fundoc-usage)
2598 (help-function-arglist, help-make-usage): ... to here. (Bug#17001)
2599 * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
2600
2601 2014-03-14 Juanma Barranquero <lekktu@gmail.com>
2602
2603 * net/socks.el (socks, socks-override-functions)
2604 (socks-find-services-entry):
2605 * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
2606 (hif-find-ifdef-block):
2607 * progmodes/modula2.el (m2-indent): Fix docstring typos.
2608
2609 * net/tls.el (tls-program): Reflow docstring.
2610
2611 * progmodes/pascal.el (pascal-mode-abbrev-table)
2612 (pascal-imenu-generic-expression, pascal-auto-endcomments)
2613 (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
2614 (pascal-outline-mode): Fix docstring typos.
2615 (pascal-mode): Let define-derived-mode document mode hook.
2616 (pascal-uncomment-area): Reflow.
2617 (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
2618
2619 * progmodes/opascal.el (opascal-compound-block-indent)
2620 (opascal-case-label-indent): Fix docstring typos.
2621 (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
2622
2623 2014-03-13 Dmitry Gutov <dgutov@yandex.ru>
2624
2625 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2626 Fontify multiple adjacent negation chars. (Bug#17004)
2627
2628 2014-03-13 Tom Willemse <tom@ryuslash.org> (tiny change)
2629
2630 * emacs-lisp/package.el (package--prepare-dependencies):
2631 Accept requirements without explicit version (bug#14941).
2632
2633 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
2634
2635 * register.el (register-separator, copy-to-register): Doc fixes.
2636 (register-preview-default): Remove unnecessary call to concat.
2637
2638 * frameset.el (frameset-restore): When checking for a visible frame,
2639 use the action map instead of calling visible-frame-list.
2640
2641 2014-03-12 Jonas Bernoulli <jonas@bernoul.li>
2642
2643 * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
2644
2645 2014-03-12 Martin Rudalics <rudalics@gmx.at>
2646
2647 * window.el (fit-frame-to-buffer): Get maximum width from
2648 display's width instead of height.
2649
2650 2014-03-12 Glenn Morris <rgm@gnu.org>
2651
2652 * desktop.el (desktop-restore-frames)
2653 (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
2654 (desktop-restore-reuses-frames): Doc tweaks.
2655
2656 * electric.el (electric-indent-mode): Doc fix.
2657
2658 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
2659
2660 * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
2661 (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
2662 (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
2663 (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
2664 (cvs-dired-use-hook): Fix docstring typos.
2665 (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
2666 Doc fixes.
2667
2668 * vc/pcvs-defs.el (cvs-auto-remove-handled)
2669 (cvs-auto-remove-directories, cvs-default-ignore-marks)
2670 (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
2671 (cvs-execute-single-dir): Fix docstring typos.
2672
2673 * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
2674 (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
2675
2676 * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
2677
2678 * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
2679 Fix docstring typos.
2680
2681 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
2682
2683 * frameset.el (frameset--jump-to-register): Add autoload; it could be
2684 called from jump-to-register after unloading the frameset package.
2685
2686 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
2687
2688 * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
2689 (bug#16975). Deactivate the mark before setting it to nil.
2690 (activate-mark): Do nothing if region is already active.
2691
2692 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
2693
2694 * frameset.el (frameset--target-display): Remove definition; declare.
2695 (frameset-save, frameset-restore): Let-bind frameset--target-display.
2696
2697 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
2698
2699 * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
2700 (advice-add): Add a :advice--pending marker, so advice--make-1 knows
2701 when the advice is pending.
2702 (advice-remove): Remove this marker when not needed any more.
2703
2704 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
2705
2706 * frameset.el: Separate options for reusing frames and cleaning up.
2707 (frameset--reuse-list): Remove definition; declare.
2708 (frameset--action-map): Declare.
2709 (frameset--find-frame-if): Doc fix.
2710 (frameset--restore-frame): Cache frame action.
2711 (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
2712 how to clean up the frame list after restoring. Remove cleaning
2713 options from REUSE-FRAMES. Change all keyword values to symbols.
2714 (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
2715
2716 * desktop.el (desktop-restore-forces-onscreen)
2717 (desktop-restore-reuses-frames): Use non-keyword values.
2718 (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
2719
2720 2014-03-10 Glenn Morris <rgm@gnu.org>
2721
2722 * files.el (find-file): Doc fix: update info node name.
2723
2724 * emacs-lisp/advice.el (ad-add-advice, defadvice):
2725 Doc fix: remove references to deleted info nodes.
2726
2727 2014-03-10 Michael Albinus <michael.albinus@gmx.de>
2728
2729 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
2730 Do not add `nil' to the environment, when there's no remote `locale'.
2731 (tramp-find-inline-encoding): Check, that the remote host has
2732 installed perl, before sending scripts.
2733
2734 2014-03-10 Leo Liu <sdl.web@gmail.com>
2735
2736 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
2737 Clear eldoc-last-message. (Bug#16920)
2738
2739 2014-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
2740
2741 * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
2742 (bug#14430).
2743
2744 2014-03-09 Juri Linkov <juri@jurta.org>
2745
2746 * ansi-color.el (ansi-color-names-vector): Copy default colors
2747 from `xterm-standard-colors' that look well on the default white
2748 background (and also on the black background) to avoid illegible
2749 color combinations like yellow-on-white and white-on-white.
2750 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
2751
2752 2014-03-08 Juanma Barranquero <lekktu@gmail.com>
2753
2754 * frameset.el (frameset-restore): When no frame is visible, do not
2755 generate a list of frames, just make visible the selected one.
2756
2757 2014-03-08 Dmitry Gutov <dgutov@yandex.ru>
2758
2759 * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
2760 it only contains the repository root. (Bug#16897)
2761
2762 2014-03-07 Michael Albinus <michael.albinus@gmx.de>
2763
2764 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
2765 only when `remote-file-name-inhibit-cache' is nil.
2766 (tramp-sh-file-name-handler): Use `tramp-error'. Simplify code.
2767
2768 2014-03-06 Martin Rudalics <rudalics@gmx.at>
2769
2770 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
2771 Fix doc-strings.
2772 (fit-frame-to-buffer): New argument ONLY. Remove dependency on
2773 fit-frame-to-buffer variable. Fix doc-string.
2774 (fit-window-to-buffer): Set ONLY argument in call of
2775 fit-frame-to-buffer. Fix doc-string.
2776
2777 2014-03-06 Michael Albinus <michael.albinus@gmx.de>
2778
2779 * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
2780 (tramp-action-password): Clear password cache if needed.
2781 (tramp-read-passwd): Do not clear password cache.
2782
2783 * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
2784 cache unless it is the first password request.
2785
2786 2014-03-06 Glenn Morris <rgm@gnu.org>
2787
2788 * simple.el (newline): Doc tweak.
2789
2790 * emacs-lisp/shadow.el (load-path-shadows-find):
2791 Ignore dir-locals. (Bug#12357)
2792
2793 2014-03-05 Glenn Morris <rgm@gnu.org>
2794
2795 * files.el (interpreter-mode-alist):
2796 * progmodes/sh-script.el (sh-ancestor-alist): Add dash. (Bug#16938)
2797
2798 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
2799
2800 * frameset.el (frameset--initial-params): Filter out null entries.
2801
2802 2014-03-05 Martin Rudalics <rudalics@gmx.at>
2803
2804 * window.el (window-min-height, window-min-width):
2805 Rewrite doc-strings.
2806 (window-body-size): Add PIXELWISE argument to make it consistent
2807 with its callees.
2808
2809 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
2810
2811 * finder.el (finder-mode-map, finder-mode-syntax-table):
2812 Revert part of 2014-02-28 change.
2813
2814 2014-03-05 Lars Ingebrigtsen <larsi@gnus.org>
2815
2816 * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
2817 (eww-setup-buffer): Clear next/prev/etc more reliably.
2818 (eww-textarea-map): [tab] doesn't work on tty.
2819 Reported by Mario Lang.
2820
2821 * net/shr.el (shr-map): Ditto.
2822
2823 2014-03-04 Glenn Morris <rgm@gnu.org>
2824
2825 * minibuffer.el (completion-hilit-commonality):
2826 Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
2827
2828 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
2829
2830 * hilit-chg.el (hilit-chg-unload-function): New function.
2831 (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
2832 (hilit-chg-map-changes): Prefer cardinal number to digit.
2833 (hilit-chg-display-changes): Reflow docstring.
2834 (highlight-changes-rotate-faces): Remove superfluous backslash.
2835
2836 2014-03-04 Michael Albinus <michael.albinus@gmx.de>
2837
2838 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
2839 `tramp-send-command-and-check'.
2840
2841 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
2842
2843 * hexl.el (hexl-address-region, hexl-ascii-region)
2844 (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
2845 (hexl-backward-short, hexl-forward-short, hexl-backward-word)
2846 (hexl-forward-word, hexl-previous-line, hexl-next-line):
2847 Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
2848 (hexl-mode): Doc fix.
2849 (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
2850 (hexl-mode-ruler): Fix typos in docstrings.
2851
2852 * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
2853 (strokes-character, strokes-get-grid-position, strokes-list-strokes):
2854 Remove superfluous backslashes.
2855 (strokes-last-stroke, strokes-global-map, strokes-mode):
2856 Reflow docstrings.
2857 (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
2858 (strokes-xpm-for-compressed-string): Use quotes with buffer name.
2859 (strokes-distance-squared, strokes-global-set-stroke)
2860 (strokes-global-set-stroke-string): Doc fixes.
2861 (strokes-help): Fix typos; reflow docstring.
2862
2863 2014-03-04 Martin Rudalics <rudalics@gmx.at>
2864
2865 * window.el (window-in-direction): Fix doc-string.
2866
2867 2014-03-04 Glenn Morris <rgm@gnu.org>
2868
2869 * emacs-lisp/smie.el (smie-config-guess): Doc fix.
2870 Explicit error if no grammar.
2871 (smie-config-save): Doc fix. Fix quote typo.
2872
2873 2014-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
2874
2875 * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
2876 electric-indent-mode-hook if we obey electric-indent-mode.
2877 (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
2878 decide whether we obey electric-indent-mode.
2879 (c-change-set-fl-decl-start, c-extend-after-change-region):
2880 Silence warnings.
2881 (c-electric-indent-mode-hook): Assume we do want to obey
2882 electric-indent-mode.
2883
2884 * electric.el (electric-indent-mode-has-been-called): Remove.
2885 (electric-indent-mode): Fix accordingly.
2886
2887 * files.el (hack-local-variables): Mention file name in warning.
2888
2889 * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
2890
2891 2014-03-04 Michal Nazarewicz <mina86@mina86.com>
2892
2893 * bindings.el: Add comment describing why C-d binds to `delete-char'.
2894 * simple.el (delete-forward-char): Mark as interactive-only.
2895
2896 2014-03-03 Juanma Barranquero <lekktu@gmail.com>
2897
2898 * icomplete.el (icomplete-completions):
2899 Follow-up to 2014-03-01 change.
2900
2901 * icomplete.el: Miscellaneous doc fixes.
2902 Use Icomplete everywhere instead of icomplete for consistency.
2903 (icomplete-max-delay-chars): Fix typo.
2904 (icomplete-mode): Use \[].
2905 (icomplete-tidy, icomplete-exhibit): Reflow.
2906 (icomplete-minibuffer-setup-hook, icomplete-completions):
2907 Remove superfluous backlashes.
2908
2909 * ido.el: Miscellaneous doc fixes.
2910 Use Ido everywhere instead of ido or `ido' for consistency.
2911 (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
2912 (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
2913 (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
2914 (ido-separator): Extract obsolescence info from docstring and declare
2915 with make-obsolete-variable.
2916 (ido-minibuffer-setup-hook): Simplify example.
2917 (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
2918 (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
2919 (ido-completion-help, ido-completing-read): Fix typos in docstrings.
2920 (ido-everywhere): Reflow docstring.
2921 (ido-toggle-vc): Doc fix.
2922 (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
2923 of long list of keybindings.
2924
2925 2014-03-03 Glenn Morris <rgm@gnu.org>
2926
2927 * frame.el (display-pixel-height, display-pixel-width)
2928 (display-mm-dimensions-alist, display-mm-height)
2929 (display-mm-width): Doc tweaks.
2930
2931 2014-03-02 Barry O'Reilly <gundaetiapo@gmail.com>
2932
2933 * simple.el (undo-elt-in-region): Fix buffer corruption for edge
2934 case of undo in region.
2935
2936 2014-03-02 Martin Rudalics <rudalics@gmx.at>
2937
2938 * window.el (fit-window-to-buffer): Fix argument in window-size
2939 call when window is horizontally combined.
2940
2941 2014-03-02 Juanma Barranquero <lekktu@gmail.com>
2942
2943 * icomplete.el (icomplete-completions): Use string-width.
2944 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
2945
2946 2014-03-01 Dmitry Gutov <dgutov@yandex.ru>
2947
2948 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2949 Highlight regexp options. (Bug#16914)
2950
2951 2014-03-01 Martin Rudalics <rudalics@gmx.at>
2952
2953 * window.el (window--max-delta-1): Round down when calculating
2954 how many lines/columns we can get from a window.
2955
2956 2014-03-01 Glenn Morris <rgm@gnu.org>
2957
2958 * isearch.el (search-invisible): Doc fix.
2959
2960 * minibuffer.el (completion-hilit-commonality):
2961 Make `base-size' argument optional. Short-cut if `prefix-len' is 0.
2962 * comint.el (comint-dynamic-list-completions): Doc fix.
2963 * comint.el (comint-dynamic-list-completions):
2964 * filecache.el (file-cache-minibuffer-complete):
2965 * tempo.el (tempo-display-completions):
2966 * eshell/em-hist.el (eshell-list-history):
2967 Replace use of obsolete argument of display-completion-list.
2968
2969 2014-03-01 Juanma Barranquero <lekktu@gmail.com>
2970
2971 * icomplete.el (icomplete-completions):
2972 Revert back to using "..." when ?… cannot be displayed.
2973
2974 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
2975
2976 * finder.el (finder-unload-function): New function.
2977
2978 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
2979
2980 * dframe.el (dframe-detach):
2981 * find-dired.el (find-dired, find-name-dired):
2982 * finder.el (finder-mode-map, finder-mode-syntax-table)
2983 (finder-headmark, finder-select, finder-mouse-select):
2984 Fix docstring typos.
2985
2986 2014-02-28 Martin Rudalics <rudalics@gmx.at>
2987
2988 Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
2989 * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
2990 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
2991 Fix doc-string based on a suggestion by Nicolas Richard
2992 <theonewiththeevillook@yahoo.fr>.
2993 * help.el (with-help-window): Fix doc-string.
2994
2995 2014-02-28 Ivan Kanis <ivan@kanis.fr>
2996
2997 * net/shr.el (shr-image-animate): New option.
2998 (shr-put-image): Respect shr-image-animate.
2999
3000 2014-02-28 Michael Albinus <michael.albinus@gmx.de>
3001
3002 * net/tramp-adb.el (tramp-adb-parse-device-names):
3003 Use `accept-process-output'.
3004 (tramp-adb-handle-file-truename): Cache the localname only.
3005 (tramp-adb-handle-make-directory)
3006 (tramp-adb-handle-delete-directory): Flush file properties correctly.
3007 (tramp-adb-handle-set-file-modes): Do not raise an error when file
3008 modes cannot be changed.
3009
3010 * net/tramp-cache.el (tramp-flush-directory-property): Remove also
3011 file properties of symlinks.
3012
3013 2014-02-28 Per Starbäck <starback@stp.lingfil.uu.se>
3014
3015 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
3016 required/optional fields to match development biblatex. (Bug#16781)
3017
3018 2014-02-28 Andy Sawyer <andy.sawyer@gmail.com> (tiny change)
3019
3020 * saveplace.el (toggle-save-place):
3021 Fix argument handling. (Bug#16673)
3022
3023 2014-02-28 Glenn Morris <rgm@gnu.org>
3024
3025 * minibuffer.el (completions-first-difference)
3026 (completions-common-part, completion-hilit-commonality): Doc fixes.
3027
3028 2014-02-28 Karl Berry <karl@gnu.org>
3029
3030 * info.el (Info-mode-map): Add H for describe-mode,
3031 to synchronize with standalone Info.
3032
3033 2014-02-28 Emilio C. Lopes <eclig@gmx.net>
3034
3035 * progmodes/sql.el (sql-interactive-mode):
3036 Avoid setting global comint-input-ring-separator. (Bug#16814)
3037
3038 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
3039
3040 * net/dbus.el (dbus--init-bus): Declare function.
3041 (dbus-path-local, dbus-interface-local): New defconst.
3042 (dbus-init-bus): Use them.
3043 (dbus-return-values-table): Extend doc.
3044 (dbus-handle-bus-disconnect): Extend error message.
3045
3046 2014-02-27 Juanma Barranquero <lekktu@gmail.com>
3047
3048 * subr.el (y-or-n-p): Fix double space issue in message.
3049
3050 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
3051
3052 * net/tramp.el (tramp-call-process): Improve trace message.
3053 (tramp-handle-insert-file-contents): Trace error case.
3054
3055 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
3056 <insert-directory>: Use `tramp-handle-insert-directory'.
3057 (tramp-adb-handle-insert-directory): Remove function.
3058 (tramp-adb-send-command-and-check): New defun, replacing
3059 `tramp-adb-command-exit-status'. Change all callees.
3060 (tramp-adb-handle-file-attributes)
3061 (tramp-adb-handle-directory-files-and-attributes): Use it.
3062 (tramp-adb-ls-output-name-less-p):
3063 Use `directory-listing-before-filename-regexp'.
3064 (tramp-adb-handle-delete-directory): Flush also file properties of
3065 the truename of directory.
3066 (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
3067 (tramp-adb-handle-file-local-copy): Make the local copy readable.
3068 (tramp-adb-handle-write-region): Implement APPEND.
3069 (tramp-adb-handle-rename-file): Make it more robust. Flush file
3070 properties correctly.
3071 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
3072 variables. Check for connected devices only when needed.
3073
3074 2014-02-27 Glenn Morris <rgm@gnu.org>
3075
3076 * minibuffer.el (completion-table-dynamic)
3077 (completion-table-with-cache): Doc fixes.
3078
3079 * emacs-lisp/crm.el (crm-default-separator, crm-separator)
3080 (completing-read-multiple): Doc fixes.
3081
3082 2014-02-27 Daniel Colascione <dancol@dancol.org>
3083
3084 * minibuffer.el (completion--nth-completion): Fix indentation.
3085
3086 * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
3087 explicit tramp path is empty.
3088
3089 2014-02-27 Glenn Morris <rgm@gnu.org>
3090
3091 * emacs-lisp/crm.el (completing-read-multiple):
3092 Empower help-enable-auto-load.
3093
3094 2014-02-26 Glenn Morris <rgm@gnu.org>
3095
3096 * startup.el (command-line): Don't init the tty in daemon mode.
3097
3098 Avoid calling tty-setup-hook twice, eg if a term file
3099 explicitly calls tty-run-terminal-initialization. (Bug#16859)
3100 * faces.el (tty-run-terminal-initialization): Add run-hook argument.
3101 (tty-create-frame-with-faces): Use it.
3102 * startup.el (command-line): Pass run-hook argument
3103 to tty-run-terminal-initialization.
3104
3105 * dired.el (dired-restore-desktop-buffer): Demote errors;
3106 eg in case a glob match fails. (Bug#16884)
3107
3108 2014-02-26 Dmitry Gutov <dgutov@yandex.ru>
3109
3110 * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
3111 error from `read-from-string'. (Bug#16850)
3112
3113 * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
3114 result of `completing-read' in the interactive form. (Bug#16854)
3115
3116 2014-02-25 Glenn Morris <rgm@gnu.org>
3117
3118 * image.el (image-animate, image-animate-timeout):
3119 Stop animating images in dead buffers. (Bug#16878)
3120
3121 * emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
3122
3123 * faces.el (tty-setup-hook, tty-run-terminal-initialization):
3124 Doc fixes.
3125 * startup.el (term-setup-hook): Doc fix. Make obsolete.
3126 * term/sun.el (sun-raw-prefix-hooks):
3127 Use tty-setup-hook instead of term-setup-hook.
3128 (terminal-init-sun): Construct message from bytecomp plist.
3129 * term/wyse50.el (enable-arrow-keys): Doc fix.
3130
3131 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
3132
3133 * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
3134 Fix docstring typos.
3135
3136 2014-02-24 Michael Albinus <michael.albinus@gmx.de>
3137
3138 * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
3139
3140 2014-02-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
3141
3142 * minibuffer.el (completion--try-word-completion):
3143 Fix error when completing M-x commands (bug#16808).
3144
3145 2014-02-24 Leo Liu <sdl.web@gmail.com>
3146
3147 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
3148
3149 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
3150
3151 * apropos.el (apropos-print): Avoid formatting error when
3152 apropos-do-all and apropos-compact-layout are both t.
3153
3154 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
3155
3156 * apropos.el (apropos-property, apropos-all-words-regexp)
3157 (apropos-true-hit, apropos-variable, apropos-print):
3158 Fix docstring typos, and remove obsolete comment.
3159
3160 2014-02-23 Michael Albinus <michael.albinus@gmx.de>
3161
3162 * net/tramp-sh.el (tramp-sh-handle-file-truename):
3163 Preserve trailing "/". (Bug#16851)
3164
3165 2014-02-23 Dmitry Gutov <dgutov@yandex.ru>
3166
3167 * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
3168 after `=>' (bug#16811).
3169 (ruby-smie-rules): Handle the inconsistent second element of the
3170 list returned by `smie-indent--parent'.
3171 (ruby-font-lock-keywords): Disqualify any identifier before `=' as
3172 method call.
3173
3174 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
3175
3176 * elec-pair.el (electric-pair-text-syntax-table)
3177 (electric-pair-syntax-info, electric-pair--syntax-ppss)
3178 (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
3179 (electric-pair--looking-at-unterminated-string-p): Doc fix.
3180 (electric-pair--inside-string-p): Doc fix. Use `let', not `let*'.
3181
3182 2014-02-22 Glenn Morris <rgm@gnu.org>
3183
3184 * imenu.el (imenu--generic-function): Doc fix.
3185
3186 * register.el (frame-configuration-to-register): Make obsolete.
3187
3188 2014-02-22 Juanma Barranquero <lekktu@gmail.com>
3189
3190 * desktop.el (desktop-save-buffer-p): Do not fail when
3191 desktop-files-not-to-save is nil. Return t for true result
3192 as the doc says.
3193
3194 2014-02-22 Daniel Colascione <dancol@dancol.org>
3195
3196 * net/secrets.el (secrets-create-item, secrets-search-items):
3197 Check that attribute values are strings, avoiding the construction
3198 of invalid dbus messages.
3199
3200 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3201
3202 * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
3203 defun-declarations-alist.
3204
3205 2014-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
3206
3207 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
3208 (bug#16829).
3209
3210 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3211
3212 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
3213 (whitespace-newline, whitespace-trailing, whitespace-line)
3214 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
3215 (whitespace-space-after-tab): Fix typo in docstrings.
3216
3217 2014-02-21 Dmitry Gutov <dgutov@yandex.ru>
3218
3219 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
3220
3221 * electric.el (electric-indent-functions-without-reindent):
3222 Add `yaml-indent-line'.
3223
3224 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3225
3226 * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
3227 It has done nothing for years; should be removed after the release.
3228
3229 * simple.el (choose-completion): Fix docstring typo.
3230 (read-quoted-char-radix): Remove unneeded * in docstring.
3231 (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
3232 Don't escape parentheses unnecessarily in docstrings.
3233
3234 2014-02-21 Martin Rudalics <rudalics@gmx.at>
3235
3236 Fix handling of window-min-height/-width (Bug#16738).
3237 * window.el (window--dump-window, window--dump-frame):
3238 New functions.
3239 (window--min-size-1): Account for window dividers.
3240 When window-resize-pixelwise is nil, delay rounding till after the
3241 sum of the window components has been calculated.
3242 (window--min-delta-1, window--max-delta-1): When PIXELWISE is
3243 nil make sure at least one text line and two text columns remain
3244 fully visible.
3245 (window-resize): Signal an error when window-resize-apply fails.
3246 (window--resize-child-windows): Fix calculation of by how many
3247 pixels a window can still be shrunk via window-new-normal.
3248 (adjust-window-trailing-edge): Call window--resizable with
3249 correct TRAIL argument.
3250
3251 (with-temp-buffer-window): Don't evaluate BODY within
3252 with-current-buffer (Bug#16816).
3253
3254 2014-02-21 Michael Albinus <michael.albinus@gmx.de>
3255
3256 * net/tramp.el (tramp-check-cached-permissions):
3257 Call `file-attributes' with `suffix' being a symbol but a string.
3258
3259 2014-02-21 Daniel Colascione <dancol@dancol.org>
3260
3261 * net/dbus.el (dbus-init-bus-1): Declare new subr.
3262 (dbus-init-bus): New function: call into dbus-init-bus-1
3263 and installs a handler for the disconnect signal.
3264 (dbus-call-method): Rewrite to look for result in cons.
3265 (dbus-call-method-handler): Store result in cons.
3266 (dbus-check-event): Recognize events with nil sender as valid.
3267 (dbus-handle-bus-disconnect): New function. React to bus
3268 disconnection signal by synthesizing dbus error for each
3269 pending synchronous or asynchronous call.
3270 (dbus-notice-synchronous-call-errors): New function.
3271 (dbus-handle-event): Raise errors directly only when `dbus-debug'
3272 is true, not all the time.
3273
3274 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3275
3276 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
3277 Remove obsolescence declarations, these variables do not exist anymore.
3278
3279 * savehist.el (savehist-save-minibuffer-history)
3280 (savehist-additional-variables, savehist-file, savehist-mode-hook)
3281 (savehist-save-hook, savehist-coding-system, savehist-loaded)
3282 (savehist-load, savehist-install, savehist-autosave): Fix typos;
3283 mostly, refer to "Savehist mode" when talking about the mode,
3284 and not the function.
3285
3286 * saveplace.el (save-place): Remove redundant info in docstring.
3287 (save-place-forget-unreadable-files, toggle-save-place)
3288 (save-place-forget-unreadable-files, save-place-dired-hook):
3289 Fix typos and remove unneeded backslashes.
3290
3291 2014-02-20 Michael Albinus <michael.albinus@gmx.de>
3292
3293 * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
3294 (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
3295
3296 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3297 <insert-directory>: Use `tramp-handle-insert-directory'.
3298 (tramp-gvfs-handle-insert-directory): Remove function.
3299
3300 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
3301 Call `tramp-handle-insert-directory'.
3302
3303 2014-02-20 Juanma Barranquero <lekktu@gmail.com>
3304
3305 * elec-pair.el (electric-pair-syntax-info): Do not check syntax
3306 before the start of buffer/region (bug#16799).
3307
3308 2014-02-20 Glenn Morris <rgm@gnu.org>
3309
3310 * isearch.el (search-invisible): Doc fix.
3311
3312 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change)
3313
3314 * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
3315 (bug#16657).
3316
3317 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
3318
3319 * frameset.el (frameset-restore): Delay removing an old frame's
3320 duplicate id until the new frame has been correctly created.
3321
3322 2014-02-19 Michael Albinus <michael.albinus@gmx.de>
3323
3324 * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
3325 (tramp-check-cached-permissions): Call `file-attributes' if the
3326 cache is empty.
3327
3328 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
3329 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
3330
3331 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3332 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
3333 (tramp-gvfs-maybe-open-connection): Set always connection
3334 properties, even if target is mounted already.
3335
3336 * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
3337 Set tramp-autoload cookie.
3338 (tramp-get-remote-touch): New defun.
3339 (tramp-sh-handle-set-file-times): Use it.
3340 (tramp-sh-handle-directory-files-and-attributes):
3341 Use `tramp-handle-directory-files-and-attributes' if neither stat
3342 nor perl are available on the remote host.
3343
3344 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
3345 "/". Write long listing only when "l" belongs to the switches.
3346
3347 * net/trampver.el: Update release number.
3348
3349 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
3350
3351 * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
3352
3353 2014-02-19 Martin Rudalics <rudalics@gmx.at>
3354
3355 * window.el (window-state-put): Allow WINDOW to refer to an
3356 internal window (Bug#16793).
3357
3358 2014-02-19 Glenn Morris <rgm@gnu.org>
3359
3360 * textmodes/remember.el: Move provide statement to end.
3361 (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
3362 (remember-notes): Doc fixes.
3363
3364 2014-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
3365
3366 * delsel.el (delete-char): Restore incorrectly erased property
3367 (bug#16795).
3368
3369 2014-02-18 Juanma Barranquero <lekktu@gmail.com>
3370
3371 * frameset.el (frameset--restore-frame): When a frame is being reused
3372 and its root window is not alive, delete all the frame's windows before
3373 restoring the window state. This works around the issue in bug#16793.
3374
3375 2014-02-18 Glenn Morris <rgm@gnu.org>
3376
3377 * textmodes/remember.el (remember-data-directory)
3378 (remember-directory-file-name-format, remember-store-in-files)
3379 (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
3380 (remember-notes-save-and-bury-buffer)
3381 (remember-notes--kill-buffer-query): Doc fixes.
3382
3383 * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
3384
3385 2014-02-17 Alan Mackenzie <acm@muc.de>
3386
3387 Connect electric-indent-mode up with CC Mode. Bug #15478.
3388 * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
3389 to electric-indent-{,local-}-mode.
3390 (c-basic-common-init): Set electric-indent-inhibit.
3391 Initialise c-electric-flag from electric-indent-mode.
3392 (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
3393 New hook functions which propagate electric-indent-mode to CC mode.
3394
3395 * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
3396 hit, toggle electric-indent-local-mode.
3397
3398 * electric.el (electric-indent-mode-has-been-called):
3399 New variable.
3400
3401 2014-02-17 Juanma Barranquero <lekktu@gmail.com>
3402
3403 * frameset.el (frameset-cfg-id): New function.
3404 (frameset--reuse-frame, frameset-restore): Use it.
3405 (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
3406
3407 2014-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
3408
3409 * ido.el (ido-file-internal): Remove unused var `d'.
3410 Use \` for to match BoS. Fit within 80n columns.
3411
3412 2014-02-17 Daniel Colascione <dancol@dancol.org>
3413
3414 * net/dbus.el (dbus-call-method): Work around bug#16775 by having
3415 dbus-call-method check for completion using a busy-wait loop with
3416 gradual backoff.
3417
3418 2014-02-16 Michael Albinus <michael.albinus@gmx.de>
3419
3420 Sync with Tramp 2.2.9.
3421
3422 * net/trampver.el: Update release number.
3423
3424 2014-02-16 Dmitry Gutov <dgutov@yandex.ru>
3425
3426 * ido.el (ido-file-internal): Don't add the name of an existing
3427 directory twice. (Bug#16747)
3428
3429 2014-02-16 Glenn Morris <rgm@gnu.org>
3430
3431 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
3432 Do not use ediff-defvar-local on pre-defined variables. (Bug#16744)
3433
3434 2014-02-15 Michael R. Mauger <michael@mauger.com>
3435
3436 * progmodes/sql.el: Version 3.4
3437 (sql-oracle-options): New default value ("-L").
3438 (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
3439 (sql-placeholders-filter): Correct placeholder pattern.
3440 (sql-read-table-name): Bug fix. Detect absence of SQLi process.
3441 (sql-login-delay): New variable.
3442 (sql-product-interactive): Use it.
3443
3444 2014-02-15 Juanma Barranquero <lekktu@gmail.com>
3445
3446 * frameset.el (frameset--jump-to-register): Check that buffer is live
3447 (bug#16749).
3448
3449 2014-02-15 Glenn Morris <rgm@gnu.org>
3450
3451 * info.el (info-initialize): Revert 2014-01-10 change.
3452
3453 2014-02-14 Glenn Morris <rgm@gnu.org>
3454
3455 * replace.el (map-query-replace-regexp)
3456 (read-regexp-defaults-function, read-regexp): Doc fixes.
3457
3458 * dired.el (dired-read-regexp):
3459 * faces.el (list-faces-display):
3460 * misearch.el (multi-isearch-read-matching-buffers)
3461 (multi-isearch-read-matching-files):
3462 * play/cookie1.el (cookie-apropos):
3463 * progmodes/grep.el (grep-read-regexp): Doc fixes.
3464
3465 * textmodes/remember.el (remember): Use frameset-to-register
3466 rather than frame-configuration-to-register.
3467
3468 2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
3469
3470 * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
3471 incorrect keybinding.
3472
3473 2014-02-13 Daniel Colascione <dancol@dancol.org>
3474
3475 * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
3476 when adding overlays so that line numbers from compiler match line
3477 numbers we use.
3478
3479 2014-02-13 Glenn Morris <rgm@gnu.org>
3480
3481 * mail/rmail.el (rmail-probe): Be less strict. (Bug#16743)
3482
3483 * jit-lock.el (jit-lock-mode): Doc fix.
3484
3485 2014-02-13 Juanma Barranquero <lekktu@gmail.com>
3486
3487 * apropos.el (apropos-read-pattern): When the user passes an empty
3488 string, give a more helpful error message than "Wrong type
3489 argument: stringp, nil".
3490
3491 2014-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
3492
3493 * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
3494
3495 2014-02-13 Glenn Morris <rgm@gnu.org>
3496
3497 * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
3498
3499 2014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
3500
3501 * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
3502 shift-select commands.
3503
3504 2014-02-12 Dmitry Gutov <dgutov@yandex.ru>
3505
3506 * progmodes/js.el (js-indent-line): Don't widen.
3507 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
3508
3509 2014-02-12 Glenn Morris <rgm@gnu.org>
3510
3511 * icomplete.el (icomplete): Add info-link to defgroup.
3512 (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
3513 (icomplete-minibuffer-map, icomplete-mode)
3514 (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
3515
3516 * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
3517 (package-menu-filter): Rename from package-menu-filter-interactive.
3518 Doc fix.
3519
3520 2014-02-11 Juanma Barranquero <lekktu@gmail.com>
3521
3522 * frameset.el (frameset--jump-to-register): Select the required
3523 window and buffer before restoring position (bug#16696).
3524
3525 2014-02-11 Lars Ingebrigtsen <larsi@gnus.org>
3526
3527 * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
3528
3529 2014-02-10 Glenn Morris <rgm@gnu.org>
3530
3531 * jit-lock.el (jit-lock-force-redisplay): Doc fix. (Bug#14394)
3532
3533 2014-02-10 Eli Zaretskii <eliz@gnu.org>
3534
3535 * w32-common-fns.el (x-get-selection): Doc fix.
3536 * select.el (x-get-selection): Doc fix. (Bug#15109)
3537
3538 * face-remap.el (face-remap-add-relative)
3539 (face-remap-remove-relative, face-remap-reset-base)
3540 (face-remap-set-base): Call force-mode-line-update to redisplay
3541 the current buffer due to potential change in faces. (Bug#16709)
3542
3543 2014-02-10 Michael Albinus <michael.albinus@gmx.de>
3544
3545 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
3546 script more robustly.
3547
3548 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
3549
3550 * dired.el (dired-get-marked-files): Doc fix (bug#11534).
3551
3552 * simple.el (choose-completion): Doc fix (bug#14160).
3553
3554 * subr.el (event-start): Say what a nil EVENT value means.
3555
3556 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
3557 (bug#14197).
3558
3559 * progmodes/grep.el (find-program): Doc fix (bug#14289).
3560
3561 * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
3562
3563 * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
3564
3565 * files.el (confirm-kill-emacs): Allow specifying an arbitrary
3566 predicate function (bug#15455).
3567
3568 2014-02-10 Dmitry Gutov <dgutov@yandex.ru>
3569
3570 * ielm.el (inferior-emacs-lisp-mode): Instead of
3571 `comment-use-global-state', set `comment-use-syntax'.
3572
3573 2014-02-10 Glenn Morris <rgm@gnu.org>
3574
3575 * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
3576
3577 2014-02-09 Alan Mackenzie <acm@muc.de>
3578
3579 Fix c-invalidate-state-cache on narrowed buffers.
3580 * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
3581 Widen when setting and clearing the CPP delimiter properties.
3582
3583 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
3584
3585 * help.el (describe-bindings): Doc fix (bug#9888).
3586
3587 * files.el (save-buffer): Use ARG as the parameter name for
3588 consistency (bug#10346).
3589 (save-buffer): Clarify the 0 argument (bug#10346).
3590
3591 * cus-edit.el (customize-apropos): Fix error string.
3592 (custom-buffer-create): Doc fix (bug#11122).
3593 (custom-sort-items): Doc fix (bug#11121).
3594
3595 * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
3596
3597 * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
3598 (icomplete-simple-completing-p): Mention the previous variable.
3599
3600 * font-lock.el (font-lock-value-in-major-mode): Clarify the
3601 meaning of the parameter (bug#12282).
3602
3603 * files.el (find-file-noselect): Clarify prompt when changing
3604 readedness (bug#13261).
3605 (locate-file): Suffixes aren't returned, so don't say that they
3606 are (bug#12674).
3607 (backup-inhibited): Doc clarification (bug#12525).
3608
3609 * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
3610 before we actually start to delete things (bug#16331).
3611
3612 * subr.el (event-start): Doc fix (bug#14228).
3613 (event-end): Ditto.
3614
3615 2014-02-09 Glenn Morris <rgm@gnu.org>
3616
3617 * emacs-lisp/warnings.el (lwarn):
3618 Empower help-enable-auto-load. (Bug#15940)
3619
3620 2014-02-08 Andreas Schwab <schwab@linux-m68k.org>
3621
3622 * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
3623 (Bug#16690)
3624
3625 2014-02-08 Michael Albinus <michael.albinus@gmx.de>
3626
3627 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3628 Insert output at end of buffer. (Bug#16120)
3629
3630 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
3631
3632 * simple.el (choose-completion-string-functions): Document new
3633 calling convention (bug#14153).
3634 (execute-extended-command): Clarify doc string (bug#13373).
3635
3636 * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
3637
3638 * find-dired.el (find-name-dired): Doc fix (bug#14290).
3639 (find-grep-dired): Doc fix (bug#14288).
3640
3641 2014-02-08 Juri Linkov <juri@jurta.org>
3642
3643 * isearch.el (isearch-quote-char): Check character validity
3644 like in `quoted-insert' (bug#16677).
3645
3646 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
3647
3648 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
3649
3650 * isearch.el (isearch-hide-immediately): Doc clarification
3651 (bug#14723).
3652
3653 * simple.el (line-move): Document utility function used many
3654 places in the Emacs sources (bug#14843).
3655
3656 * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
3657 (dired-prev-marked-file): Doc fix (bug#14855).
3658 (dired-up-directory): Doc fix (bug#14848).
3659
3660 * minibuffer.el (read-file-name): Doc clarification (bug#15096).
3661
3662 * files.el (file-relative-name): Doc fix (bug#15159).
3663
3664 * fringe.el (fringe-styles): Doc fix (bug#15239).
3665
3666 * isearch.el (isearch-filter-predicate): Documentation typo fix
3667 (bug#15474).
3668
3669 * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
3670
3671 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
3672
3673 * replace.el (replace-match-maybe-edit): Doc clarification
3674 (bug#15632).
3675
3676 * subr.el (add-to-list): Refill the paragraphs (bug#15791).
3677
3678 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
3679
3680 2014-02-08 Glenn Morris <rgm@gnu.org>
3681
3682 * help-fns.el (describe-variable):
3683 Check {file,dir}-local-variables-alist, and buffer-file-name,
3684 in the correct buffer.
3685
3686 2014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
3687
3688 * help-fns.el (describe-variable): Fix the case where
3689 a value is directory-local with no dir-locals file. (Bug#16635)
3690
3691 2014-02-08 Glenn Morris <rgm@gnu.org>
3692
3693 * abbrev.el (edit-abbrevs-mode):
3694 Derive from fundamental-mode. (Bug#16682)
3695
3696 2014-02-07 Juanma Barranquero <lekktu@gmail.com>
3697
3698 * simple.el (quoted-insert): Check character validity (bug#16677).
3699
3700 2014-02-07 Juri Linkov <juri@jurta.org>
3701
3702 * desktop.el (desktop-read): Claim the lock when the owner is not
3703 the current process. (Bug#16157)
3704
3705 2014-02-07 Juri Linkov <juri@jurta.org>
3706
3707 * desktop.el (desktop-buffers-not-to-save): Change default from nil
3708 to "\\` ". (Bug#16651)
3709
3710 2014-02-07 Juri Linkov <juri@jurta.org>
3711
3712 * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
3713 when enabling, and `desktop-auto-save-cancel-timer' when disabling.
3714 (desktop-auto-save-cancel-timer): New function with some code from
3715 `desktop-auto-save-set-timer'.
3716 (after-init-hook): Don't call `desktop-auto-save-set-timer'.
3717 Instead of setting `desktop-save-mode' to nil, call
3718 `desktop-save-mode' with arg 0. (Bug#16630)
3719
3720 2014-02-07 Glenn Morris <rgm@gnu.org>
3721
3722 * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
3723 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
3724 (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
3725
3726 * obsolete/iswitchb.el: Move to obsolete/.
3727 * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
3728 since obsolete/ is not scanned for autoloads.
3729 * emacs-lisp/authors.el (authors-valid-file-names):
3730 Add iswitchb.el.
3731
3732 * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
3733 Disable now non-functional find-file-hook.
3734
3735 2014-02-06 Michael Albinus <michael.albinus@gmx.de>
3736
3737 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
3738 instead of ";" in order to avoid additional prompts. Let heredoc
3739 scripts read from tty. (Bug#16582)
3740 (tramp-send-command): No special handling of heredocs, it isn't
3741 necessary anymore.
3742
3743 2014-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
3744
3745 * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
3746 with a space (bug#16664). Limit the symbols considered to the ones
3747 that are bound or fbound (bug#16646).
3748
3749 2014-02-06 Glenn Morris <rgm@gnu.org>
3750
3751 * epa.el (epa-mail-aliases): Doc fix.
3752
3753 2014-02-06 Dmitry Gutov <dgutov@yandex.ru>
3754
3755 * emacs-lisp/lisp.el (lisp-completion-at-point):
3756 Use `completion-table-merge' instead of `completion-table-in-turn'
3757 (bug#16604).
3758
3759 * minibuffer.el (completion-table-merge): New function.
3760
3761 2014-02-05 Michael Albinus <michael.albinus@gmx.de>
3762
3763 * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
3764 (tramp-sh-handle-set-file-acl)
3765 (tramp-sh-handle-start-file-process)
3766 (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
3767 (tramp-find-executable, tramp-send-command): Use it.
3768
3769 2014-02-05 Glenn Morris <rgm@gnu.org>
3770
3771 * epa.el (epa-mail-aliases): Fix custom type. Doc tweak.
3772
3773 2014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
3774
3775 * progmodes/python.el (python-shell-send-string)
3776 (python-shell-send-string-no-output): Fix docstring (Bug#16547).
3777
3778 2014-02-04 Anders Lindgren <andlind@gmail.com>
3779
3780 * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
3781 the names (bug#16620).
3782
3783 2014-02-03 Martin Rudalics <rudalics@gmx.at>
3784
3785 * faces.el (window-divider): New default value. Rewrite doc-string.
3786 (window-divider-first-pixel, window-divider-last-pixel): New faces.
3787
3788 2014-02-03 Dmitry Gutov <dgutov@yandex.ru>
3789
3790 * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
3791 `protected' and `public' can also be called without arguments.
3792
3793 2014-02-03 Glenn Morris <rgm@gnu.org>
3794
3795 * register.el (window-configuration-to-register)
3796 (frame-configuration-to-register): Unadvertise unused argument.
3797 * frameset.el (frameset-to-register): Remove unused argument.
3798
3799 * frameset.el (frameset-to-register):
3800 * kmacro.el (kmacro-to-register):
3801 * register.el (increment-register):
3802 * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
3803 (calc-append-to-register, calc-prepend-to-register):
3804 * play/gametree.el (gametree-layout-to-register)
3805 (gametree-apply-register-layout):
3806 * textmodes/picture.el (picture-clear-rectangle-to-register)
3807 (picture-yank-rectangle-from-register):
3808 * vc/emerge.el (emerge-combine-versions-register):
3809 Use register-read-with-preview to read registers.
3810
3811 2014-02-03 João Távora <joaotavora@gmail.com>
3812
3813 * elec-pair.el (electric-pair-backward-delete-char): Don't error
3814 when at beginning of (possibly narrowed) buffer.
3815
3816 2014-02-02 Daniel Colascione <dancol@dancol.org>
3817
3818 * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
3819 Also try to display local help from just before point.
3820
3821 2014-02-02 Alan Mackenzie <bug-cc-mode@gnu.org>
3822
3823 c-parse-state. Don't "append-lower-brace-pair" in certain
3824 circumstances. Also fix an obscure bug where "\\s!" shouldn't be
3825 recognised as a comment.
3826
3827 * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
3828 as well as normal comment starter.
3829 (c-parse-state-get-strategy): Extra return possibility
3830 'back-and-forward.
3831 (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
3832 return value list to indicate replacement of a brace-pair cons
3833 with its car.
3834 (c-parse-state-1): With 'back-and-forward, only call
3835 c-append-lower-brace-pair-to state-cache when cons-separated.
3836
3837 2014-02-02 Jan Djärv <jan.h.d@swipnet.se>
3838
3839 * term/ns-win.el (ns-suspend-error): New function.
3840 (ns-initialize-window-system): Add ns-suspend-error to
3841 suspend-hook (Bug#16612).
3842
3843 2014-02-02 Daniel Colascione <dancol@dancol.org>
3844
3845 * progmodes/cc-defs.el (c-find-assignment-for-mode):
3846 Make loading cc-mode silent.
3847
3848 2014-02-02 Daniel Colascione <dancol@dancol.org>
3849
3850 * comint.el (comint-prompt-read-only): Change doc to suggest
3851 remap keybinding.
3852
3853 2014-02-02 Glenn Morris <rgm@gnu.org>
3854
3855 * register.el (register-read-with-preview, point-to-register)
3856 (window-configuration-to-register, frame-configuration-to-register)
3857 (jump-to-register, number-to-register, view-register, insert-register)
3858 (copy-to-register, append-to-register, prepend-to-register)
3859 (copy-rectangle-to-register): Doc fixes.
3860
3861 2014-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
3862
3863 * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
3864 * emacs-lisp/find-func.el (find-function-C-source): Idem.
3865 * emacs-lisp/nadvice.el (advice--cd*r): New function.
3866 * help-fns.el (describe-function-1): Use it.
3867
3868 2014-02-02 Glenn Morris <rgm@gnu.org>
3869
3870 * register.el (register-preview-default): New function,
3871 split from register-preview.
3872 (register-preview-function): Rename from register-preview-functions,
3873 make it not a hook.
3874 (register-preview): Use register-preview-function.
3875 (register-read-with-preview): Error on non-character event. (Bug#16595)
3876
3877 2014-02-01 Dmitry Gutov <dgutov@yandex.ru>
3878
3879 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
3880 `:' before binary operators (bug#16609). Don't check for `:'
3881 before `[' and `(', or their syntax status. A percent literal
3882 can't end with either.
3883 (ruby-font-lock-keywords): For built-ins that require arguments,
3884 check that they're followed by something that looks like argument
3885 (bug#16610).
3886
3887 2014-02-01 Lars Ingebrigtsen <larsi@gnus.org>
3888
3889 * subr.el (butlast): Document what an omitted N means (bug#13437).
3890 (nbutlast): Ditto.
3891
3892 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org>
3893
3894 * net/shr.el (shr-generic): Make into a defsubst to make the stack
3895 depth shallower (bug#16587).
3896 (shr-tag-svg): Respect `shr-inhibit-images'.
3897 (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
3898
3899 2014-01-31 Dmitry Gutov <dgutov@yandex.ru>
3900
3901 * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
3902 (ruby-smie-grammar): Make "." right-associative. Make its priority
3903 lower than the ternary and all binary operators.
3904 (ruby-smie-rules): Indent "(" relative to the first non-"."
3905 parent, or the first "." parent at indentation.
3906 Use `ruby-align-chained-calls' for indentation of "." tokens.
3907 (Bug#16593)
3908
3909 2014-01-31 Juri Linkov <juri@jurta.org>
3910
3911 * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
3912 from `make-hash-table'.
3913
3914 * textmodes/ispell.el (ispell-init-process): Change message format
3915 to be consistent with other messages.
3916
3917 2014-01-31 Glenn Morris <rgm@gnu.org>
3918
3919 * delsel.el (delete-selection-mode): Doc fix.
3920
3921 * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
3922 (trace-function-background): Doc fixes.
3923
3924 * ido.el (ido-use-virtual-buffers): Doc fix.
3925 Reset :version, since the default value has not changed.
3926
3927 * register.el (register-preview-delay, register-read-with-preview):
3928 Doc fixes.
3929
3930 * mail/reporter.el (reporter-dump-variable): In case of void-variable,
3931 do not mess with mail-buffer position (fixes 2009-11-03 change).
3932 * progmodes/cc-mode.el (c-submit-bug-report):
3933 Check auto-fill-mode is bound. (Bug#16592)
3934
3935 2014-01-31 Darren Hoo <darren.hoo@gmail.com>
3936
3937 * startup.el (fancy-splash-image-file): New function,
3938 split from fancy-splash-head.
3939 (fancy-splash-head, use-fancy-splash-screens-p): Use it,
3940 so that we are both using the same image. (Bug#16574)
3941
3942 2014-01-30 Glenn Morris <rgm@gnu.org>
3943
3944 * simple.el (eval-expression): Doc fix.
3945
3946 * hexl.el (hexl-mode-hook):
3947 * ielm.el (ielm-mode-hook):
3948 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
3949 (lisp-interaction-mode-hook):
3950 * progmodes/cfengine.el (cfengine3-documentation-function):
3951 Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
3952
3953 2014-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
3954
3955 * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
3956 is a symbol (bug#16584).
3957
3958 2014-01-30 Glenn Morris <rgm@gnu.org>
3959
3960 * help.el (help-for-help-internal): Add "P" to text.
3961
3962 2014-01-29 Glenn Morris <rgm@gnu.org>
3963
3964 * simple.el (just-one-space, cycle-spacing): Doc fixes.
3965
3966 2014-01-28 Martin Rudalics <rudalics@gmx.at>
3967
3968 * window.el (fit-frame-to-buffer): Fix calculations for margins and
3969 height constraints.
3970
3971 2014-01-28 Luke Lee <luke.yx.lee@gmail.com>
3972
3973 * progmodes/hideif.el: Extend to full CPP expression syntax.
3974 (hif-token-alist): Add missing tokens.
3975 (hif-token-regexp): Add support for float/octal/hex immediates.
3976 (hif-string-literal-regexp): New const.
3977 (hif-tokenize): Recognize strings and float/octal/hex immediates.
3978 (hif-exprlist): New function.
3979 (hif-parse-if-exp): Use it.
3980 (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
3981 (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
3982 (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
3983 (hif-logxor, hif-comma): New functions.
3984
3985 2014-01-28 Glenn Morris <rgm@gnu.org>
3986
3987 * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
3988
3989 * indent.el (tab-stop-list): Doc fix. Add :version.
3990
3991 * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
3992 (cvs-append-to-ignore): Add compatibility alias.
3993
3994 2014-01-27 Glenn Morris <rgm@gnu.org>
3995
3996 * dired.el (dired-hide-details-mode): Don't autoload it,
3997 since it cannot be used outside Dired buffers anyway.
3998
3999 * emulation/cua-base.el (cua-mode): Doc fix.
4000
4001 * dired.el (dired-hide-details-hide-symlink-targets)
4002 (dired-hide-details-hide-information-lines)
4003 (dired-hide-details-mode): Doc fixes.
4004
4005 * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
4006 * strokes.el (strokes-file): Doc fix. Bump :version.
4007 (strokes-help): Doc fix.
4008 * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
4009 * emulation/viper.el (viper): Doc fix for custom group.
4010 (top-level): Remove oh-so-no-longer-relevant text about vip.
4011 * obsolete/otodo-mode.el (todo-prefix): Doc fix.
4012
4013 * ido.el (ido-save-directory-list-file):
4014 * saveplace.el (save-place-file):
4015 * calendar/timeclock.el (timeclock-file):
4016 * net/quickurl.el (quickurl-url-file):
4017 * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
4018 * progmodes/idlwave.el (idlwave-config-directory):
4019 * textmodes/remember.el (remember-data-file):
4020 Bump :version.
4021
4022 2014-01-26 Glenn Morris <rgm@gnu.org>
4023
4024 * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
4025 Doc fix. Make obsolete.
4026 (opascal-mode): No longer mention opascal-tab-always-indents in doc.
4027
4028 * sort.el (delete-duplicate-lines): Doc fix.
4029
4030 2014-01-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4031
4032 * progmodes/ada-mode.el (ada):
4033 * woman.el (woman): Link to info manual and Commentary section.
4034
4035 * progmodes/flymake.el (flymake):
4036 * nxml/nxml-mode.el (nxml):
4037 * net/eww.el (eww):
4038 * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
4039 * htmlfontify.el (htmlfontify):
4040 * ses.el (ses):
4041 * epa.el (epa):
4042 * ido.el (ido): Link to info manual.
4043
4044 2014-01-25 Leo Liu <sdl.web@gmail.com>
4045
4046 * progmodes/flymake.el (flymake-make-overlay): No rear advance.
4047
4048 2014-01-25 Adam Sjøgren <asjo@koldfront.dk>
4049
4050 * net/shr.el (shr-tag-img): Prefer the title over the alt text
4051 (bug#16537).
4052
4053 2014-01-24 Juanma Barranquero <lekktu@gmail.com>
4054
4055 * net/eww.el (eww-download-callback):
4056 Fix reference to eww-download-directory.
4057
4058 * emacs-lisp/bytecomp.el (byte-compile-file):
4059 Remove unused local variable `file-name'.
4060
4061 2014-01-24 Glenn Morris <rgm@gnu.org>
4062
4063 * woman.el (woman-default-faces, woman-monochrome-faces):
4064 Fix obsolescence specification.
4065
4066 * subr.el (with-demoted-errors): Doc fix.
4067
4068 2014-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
4069
4070 * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
4071 (cl--macroexp-fboundp): New function.
4072 (cl--make-type-test): Use it.
4073
4074 2014-01-23 Glenn Morris <rgm@gnu.org>
4075
4076 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
4077 * simple.el (eval-expression): Doc fixes.
4078
4079 2014-01-22 Glenn Morris <rgm@gnu.org>
4080
4081 * emacs-lisp/authors.el (authors-fixed-entries): Addition.
4082
4083 2014-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
4084
4085 * emacs-lisp/package.el: Write files silently.
4086 (package-autoload-ensure-default-file, package--write-file-no-coding)
4087 (package-generate-description-file, package--download-one-archive)
4088 (package-install-from-archive): Tell `write-region' to stay quiet.
4089 (package-menu-mode, package-menu--print-info): Omit the Archive column
4090 if there's only one archive.
4091 (package-all-keywords, package--has-keyword-p): Remove dead code.
4092
4093 2014-01-22 Glenn Morris <rgm@gnu.org>
4094
4095 * version.el (emacs-bzr-version-bzr): Fix typo.
4096
4097 * version.el (emacs-repository-get-version):
4098 Check either .bzr or .git, but not both.
4099 Make the git case actually use the DIR argument, and return nil
4100 rather than the empty string.
4101 Avoid error if .git exists but the git executable is not found.
4102
4103 2014-01-22 Martin Rudalics <rudalics@gmx.at>
4104
4105 Fixes in window size functions around Bug#16430 and Bug#16470.
4106 * window.el (window-total-size, window-size): New argument ROUND.
4107 (window--min-delta-1, window-min-delta, window--max-delta-1):
4108 Be more conservative when calculating the numbers of lines or
4109 columns a window can shrink (Bug#16430).
4110 (fit-window-to-buffer): Simplify code.
4111 * term.el (term-window-width): Call window-body-width again.
4112
4113 2014-01-22 Glenn Morris <rgm@gnu.org>
4114
4115 * image.el (image-format-suffixes): Doc fix.
4116
4117 * international/quail.el (quail-define-package): Doc fix.
4118
4119 * emacs-lisp/authors.el (authors-valid-file-names)
4120 (authors-renamed-files-alist): Additions.
4121
4122 * vc/vc-git.el (vc-git-print-log): Remove --follow;
4123 reverts 2014-01-09 change. (Bug#16422)
4124
4125 * calc/calc-embed.el (thing-at-point-looking-at):
4126 * emacs-lisp/map-ynp.el (x-popup-dialog):
4127 * obsolete/lmenu.el (x-popup-dialog):
4128 * emacs-lisp/package.el (url-recreate-url):
4129 * mail/mailclient.el (clipboard-kill-ring-save):
4130 * subr.el (x-popup-dialog): Update declaration.
4131 * mail/rmail.el (rmail-mime-message-p):
4132 * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
4133
4134 2014-01-21 Daniel Colascione <dancol@dancol.org>
4135
4136 * progmodes/sh-script.el (sh--inside-noncommand-expression):
4137 Correctly detect when we're inside an arithmetic expansion form
4138 containing nested parenthesis.
4139 (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
4140 to detect cases where we shouldn't expand "<<" to a heredoc
4141 skeleton.
4142
4143 2014-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
4144
4145 * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
4146 (eldoc--message-command-p): New function.
4147 (eldoc-display-message-p): Use it.
4148 (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
4149 message is not automatically erased for us.
4150 (eldoc-print-current-symbol-info): Erase previous message, if any.
4151
4152 2014-01-21 Tassilo Horn <tsdh@gnu.org>
4153
4154 * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
4155 specify it's an interactive function.
4156
4157 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
4158 Fix regex used for scanning for citation keys which failed for
4159 citations with optional arguments.
4160
4161 2014-01-21 Leo Liu <sdl.web@gmail.com>
4162
4163 * simple.el (read--expression): Don't enable eldoc-mode.
4164
4165 2014-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
4166
4167 * simple.el (move-beginning-of-line): Make sure we don't move forward
4168 (bug#16497).
4169
4170 2014-01-20 Juri Linkov <juri@jurta.org>
4171
4172 * saveplace.el (toggle-save-place, save-place-to-alist)
4173 (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
4174 'dired-mode) before checking for dired-directory. (Bug#16477)
4175
4176 2014-01-20 Juri Linkov <juri@jurta.org>
4177
4178 * indent.el (indent-line-to): Use backward-to-indentation
4179 instead of back-to-indentation. (Bug#16461)
4180
4181 2014-01-20 Paul Eggert <eggert@cs.ucla.edu>
4182
4183 Revert some of the CANNOT_DUMP fix (Bug#16494).
4184 Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
4185 but fixing this can wait until after the next release.
4186 * Makefile.in (emacs): Keep EMACSLOADPATH empty.
4187
4188 2014-01-19 Michael Albinus <michael.albinus@gmx.de>
4189
4190 * eshell/esh-mode.el (eshell-password-prompt-regexp):
4191 Use `password-word-equivalents'.
4192 (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
4193 to t. (Bug#5664, Bug#13124)
4194
4195 2014-01-19 Alan Mackenzie <acm@muc.de>
4196
4197 Bind open-paren-in-column-0-is-defun-start to nil at some entry
4198 points.
4199 * progmodes/cc-engine.el (c-invalidate-state-cache-1)
4200 (c-parse-state-1, c-guess-basic-syntax): Bind it here.
4201 * progmodes/cc-mode.el (c-before-change, c-after-change)
4202 (c-font-lock-fontify-region): Bind it here.
4203
4204 2014-01-19 Martin Rudalics <rudalics@gmx.at>
4205
4206 * term.el (term-window-width): Call window-text-width instead of
4207 window-width (Bug#16470).
4208
4209 2014-01-18 Paul Eggert <eggert@cs.ucla.edu>
4210
4211 * simple.el (password-word-equivalents): Remove duplicates.
4212 Sort, to make this easier next time.
4213 Downcase. Omit ": " after "jelszó".
4214
4215 2014-01-18 Jan Djärv <jan.h.d@swipnet.se>
4216
4217 * term/common-win.el (saved-region-selection): Defvar it.
4218 (x-select-text): Set saved-region-selection (Bug#16382).
4219
4220 2014-01-18 Glenn Morris <rgm@gnu.org>
4221
4222 * emacs-lisp/authors.el (authors-aliases)
4223 (authors-renamed-files-alist): Add some entries.
4224
4225 2014-01-17 Michael Albinus <michael.albinus@gmx.de>
4226
4227 * net/tramp.el (tramp-password-prompt-regexp):
4228 Use `password-word-equivalents' if available.
4229 (tramp-action-password, tramp-process-one-action)
4230 (tramp-read-passwd): Let-bind `case-fold-search' to t. (Bug#13124)
4231
4232 2014-01-17 Chong Yidong <cyd@gnu.org>
4233
4234 * simple.el (password-word-equivalents): New defcustom.
4235 * comint.el (comint-password-prompt-regexp): Use it. Bump version
4236 to 24.4.
4237 (comint-watch-for-password-prompt): Let-bind `case-fold-search'
4238 to t. (Bug#13124)
4239
4240 2014-01-17 Dmitry Gutov <dgutov@yandex.ru>
4241
4242 * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
4243 (ruby-align-to-stmt-keywords): Change the default value.
4244 Use `ruby-alignable-keywords' to generate the possible customization
4245 choices.
4246 (ruby-smie-rules): Instead of using a hardcoded list of alignable
4247 keywords, check against the value of `ruby-alignable-keywords'
4248 (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
4249
4250 2014-01-17 Glenn Morris <rgm@gnu.org>
4251
4252 * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
4253
4254 Make M-x authors return zero *Authors Errors* from current logs.
4255 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
4256 (authors-ignored-files): Add some entries, remove others.
4257 (authors-ambiguous-files, authors-valid-file-names):
4258 Add some entries.
4259 (authors-renamed-files-alist): Add, remove, and adjust entries.
4260 (authors-renamed-files-regexps): Add some entries.
4261 Remove some very broad ones. Make some entries `lax'.
4262 (authors-lax-changelogs): New constant.
4263 (authors-disambiguate-file-name): Treat top-level specially.
4264 (authors-lax-changelog-p): New function.
4265 (authors-canonical-file-name): Check file as written against
4266 authors-valid-file-names. Do not special-case etc/.
4267 Handle `lax' logs and authors-renamed-files-regexps elements.
4268
4269 2014-01-16 Dmitry Gutov <dgutov@yandex.ru>
4270
4271 * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
4272 `assoc'. Use `nth' instead of `cdr'. Make private. Update all
4273 callers.
4274
4275 2014-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
4276
4277 * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
4278 Assume we're already in the proper buffer.
4279 Inspired by Anders Lindgren <andlind@gmail.com>.
4280 (follow-post-command-hook): Call it from the right buffer.
4281 (follow-comint-scroll-to-bottom): Adjust call.
4282 (follow-all-followers): Use get-buffer-window-list.
4283
4284 2014-01-15 Daniel Colascione <dancol@dancol.org>
4285
4286 * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
4287 `buffer-file-name' in interactive-form so that we don't leave
4288 pathless file names in `file-name-history'.
4289
4290 2014-01-15 Juri Linkov <juri@jurta.org>
4291
4292 * indent.el (indent-rigidly): Set deactivate-mark to nil
4293 in transient indentation mode. (Bug#16438)
4294
4295 2014-01-15 Dmitry Gutov <dgutov@yandex.ru>
4296
4297 * emacs-lisp/package.el (package-desc-keywords): New function
4298 (Bug#16222).
4299 (describe-package-1, package-all-keywords)
4300 (package--has-keyword-p): Use it.
4301
4302 2014-01-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
4303
4304 * simple.el (define-alternatives): When creating the
4305 COMMAND-alternatives variable, assign COMMAND as its definition
4306 name so that `describe-variable' can relocate it.
4307
4308 2014-01-14 Matthew Leach <matthew@mattleach.net> (tiny change)
4309
4310 * font-lock.el (font-lock-keywords): Fix typo in docstring
4311 (bug#16307).
4312
4313 2014-01-14 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4314
4315 * ispell.el (ispell-region): Reset `in-comment' for new line
4316 instead of wrongly reset `add-coment' (bug#13577).
4317
4318 2014-01-14 Daiki Ueno <ueno@gnu.org>
4319
4320 * epa-file.el (epa-file-write-region): Encode the region according
4321 to `buffer-file-format'. Problem reported at:
4322 <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
4323
4324 2014-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
4325
4326 * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
4327 so it applies in the right buffer (bug#16410).
4328
4329 2014-01-13 Daniel Colascione <dancol@dancol.org>
4330
4331 * textmodes/rst.el (rst-define-key): Provide deprecated
4332 keybindings through named functions instead of anonymous ones so
4333 that "??" doesn't appear in describe-mode output.
4334
4335 2014-01-13 Bastien Guerry <bzg@gnu.org>
4336
4337 * simple.el (define-alternatives): Call the selected command
4338 interactively. When setting `COMMAND--implementation' for the
4339 first time, tell the user how to chose another implementation.
4340 Enhance the docstring.
4341
4342 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4343
4344 * vc/log-edit.el: Fix highlighting of summary when it's the first line.
4345 (log-edit--match-first-line): New function.
4346 (log-edit-font-lock-keywords): Use it.
4347 (log-edit-mode): Make jit-lock-defer-multiline work.
4348
4349 2014-01-13 Bastien Guerry <bzg@gnu.org>
4350
4351 * rect.el (rectangle-mark-mode): When the region is not active,
4352 display a message saying that the mark as been set and that
4353 rectangle mode is in use.
4354 (rectangle--highlight-for-redisplay): Only put an overlay with a
4355 visible vertical bar when (display-graphic-p) is non-nil.
4356 This partially fixes Bug#16403.
4357
4358 2014-01-13 Juri Linkov <juri@jurta.org>
4359
4360 * info.el (Info-find-file): Go to DIR before displaying the error
4361 about a nonexistent file if no previous Info file is visited.
4362 Use `user-error' instead of `error' for "Info file %s does not exist".
4363 (Info-find-node-2): In case of a nonexistent node in unwind forms
4364 go to the Top node if there is no previous node to revert to.
4365 (Bug#16405)
4366
4367 2014-01-13 Martin Rudalics <rudalics@gmx.at>
4368
4369 fit-frame/window-to-buffer code fixes including one for Bug#14096.
4370 * window.el (fit-frame-to-buffer): Fix doc-string.
4371 Respect window-min-height/-width. Fit pixelwise when
4372 frame-resize-pixelwise is non-nil. Adjust right/bottom edge
4373 when avoiding that frame goes partially off-screen.
4374 (fit-window-to-buffer): Respect window-min-height/-width
4375 (Bug#14096).
4376
4377 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4378
4379 * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
4380 after an empty line.
4381
4382 2014-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
4383
4384 * net/shr.el (shr-render-region): Autoload.
4385
4386 2014-01-12 Xue Fuqiao <xfq.free@gmail.com>
4387
4388 * net/eww.el (eww-download-directory): Rename from
4389 `eww-download-path' (Bug#16419).
4390
4391 2014-01-12 Leo Liu <sdl.web@gmail.com>
4392
4393 * dired-x.el (dired-mode-map): Fix last change.
4394
4395 * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
4396
4397 2014-01-12 Paul Eggert <eggert@cs.ucla.edu>
4398
4399 Spelling fixes.
4400 * emacs-lisp/generic.el (generic--normalize-comments):
4401 Rename from generic--normalise-comments. All uses changed.
4402 * play/bubbles.el (bubbles--neighborhood-score)
4403 (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
4404 (bubbles--neighborhood-available)
4405 (bubbles--update-neighborhood-score):
4406 Rename from names with 'neighbourhood'. All uses changed.
4407
4408 2014-01-12 Leo Liu <sdl.web@gmail.com>
4409
4410 Re-implement the feature of showing eldoc info after editing.
4411 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
4412 (eldoc-edit-message-commands): New function.
4413 (eldoc-print-after-edit): New variable.
4414 (eldoc-pre-command-refresh-echo-area): Emit message only by
4415 eldoc-message-commands.
4416 (eldoc-mode): Restrict eldoc-message-commands to editing commands
4417 if eldoc-print-after-edit is set. (Bug#16346)
4418 * simple.el (read--expression): Enable eldoc-mode.
4419 * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
4420
4421 2014-01-11 Dani Moncayo <dmoncayo@gmail.com>
4422 Eric S. Raymond <esr@thyrsus.com>
4423
4424 * version.el (emacs-repository-get-version): Enhance so the
4425 function works correctly in either a Bazaar or Git repo.
4426
4427 2014-01-11 Eric S. Raymond <esr@thyrsus.com>
4428
4429 * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
4430 Goes with removal of the joke manpages from /etc.
4431
4432 2014-01-10 Kenichi Handa <handa@gnu.org>
4433
4434 * mail/rmail.el (rmail-get-coding-system):
4435 Check rmail-get-coding-function before "funcall"ing it.
4436
4437 2014-01-10 Glenn Morris <rgm@gnu.org>
4438
4439 * emacs-lisp/authors.el (authors-fixed-entries):
4440 Update for files that no longer exist.
4441
4442 2014-01-10 Eric S. Raymond <esr@thyrsus.com>
4443
4444 * version.el (emacs-bzr-get-version): Restore compatibilty with
4445 24.3 (Tested).
4446
4447 2014-01-10 Bozhidar Batsov <bozhidar@batsov.com>
4448
4449 * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
4450 and Podfile.
4451
4452 2014-01-10 Eli Zaretskii <eliz@gnu.org>
4453
4454 * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
4455
4456 2014-01-10 Chong Yidong <cyd@gnu.org>
4457
4458 * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
4459
4460 2014-01-10 Anders Lindgren <andlind@gmail.com>
4461
4462 * follow.el (follow-cache-command-list): Include right-char and
4463 left-char.
4464
4465 2014-01-10 Paul Eggert <eggert@cs.ucla.edu>
4466
4467 Spelling fixes.
4468 * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
4469 * woman.el (woman-mark-horizontal-position):
4470 Rename from woman-mark-horizonal-position. Use changed.
4471
4472 2014-01-10 Glenn Morris <rgm@gnu.org>
4473
4474 * info.el (info-initialize): If running uninstalled, ensure our
4475 own info files are always found first, even if INFOPATH is set.
4476
4477 * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
4478
4479 2014-01-09 David Engster <deng@randomsample.de>
4480
4481 * emacs-lisp/eieio-custom.el:
4482 * emacs-lisp/eieio-opt.el: Set generated autoload file to
4483 'eieio.el'. This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
4484 * emacs-lisp/eieio.el: Regenerate autoloads.
4485
4486 2014-01-09 Eric S. Raymond <esr@thyrsus.com>
4487
4488 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
4489 following renames. (Bug#8756)
4490
4491 2014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
4492
4493 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
4494 (bug#16382).
4495 (activate-mark): Add `no-tmm' argument.
4496 (set-mark, push-mark-command): Use it instead of running
4497 activate-mark-hook by hand.
4498
4499 2014-01-08 Eric S. Raymond <esr@thyrsus.com>
4500
4501 In preparation for the move to git, sanitize out some
4502 Bazaar-specific names.
4503
4504 * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
4505
4506 * version.el (emacs-bzr-version): Name changed to
4507 emacs-repository-version. Obsolete-variable alias made.
4508 * loadup.el: Follow through on this name change.
4509 * mail/emacsbug.el (report-emacs-bug): Factor out any
4510 assumption about the version control system in use.
4511
4512 2014-01-08 David Engster <deng@randomsample.de>
4513
4514 * help-fns.el (help-fns-describe-function-functions):
4515 New variable to call functions for augmenting help buffers.
4516 (describe-function-1): Remove explicit calls to
4517 `help-fns--compiler-macro', `help-fns--parent-mode' and
4518 `help-fns--obsolete'. Put them in above new variable instead, and
4519 call them through `run-hook-with-args'.
4520 * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
4521 `eieio-describe-class'. Not meant for interactive use anymore,
4522 but to augment existing help buffers. Remove optional second
4523 argument. Create proper button for file location.
4524 Rewrite function to use `insert' instead of `princ' and `prin1' where
4525 possible.
4526 (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
4527 (eieio-method-def, eieio-class-def): Move further up.
4528 (describe-method, describe-generic, eieio-describe-method):
4529 Remove aliases.
4530 (eieio-help-constructor, eieio-help-generic): Rename from
4531 `eieio-describe-constructor' and `eieio-describe-generic', resp.
4532 Rewrite to use `insert' in the current buffer and use proper help
4533 buttons.
4534 (eieio-help-find-method-definition)
4535 (eieio-help-find-class-definition): Also accept symbols as
4536 arguments.
4537 (eieio-help-mode-augmentation-maybee): Remove.
4538 (eieio-describe-class-sb): Use `describe-function'.
4539 * emacs-lisp/eieio.el (help-fns-describe-function-functions):
4540 Add `eieio-help-generic' and `eieio-help-constructor'.
4541
4542 2014-01-08 Paul Eggert <eggert@cs.ucla.edu>
4543
4544 Spelling fixes.
4545 * language/china-util.el (hz-ascii-designation):
4546 Rename from hz-ascii-designnation.
4547 (hz-ascii-designation): Rename from hz-ascii-designnation.
4548 All uses changed.
4549
4550 2014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
4551
4552 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
4553 package-alist.
4554
4555 2014-01-08 Bastien Guerry <bzg@gnu.org>
4556
4557 * emacs-lisp/package.el (package-delete):
4558 Correctly delete the package from package-alist.
4559
4560 2014-01-08 Daiki Ueno <ueno@gnu.org>
4561
4562 * emacs-lisp/package.el (url-recreate-url): Declare.
4563 (url-http-target-url): Declare.
4564 (package-handle-response): Include requested URL in the error message.
4565 (package--check-signature): Don't re-signal errors from
4566 package--with-work-buffer. Suggested by Stefan Monnier.
4567
4568 2014-01-07 Bastien Guerry <bzg@gnu.org>
4569
4570 * minibuffer.el (completion--try-word-completion): When both a
4571 hyphen and a space are possible candidates for the character
4572 following a word, display both candidates. (Bug#15980)
4573
4574 2014-01-07 Martin Rudalics <rudalics@gmx.at>
4575
4576 * window.el (balance-windows-2): While rounding don't give a
4577 window more than the remainder. Bug#16351, bug#16383.
4578
4579 2014-01-07 Glenn Morris <rgm@gnu.org>
4580
4581 * menu-bar.el (menu-bar-help-extra-packages): Remove.
4582 (menu-bar-help-menu): Use view-external-packages instead.
4583
4584 2014-01-07 Bastien Guerry <bzg@gnu.org>
4585
4586 * emacs-lisp/package.el (package-delete): Also delete the package
4587 name from `package-alist', not its description only.
4588
4589 2014-01-07 Glenn Morris <rgm@gnu.org>
4590
4591 * help.el (view-external-packages):
4592 * menu-bar.el (menu-bar-help-extra-packages):
4593 Visit efaq.info rather than etc/MORE.STUFF.
4594
4595 2014-01-07 Juri Linkov <juri@jurta.org>
4596
4597 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
4598 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
4599
4600 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
4601 that shadows RET. (Bug#16342)
4602
4603 2014-01-07 Chong Yidong <cyd@gnu.org>
4604
4605 * isearch.el (isearch-yank-char, isearch-yank-word)
4606 (isearch-yank-line): Doc fix.
4607
4608 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
4609
4610 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
4611 * emacs-lisp/elint.el (elint-find-builtins):
4612 * emacs-lisp/eldoc.el (eldoc-symbol-function):
4613 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
4614 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
4615 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
4616 * apropos.el (apropos-safe-documentation):
4617 * subr.el (symbol-file): Remove redundant fboundp.
4618 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
4619
4620 2014-01-06 Bastien Guerry <bzg@gnu.org>
4621
4622 * hl-line.el (global-hl-line-overlay): Make a local variable.
4623 (global-hl-line-overlays): New variable to store all overlays.
4624 (global-hl-line-mode): Don't delete overlays from the current
4625 buffer when `global-hl-line-sticky-flag' is non-nil.
4626 (global-hl-line-highlight): Add new overlays to
4627 `global-hl-line-overlays'.
4628 (global-hl-line-unhighlight-all): New function to delete all
4629 overlays when turning off `global-hl-line-mode'.
4630 This fixes Bug#16183.
4631
4632 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
4633
4634 * subr.el (set-transient-map): Fix nested case and docstring.
4635
4636 2014-01-06 Tassilo Horn <tsdh@gnu.org>
4637
4638 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
4639 `Texinfo' entry.
4640
4641 2014-01-06 Daniel Colascione <dancol@dancol.org>
4642
4643 Fix defun navigation in vc log view.
4644
4645 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
4646 like `beginning-of-defun'.
4647 (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
4648 log-view-end-of-defun to log-view-end-of-defun-1. Replace
4649 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
4650 (log-view-extract-comment): Call `log-view-current-entry' directly
4651 instead of relying on broken `log-view-beginning-of-defun' behavior.
4652
4653 2014-01-06 Paul Eggert <eggert@cs.ucla.edu>
4654
4655 Spelling fixes.
4656 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
4657 * emacs-lisp/debug.el (cancel-debug-on-entry):
4658 * epg.el (epg-error-to-string):
4659 * files.el (recover-file):
4660 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
4661 * mail/emacsbug.el (report-emacs-bug-hook):
4662 * mail/sendmail.el (mail-recover):
4663 * ses.el (ses-yank-resize):
4664 * term/ns-win.el (ns-print-buffer):
4665 Spelling fixes in diagnostics, mostly for "canceled" with one L.
4666 * epg.el (epg-key-capability-alist): Rename from misspelled version.
4667 All uses changed.
4668 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
4669
4670 2014-01-06 Leo Liu <sdl.web@gmail.com>
4671
4672 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
4673 to avoid shadowing global key. (Bug#16354)
4674
4675 2014-01-06 Daniel Colascione <dancol@dancol.org>
4676
4677 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
4678 rst-mode.
4679
4680 2014-01-05 Martin Rudalics <rudalics@gmx.at>
4681
4682 * window.el (balance-windows): Add mising t to fix Bug#16351.
4683
4684 2014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
4685
4686 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
4687 (bug#16285).
4688 (shr-insert): If we have a word that's longer than `shr-width',
4689 break after it anyway. Otherwise we'll do no breaking once we get
4690 such a long word.
4691
4692 2014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4693
4694 * net/eww.el (eww): Support single/double quote for search.
4695 * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
4696 (eww-history-quit): Delete and use quit-window.
4697 (eww-history-kill): Delete, because it doesn't work well and
4698 not necessary.
4699 (eww-history-mode-map): Delete some keys and add easy-menu.
4700
4701 2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
4702
4703 Fix misspelling of 'chinese' in rx (Bug#16237).
4704 * emacs-lisp/rx.el (rx-categories): Correct spelling of
4705 chinese-two-byte.
4706
4707 Change subword regexps back to vars (Bug#16296).
4708 * progmodes/subword.el (subword-forward-regexp)
4709 (subword-backward-regexp): Change these back to variables.
4710
4711 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
4712
4713 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
4714 syntax-begin-function (bug#16247).
4715
4716 2014-01-03 Chong Yidong <cyd@gnu.org>
4717
4718 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
4719 (advice--docstring): Delete variable.
4720 (advice--make-1): Leave the docstring empty.
4721 (advice-add): Use function-documentation for advised docstring.
4722
4723 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
4724 Ignore function-documentation property when getting documentation.
4725 (ad-activate-advised-definition): Use function-documentation
4726 generate the docstring.
4727 (ad-make-advised-definition): Don't call
4728 ad-make-advised-definition-docstring.
4729 (ad-make-advised-definition-docstring, ad-advised-definition-p):
4730 Delete functions.
4731
4732 * progmodes/sql.el (sql-help): Use function-documentation instead
4733 of dynamic-docstring-function property. No need to autoload now.
4734 (sql--help-docstring): New variable.
4735 (sql--make-help-docstring): Use it.
4736
4737 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
4738
4739 * ielm.el (ielm-tab): Retarget.
4740 (ielm-map): Use ielm-tab for tab.
4741 (ielm-complete-filename): Use comint-filename-completion.
4742 (ielm-complete-symbol): Remove.
4743 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
4744 remove ielm-tab from completion-at-point-functions (bug#16224).
4745
4746 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
4747 Beware signals raised by predicates (bug#16201).
4748
4749 2014-01-02 Richard Stallman <rms@gnu.org>
4750
4751 * dired-aux.el (dired-do-print): Handle printer-name.
4752
4753 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
4754 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
4755 (rmail-epa-decrypt): Turn off mime processing.
4756
4757 * mail/rmail.el (rmail-make-in-reply-to-field):
4758 Add parens in message-id.
4759
4760 * mail/rmail.el (rmail-get-coding-function): Variable.
4761 (rmail-get-coding-system): Use it.
4762
4763 2013-12-31 Eli Zaretskii <eliz@gnu.org>
4764
4765 * international/mule-conf.el: Unify the charset indian-is13194.
4766 (indian-is13194): Specify unify-map.
4767
4768 2013-12-31 Leo Liu <sdl.web@gmail.com>
4769
4770 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
4771
4772 2013-12-30 Daniel Colascione <dancol@dancol.org>
4773
4774 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
4775 of printing a useless when we resume from sleep.
4776
4777 * progmodes/sh-script.el
4778 (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
4779 in indentation code. (Bug#16233)
4780
4781 2013-12-28 João Távora <joaotavora@gmail.com>
4782
4783 * elec-pair.el (electric-pair-post-self-insert-function):
4784 Don't open extra newlines at beginning of buffer. (Bug#16272)
4785
4786 2013-12-28 Eli Zaretskii <eliz@gnu.org>
4787
4788 * frame.el (window-system-for-display): Don't allow to create a
4789 GUI frame from a -nw session on MS-Windows. (Bug#14739)
4790
4791 2013-12-28 Glenn Morris <rgm@gnu.org>
4792
4793 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
4794 Update callers.
4795
4796 * apropos.el (apropos-match-face):
4797 * calculator.el (calculator-displayer):
4798 * dabbrev.el (dabbrev-search-these-buffers-only):
4799 * face-remap.el (buffer-face-mode-face):
4800 * simple.el (yank-handled-properties):
4801 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
4802 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
4803 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
4804 (hashcash-double-spend-database):
4805 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
4806 (ruby-deep-indent-paren-style):
4807 * textmodes/flyspell.el (flyspell-auto-correct-binding):
4808 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
4809 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
4810 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
4811 Specify custom types.
4812
4813 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
4814 * bookmark.el (bookmark-bmenu-use-header-line):
4815 * doc-view.el (doc-view-scale-internally):
4816 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
4817 * register.el (register-preview-delay):
4818 * net/shr.el (shr-bullet):
4819 * progmodes/cfengine.el (cfengine-cf-promises)
4820 (cfengine-parameters-indent):
4821 * progmodes/octave.el (inferior-octave-error-regexp-alist):
4822 * textmodes/reftex-vars.el (reftex-label-regexps):
4823 * vc/log-edit.el (log-edit-setup-add-author): Add version.
4824
4825 * net/tls.el (tls-certtool-program): Fix default value.
4826
4827 * desktop.el (desktop-restore-in-current-display):
4828 * newcomment.el (comment-empty-lines):
4829 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
4830 (idlwave-pad-keyword):
4831 * progmodes/tcl.el (tcl-tab-always-indent):
4832 * textmodes/reftex-vars.el (reftex-index-default-tag):
4833 * elec-pair.el (electric-pair-skip-whitespace):
4834 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
4835
4836 * emacs-lisp/authors.el (authors-ignored-files)
4837 (authors-valid-file-names, authors-renamed-files-alist): Additions.
4838
4839 2013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
4840
4841 * shell.el (shell-dynamic-complete-command): Doc fix.
4842 (shell--command-completion-data): Shell completion now matches
4843 executable filenames from the current buffer's directory, on
4844 systems in which this behavior is the default (windows-nt, ms-dos).
4845
4846 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
4847
4848 * net/shr.el (shr-insert): Don't infloop if the width is zero.
4849
4850 2013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
4851
4852 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
4853 (bug#16251).
4854
4855 * electric.el: Move all electric-pair-* to elec-pair.el.
4856 * elec-pair.el: New file, split from electric.el.
4857
4858 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
4859
4860 * net/shr.el (shr-find-fill-point): Don't try to fill if the
4861 indentation level is larger than the width, because that will
4862 infloop.
4863 (shr-insert): Fill repeatedly long texts, so that Japanese is
4864 formatted correctly (bug#16263).
4865 (shr-find-fill-point): Off by one error in comparison with the
4866 indentation.
4867
4868 2013-12-26 João Távora <joaotavora@gmail.com>
4869
4870 * electric.el (electric-pair-mode): More flexible engine for skip-
4871 and inhibit predicates, new options for pairing-related functionality.
4872 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
4873 if that keeps or improves their balance in buffers.
4874 (electric-pair-delete-adjacent-pairs): Delete the pair when
4875 backspacing over adjacent matched delimiters.
4876 (electric-pair-open-extra-newline): Open extra newline when
4877 inserting newlines between adjacent matched delimiters.
4878 (electric--sort-post-self-insertion-hook):
4879 Sort post-self-insert-hook according to priority values when
4880 minor-modes are activated.
4881 * simple.el (newline-and-indent): Call newline with interactive
4882 set to t.
4883 (blink-paren-post-self-insert-function): Set priority to 100.
4884 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
4885 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
4886 comments. Locally set electric-pair-skip-whitespace to 'chomp and
4887 electric-pair-open-newline-between-pairs to nil.
4888
4889 2013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
4890
4891 * progmodes/python.el: Use lexical-binding.
4892 (python-nav-beginning-of-defun): Stop searching ASAP.
4893
4894 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
4895
4896 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
4897 Fix interactive spec. Doc fix. (Bug#15754)
4898
4899 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
4900
4901 * emacs-lisp/byte-run.el (eval-when-compile):
4902 * progmodes/cc-defs.el (cc-eval-when-compile):
4903 Fix edebug spec (bug#16184).
4904
4905 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
4906
4907 * net/shr.el (shr-visit-file): Remove debugging function.
4908 (shr-insert): Don't infloop if we can't find a good place to break
4909 the line (bug#16256).
4910
4911 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
4912
4913 * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
4914 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
4915 python-nav-lisp-forward-sexp-safe.
4916 (python-nav--forward-sexp): New argument SAFE allows switching
4917 forward sexp movement behavior for parens.
4918 (python-nav-forward-sexp): Throw errors on unterminated parens
4919 (Bug#16191).
4920 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
4921 (python-nav-backward-sexp-safe): New functions.
4922 (python-shell-buffer-substring):
4923 Use `python-nav-forward-sexp-safe'.
4924
4925 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
4926
4927 * net/shr.el (shr-find-fill-point): Don't break lines before a
4928 quotation mark.
4929 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
4930 (shr-find-fill-point): Remove the special checks for the quotation
4931 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
4932
4933 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4934
4935 * net/eww.el (eww-form-textarea): Use a different face for
4936 textareas than text input since they have different keymaps
4937 (bug#16142).
4938
4939 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
4940
4941 * progmodes/python.el (python-nav-beginning-of-statement):
4942 Speed up (Bug#15295).
4943
4944 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
4945
4946 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
4947 the window configuration.
4948
4949 2013-12-24 Eli Zaretskii <eliz@gnu.org>
4950
4951 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
4952 we run on MS-Windows or MS-DOS.
4953
4954 2013-12-24 Martin Rudalics <rudalics@gmx.at>
4955
4956 * window.el (balance-windows-area): Call window-size instead of
4957 window-height and window-width. Bug#16241.
4958
4959 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
4960
4961 * net/eww.el (eww-bookmark-quit): Remove.
4962 (eww-bookmark-browse): Restore the window configuration when you
4963 choose a bookmark (bug#16144).
4964
4965 2013-12-24 Daniel Colascione <dancol@dancol.org>
4966
4967 * icomplete.el: Remove redundant :group arguments to `defcustom'
4968 throughout.
4969 (icomplete-show-matches-on-no-input): New customizable variable.
4970 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
4971 we have something to show.
4972 (icomplete-exhibit): Compute completions even if we have no user input.
4973
4974 2013-12-23 Daniel Colascione <dancol@dancol.org>
4975
4976 * icomplete.el: Move `provide' to end of file.
4977
4978 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
4979
4980 * net/gnutls.el (gnutls-verify-error): Add version tag.
4981
4982 2013-12-23 Chong Yidong <cyd@gnu.org>
4983
4984 * subr.el (set-transient-map): Rename from
4985 set-temporary-overlay-map. Doc fix.
4986
4987 * face-remap.el (text-scale-adjust):
4988 * indent.el (indent-rigidly):
4989 * kmacro.el (kmacro-call-macro):
4990 * minibuffer.el (minibuffer-force-complete):
4991 * repeat.el (repeat):
4992 * simple.el (universal-argument--mode):
4993 * calendar/todo-mode.el (todo-insert-item--next-param):
4994 * progmodes/f90.el (f90-abbrev-start): Callers changed.
4995
4996 * indent.el (indent-rigidly): Use substitute-command-keys.
4997
4998 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4999
5000 * net/eww.el (eww-tag-select): Add text-property to jump to next
5001 select field.
5002 (eww): Add non-supported ftp error.
5003
5004 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5005
5006 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
5007 comments. Handle electric indent after typing `?' and `!'.
5008
5009 2013-12-22 Chong Yidong <cyd@gnu.org>
5010
5011 * faces.el (face-spec-recalc): If the theme specs are not
5012 applicable to a frame, fall back on the defface spec.
5013 This prevents themes from obliterating faces on low-color terminals.
5014
5015 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5016
5017 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
5018 after `{'. We need it after block openers, and it doesn't seem
5019 to hurt after hash openers.
5020
5021 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5022
5023 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
5024 extracted from `ruby-smie-rules'.
5025 (ruby--electric-indent-chars): New variable.
5026 (ruby--electric-indent-p): New function.
5027 (ruby-mode): Use `electric-indent-functions' instead of
5028 `electric-indent-chars'.
5029
5030 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5031
5032 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
5033 docstring.
5034 (ruby-smie-rules): Indent plus one level after `=>'.
5035
5036 2013-12-21 Richard Stallman <rms@gnu.org>
5037
5038 * simple.el (newline): Doc fix.
5039
5040 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5041
5042 * net/eww.el (eww-list-histories, eww-list-histories)
5043 (eww-history-browse, eww-history-quit, eww-history-kill)
5044 (eww-history-mode-map, eww-history-mode): New command and
5045 functions to list browser histories.
5046 (eww-form-text): Support text form with disabled
5047 and readonly attributes.
5048 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
5049
5050 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5051
5052 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
5053 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
5054 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
5055 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
5056 Use `user-error'.
5057 (eww-bookmark-mode-map): Add menu.
5058 (eww-render, eww-mode): Use `setq-local'.
5059 (eww-tool-bar-map): New variable.
5060 (eww-mode): Set `tool-bar-map'.
5061 (eww-view-source): Check for `html-mode' with `fboundp'.
5062
5063 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5064
5065 * net/shr.el (shr--extract-best-source): Don't bug out on audio
5066 elements with text inside. Also remove debugging.
5067
5068 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
5069
5070 * cus-start.el (all): Add ns-use-srgb-colorspace.
5071
5072 2013-12-21 Chong Yidong <cyd@gnu.org>
5073
5074 * custom.el (custom-theme-recalc-face): Do nothing if the face is
5075 undefined. Thus, theme settings for undefined faces do not take
5076 effect until the faces are defined with defface, the same as with
5077 theme variables.
5078
5079 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
5080 (face-spec-reset-face): Don't assign extra properties in temacs.
5081 (face-spec-recalc): Apply X resources too.
5082
5083 2013-12-21 Chong Yidong <cyd@gnu.org>
5084
5085 * faces.el (face-spec-set):
5086 * cus-face.el (custom-theme-set-faces, custom-set-faces):
5087 * custom.el (defface): Doc fixes (Bug#16203).
5088
5089 * indent.el (indent-rigidly-map): Add docstring, and move commands
5090 into named functions.
5091 (indent-rigidly-left, indent-rigidly-right)
5092 (indent-rigidly-left-to-tab-stop)
5093 (indent-rigidly-right-to-tab-stop): New functions. Decide on
5094 indentation direction based on bidi direction, and accumulate
5095 sequential commands in a single undo boundary.
5096 (indent-rigidly--pop-undo): New utility function.
5097
5098 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
5099
5100 * faces.el (read-face-name): Require crm.el when using crm-separator.
5101
5102 2013-12-20 Daniel Colascione <dancol@dancol.org>
5103
5104 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
5105 so that we don't reflow comments into the shebang line.
5106
5107 2013-12-20 Juri Linkov <juri@jurta.org>
5108
5109 * saveplace.el (save-place-to-alist): Add `dired-filename' as
5110 a position when `dired-directory' is non-nil. Check integer
5111 positions with `integerp'.
5112 (toggle-save-place, save-places-to-alist): Add check for
5113 `dired-directory'.
5114 (save-place-find-file-hook): Check integer positions with
5115 `integerp'.
5116 (save-place-dired-hook): Use `dired-goto-file' when
5117 `dired-filename' is found in the assoc list. Check integer
5118 positions with `integerp'.
5119 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
5120
5121 * dired.el (dired-initial-position-hook): Rename back from
5122 `dired-initial-point-hook'.
5123 (dired-initial-position): Rename `dired-initial-point-hook' to
5124 `dired-initial-position-hook'.
5125 (dired-file-name-at-point): Doc fix. (Bug#15329)
5126
5127 2013-12-20 Juri Linkov <juri@jurta.org>
5128
5129 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
5130 (read-regexp-suggestions): New function.
5131 (read-regexp): Use `read-regexp-defaults-function' to get default values.
5132 Use `read-regexp-suggestions'. Add non-empty default to history
5133 for empty input.
5134 (occur-read-regexp-defaults-function): Remove function.
5135 (occur-read-primary-args): Use `regexp-history-last' instead of
5136 `occur-read-regexp-defaults-function'.
5137
5138 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
5139 (hi-lock-line-face-buffer, hi-lock-face-buffer)
5140 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
5141 `hi-lock-read-regexp-defaults-function'. Doc fix.
5142 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
5143 with `find-tag-default-as-symbol-regexp'. Doc fix.
5144 (hi-lock-read-regexp-defaults): Remove function.
5145 (hi-lock-regexp-okay): Add check for null.
5146
5147 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
5148 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
5149
5150 * subr.el (find-tag-default-as-symbol-regexp): New function.
5151 (find-tag-default-as-regexp): Move symbol regexp formatting to
5152 `find-tag-default-as-symbol-regexp'.
5153
5154 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
5155
5156 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
5157 (Bug#14179)
5158
5159 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
5160
5161 * calendar/todo-mode.el: New implementation of item insertion
5162 commands and key bindings.
5163 (todo-key-prompt): New face.
5164 (todo-insert-item): New command.
5165 (todo-insert-item--parameters): New defconst, replacing defvar
5166 todo-insertion-commands-args-genlist.
5167 (todo-insert-item--param-key-alist): New defconst, replacing
5168 defvar todo-insertion-commands-arg-key-list.
5169 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
5170 (todo-insert-item--argsleft, todo-insert-item--apply-args)
5171 (todo-insert-item--next-param): New functions.
5172 (todo-insert-item--args, todo-insert-item--argleft)
5173 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
5174 New variables.
5175 (todo-key-bindings-t): Change binding of "i" from
5176 todo-insertion-map to todo-insert-item.
5177 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
5178 (todo-insertion-command-name, todo-insertion-commands-names)
5179 (todo-define-insertion-command, todo-insertion-commands)
5180 (todo-insertion-key-bindings, todo-insertion-map): Remove.
5181
5182 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
5183
5184 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
5185 (todo-toggle-item-highlighting): Use eval-and-compile instead of
5186 eval-when-compile.
5187 (todo-move-category): Allow choosing a non-existing todo file to
5188 move the category to, and create that file.
5189 (todo-default-priority): New user option.
5190 (todo-set-item-priority): Use it.
5191 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
5192 (desktop-restore-file-buffer): Declare.
5193 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
5194 (todo-modes-set-2): Locally set desktop-save-buffer to
5195 todo-desktop-save-buffer.
5196 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
5197 (auto-mode-alist): Add autoload cookie.
5198
5199 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
5200
5201 * emacs-lisp/subr-x.el: Renamed from helpers.el.
5202 helpers.el was a poor choice of name.
5203 (string-remove-prefix): New function.
5204 (string-remove-suffix): New function.
5205
5206 2013-12-20 Martin Rudalics <rudalics@gmx.at>
5207
5208 Fix assignment for new window total sizes.
5209 * window.el (window--pixel-to-size): Remove function.
5210 (window--pixel-to-total-1, window--pixel-to-total):
5211 Fix calculation of new total sizes.
5212
5213 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
5214
5215 * comint.el (comint-output-filter): Fix rear-nonsticky property
5216 placement (Bug#16010).
5217
5218 2013-12-20 Chong Yidong <cyd@gnu.org>
5219
5220 * faces.el (read-color): Minor fix for completion function.
5221
5222 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
5223
5224 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
5225 New option. (Bug#16182)
5226 (ruby-smie--indent-to-stmt-p): Use it.
5227 (ruby-smie-rules): Revert the logic in the handling of `when'.
5228 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
5229 (ruby-deep-arglist, ruby-deep-indent-paren)
5230 (ruby-deep-indent-paren-style): Update docstrings to note that the
5231 vars don't have any effect with SMIE.
5232
5233 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
5234
5235 * calc/calc.el (calc-enter, calc-pop): Use the variable
5236 `calc-context-sensitive-enter'.
5237
5238 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
5239
5240 * net/shr.el (shr-insert): Protect against infloops in degenerate
5241 tables.
5242
5243 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5244
5245 * progmodes/octave.el (octave): Add link to manual and octave
5246 homepage.
5247 (octave-mode-menu): Link to octave-mode manual.
5248
5249 2013-12-20 Leo Liu <sdl.web@gmail.com>
5250
5251 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
5252 insertion using skeleton-end-newline. (Bug#16138)
5253
5254 2013-12-20 Juri Linkov <juri@jurta.org>
5255
5256 * replace.el (occur-engine): Use `add-face-text-property'
5257 to add the face property to matches and titles. (Bug#14645)
5258
5259 * hi-lock.el (hi-green): Use lighter color "light green" closer to
5260 the palette of other hi-lock colors.
5261 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
5262
5263 2013-12-19 Juri Linkov <juri@jurta.org>
5264
5265 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
5266 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
5267 (minibuffer-history-symbol): Move variable declaration closer to
5268 its usage.
5269
5270 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
5271 (Bug#14785)
5272
5273 2013-12-19 Juri Linkov <juri@jurta.org>
5274
5275 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
5276 New function.
5277 (log-edit-hook): Add it to :options. (Bug#16170)
5278
5279 2013-12-19 Juri Linkov <juri@jurta.org>
5280
5281 * simple.el (eval-expression-print-format): Don't check for
5282 command names and the last command. Always display additional
5283 formats of the integer result in the echo area, and insert them
5284 to the current buffer only with a zero prefix arg.
5285 Display character when char-displayable-p is non-nil.
5286 (eval-expression): With a zero prefix arg, set `print-length' and
5287 `print-level' to nil, and insert the integer values from
5288 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
5289
5290 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
5291 `eval-last-sexp-arg-internal'. Doc fix.
5292 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
5293 `eval-last-sexp-print-value'. Doc fix.
5294 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
5295 Set `print-length' and `print-level' to nil when arg is zero.
5296 (eval-last-sexp): Doc fix.
5297 (eval-defun-2): Print the integer values from
5298 `eval-expression-print-format' at the end.
5299
5300 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
5301 values from `eval-expression-print-format' at the end.
5302
5303 * ielm.el (ielm-eval-input): Print the integer
5304 values from `eval-expression-print-format' at the end.
5305
5306 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
5307
5308 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
5309 2013-12-11T19:01:44Z!tzz@lifelogs.com.
5310
5311 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
5312
5313 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
5314 (hl-line-highlight, global-hl-line-highlight): Use it.
5315 (hl-line-overlay): Use defvar-local.
5316
5317 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
5318
5319 * term/ns-win.el: Require dnd.
5320 (global-map): Remove drag items.
5321 (ns-insert-text, ns-set-foreground-at-mouse)
5322 (ns-set-background-at-mouse):
5323 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
5324 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
5325 New functions.
5326
5327 2013-12-19 Glenn Morris <rgm@gnu.org>
5328
5329 * emacs-lisp/ert.el (ert-select-tests):
5330 Fix string/symbol mixup. (Bug#16121)
5331
5332 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
5333
5334 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
5335 keywords to their parent.
5336
5337 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
5338
5339 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
5340 first arg to be a string (fixed dead code), or an operator symbol.
5341 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
5342 operator symbols.
5343 (ruby-smie-rules): Remove parent token check in the `.' clause, it
5344 did nothing. Don't respond to `(:after ".")', it will be called
5345 with :before anyway. Remove the ` @ ' rule, it didn't seem to
5346 change anything. Only return indentation for binary operators
5347 when they are hanging. De-dent opening paren when its parent is
5348 `.', otherwise it looks bad when the dot is not at bol or eol
5349 (bug#16182).
5350
5351 2013-12-19 Juri Linkov <juri@jurta.org>
5352
5353 * replace.el (query-replace-read-args): Split a non-negative arg
5354 and a negative arg into separate elements.
5355 (query-replace, query-replace-regexp, replace-string)
5356 (replace-regexp): Add arg `backward'. Doc fix.
5357 (replace-match-maybe-edit): When new arg `backward' is non-nil,
5358 move point to the beginning of the match.
5359 (replace-search, replace-highlight): Use new arg `backward'
5360 to set the value of `isearch-forward'.
5361 (perform-replace): Add arg `backward' and use it to perform
5362 replacement backward. (Bug#14979)
5363
5364 * isearch.el (isearch-query-replace): Use a negative prefix arg
5365 to call `perform-replace' with a non-nil arg `backward'.
5366
5367 2013-12-18 Juri Linkov <juri@jurta.org>
5368
5369 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
5370 to the default list. Move `log-edit-show-files' to the end.
5371 Add more available functions to options.
5372 (log-edit): Move default specific settings to
5373 `log-edit-insert-message-template'. Don't move point.
5374 (log-edit-insert-message-template): New function.
5375 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
5376 (Bug#16170)
5377
5378 2013-12-18 Juri Linkov <juri@jurta.org>
5379
5380 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
5381 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
5382
5383 2013-12-18 Leo Liu <sdl.web@gmail.com>
5384
5385 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
5386 (Bug#16186)
5387
5388 2013-12-18 Eli Zaretskii <eliz@gnu.org>
5389
5390 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
5391 formats for displaying file sizes when the -s switch is given.
5392 Instead, compute a separate format for displaying the size in
5393 blocks, which is displayed in addition to the "regular" size.
5394 When -h is given in addition to -s, produce size in blocks in
5395 human-readable form as well. (Bug#16179)
5396
5397 2013-12-18 Tassilo Horn <tsdh@gnu.org>
5398
5399 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
5400 Reference tables with ~\ref{...} instead of only \ref{...}.
5401
5402 2013-12-18 Chong Yidong <cyd@gnu.org>
5403
5404 * cus-edit.el (custom-magic-alist): Fix "themed" description
5405 (Bug#14348).
5406
5407 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
5408 is non-nil, do not create a new entry in the symbol's theme-value
5409 or theme-face property; update theme-settings only (Bug#14664).
5410 (custom-available-themes): Doc fix.
5411
5412 * cus-theme.el (custom-new-theme-mode-map): Add bindings
5413 (Bug#15674).
5414
5415 * replace.el (occur-engine): Avoid infloop (Bug#7593).
5416
5417 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
5418
5419 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
5420 (Bug#13914).
5421
5422 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
5423
5424 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
5425
5426 2013-12-18 Glenn Morris <rgm@gnu.org>
5427
5428 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
5429 * cus-start.el (load-prefer-newer): New option.
5430
5431 2013-12-18 Le Wang <l26wang@gmail.com>
5432
5433 * comint.el (comint-previous-matching-input-from-input):
5434 Retain point (Bug#13404).
5435
5436 2013-12-18 Chong Yidong <cyd@gnu.org>
5437
5438 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
5439
5440 2013-12-18 Glenn Morris <rgm@gnu.org>
5441
5442 * mail/emacsbug.el (report-emacs-bug):
5443 Only mention enable-multibyte-characters if non-standard.
5444
5445 2013-12-17 Juri Linkov <juri@jurta.org>
5446
5447 * arc-mode.el (archive-extract-by-file): Check if directory exists
5448 before deletion to not show irrelevant errors if it doesn't exist.
5449
5450 2013-12-17 Juri Linkov <juri@jurta.org>
5451
5452 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
5453 (Bug#14751)
5454
5455 * net/eww.el (browse-web): Add alias to `eww'.
5456 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
5457 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
5458
5459 * net/browse-url.el (browse-url-browser-function): Move `eww'
5460 closer to similar functions.
5461
5462 * startup.el (fancy-startup-screen, fancy-about-screen):
5463 Set browse-url-browser-function to eww-browse-url locally.
5464 (Bug#14751)
5465
5466 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
5467
5468 * window.el (window--pixel-to-total): Remove unused `mini' var.
5469 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
5470 (split-window): Remove unused `new' var.
5471 (window--display-buffer): Remove unused `frame' and `delta' vars.
5472 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
5473 and display-width'.
5474
5475 2013-12-17 Martin Rudalics <rudalics@gmx.at>
5476
5477 * dired.el (dired-mark-pop-up):
5478 * register.el (register-preview): Don't bind
5479 split-height-threshold here since it's now done in
5480 display-buffer-below-selected.
5481
5482 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
5483
5484 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
5485 xterm-rgb-convert-to-16bit.
5486 (rxvt-register-default-colors): Standardize with
5487 xterm-register-default-colors (Bug#14078).
5488
5489 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
5490
5491 * simple.el (kill-region): Pass mark first, then point, so that
5492 kill-append works right (Bug#12819).
5493 (copy-region-as-kill, kill-ring-save): Likewise.
5494
5495 2013-12-17 Leo Liu <sdl.web@gmail.com>
5496
5497 * net/rcirc.el (rcirc-add-face):
5498 * eshell/em-prompt.el (eshell-emit-prompt):
5499 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
5500 (Bug#16167)
5501
5502 2013-12-17 Chong Yidong <cyd@gnu.org>
5503
5504 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
5505 Suggested by Xue Fuqiao.
5506
5507 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
5508
5509 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
5510
5511 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
5512
5513 * net/shr.el (shr-insert-document): Remove unused var
5514 `shr-preliminary-table-render'.
5515 (shr-rescale-image): Remove unused arg `force'.
5516 (shr-put-image): Update calls accordingly.
5517 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
5518
5519 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
5520
5521 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
5522 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
5523 :close-all, to see which indentation method to use (Bug#16116).
5524 (smie-rules-function): Document the method :close-all.
5525
5526 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
5527
5528 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
5529
5530 * net/eww.el (eww-display-html): If we can't find the anchor we're
5531 looking for, then go to point-min.
5532
5533 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
5534
5535 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
5536 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
5537 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
5538 Expand dir too, in case it's relative.
5539
5540 2013-12-16 Juri Linkov <juri@jurta.org>
5541
5542 * desktop.el (desktop-auto-save-timeout): Change default to
5543 `auto-save-timeout'. Doc fix.
5544 (desktop-save): Skip the timestamp in desktop-saved-frameset
5545 when checking for auto-save changes.
5546 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
5547 `desktop-auto-save' is called repeatedly by the idle timer.
5548 (desktop-auto-save-set-timer): Replace `run-with-timer' with
5549 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
5550 (Bug#15331)
5551
5552 2013-12-16 Juri Linkov <juri@jurta.org>
5553
5554 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
5555 (Bug#16035)
5556 (isearch-pre-command-hook): Check `this-command' for symbolp.
5557
5558 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
5559
5560 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
5561
5562 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
5563
5564 * progmodes/cfengine.el (cfengine3--current-word): Remove.
5565 (cfengine3--current-function): Bring in the current-function
5566 functionality from `cfengine3--current-word'.
5567 (cfengine3-completion-function): Bring in the
5568 bounds-of-current-word functionality from
5569 `cfengine3--current-word'.
5570
5571 2013-12-16 Martin Rudalics <rudalics@gmx.at>
5572
5573 * window.el (display-buffer-below-selected):
5574 Bind split-height-threshold to 0 as suggested by Juri Linkov.
5575
5576 2013-12-16 Leo Liu <sdl.web@gmail.com>
5577
5578 * progmodes/compile.el (compile-goto-error): Do not push-mark.
5579 Remove NOMSG arg and all uses changed.
5580
5581 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
5582
5583 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
5584 (cua--deactivate-rectangle): Don't deactivate the mark.
5585 (cua-set-rectangle-mark): Don't set mark-active since
5586 cua--activate-rectangle already does it for us.
5587 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
5588 non-rectangular region.
5589
5590 * emulation/cua-base.el (cua-repeat-replace-region):
5591 Use with-current-buffer.
5592
5593 * net/gnutls.el: Use cl-lib.
5594 (gnutls-negotiate): `mapcan' -> cl-mapcan.
5595
5596 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
5597
5598 * emacs-lisp/package.el (package-built-in-p): Support both
5599 built-in and the package.el converted package descriptions.
5600 (package-show-package-list): Allow keywords.
5601 (package-keyword-button-action): Use it instead of
5602 `finder-list-matches'.
5603 (package-menu-filter-interactive): Interactive filtering (by
5604 keyword) function.
5605 (package-menu--generate): Support keywords and change keymappings
5606 and headers when they are given.
5607 (package--has-keyword-p): Helper function.
5608 (package-menu--refresh): Use it.
5609 (package--mapc): Helper function.
5610 (package-all-keywords): Use it.
5611 (package-menu-mode-map): Set up menu items and keybindings to
5612 provide a filtering UI.
5613
5614 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
5615
5616 * net/gnutls.el (gnutls-verify-error): New defcustom to control
5617 the behavior when a certificate fails validation. Defaults to
5618 old behavior: never abort, just warn.
5619 (gnutls-negotiate): Use it.
5620
5621 2013-12-14 Martin Rudalics <rudalics@gmx.at>
5622
5623 * window.el (display-buffer-below-selected): Never split window
5624 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
5625
5626 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
5627
5628 * emacs-lisp/package.el (package--prepare-dependencies): New function.
5629 (package-buffer-info): Use it (bug#15108).
5630
5631 2013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
5632
5633 * icomplete.el (icomplete-completions): Make sure the prefix is already
5634 displayed elsewhere before hiding it (bug#16219).
5635
5636 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
5637
5638 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
5639 open-paren tokens when preceded by a open-paren, too.
5640 (ruby-smie-rules): Handle virtual indentation after open-paren
5641 tokens specially. If there is code between it and eol, return the
5642 column where is starts (Bug#16118).
5643
5644 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
5645
5646 * progmodes/cfengine.el: Fix `add-hook' doc.
5647 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
5648 (cfengine3--current-word): Fix parameters.
5649 (cfengine3-make-syntax-cache): Simplify further.
5650 (cfengine3-completion-function, cfengine3--current-function):
5651 Use `assq' for symbols.
5652 (cfengine3--current-function): Fix `cfengine3--current-word' call.
5653
5654 2013-12-13 Glenn Morris <rgm@gnu.org>
5655
5656 * loadup.el (load-path): Warn if site-load or site-init changes it.
5657 No more need to reset it when bootstrapping.
5658
5659 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
5660
5661 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
5662 locations for cf-promises.
5663 (cfengine-mode-syntax-functions-regex): New caching variable.
5664 (cfengine3-fallback-syntax): Fallback syntax for cases where
5665 cf-promises doesn't run.
5666 (cfengine3--current-word): Reimplement using
5667 `cfengine-mode-syntax-functions-regex'.
5668 (cfengine3-completion-function, cfengine3--current-function):
5669 Use `cfengine3-make-syntax-cache' directly.
5670 (cfengine3-clear-syntax-cache): New function.
5671 (cfengine3-make-syntax-cache): Simplify and create
5672 `cfengine-mode-syntax-functions-regex' on demand.
5673 (cfengine3-format-function-docstring): Don't call
5674 `cfengine3-make-syntax-cache' explicitly.
5675
5676 2013-12-13 Martin Rudalics <rudalics@gmx.at>
5677
5678 Fix windmove-find-other-window broken after pixelwise resizing
5679 (Bug#16017).
5680 * windmove.el (windmove-other-window-loc): Revert change from
5681 2013-12-04.
5682 (windmove-find-other-window): Call window-in-direction.
5683 * window.el (window-in-direction): New arguments SIGN, WRAP and
5684 MINI to emulate original windmove-find-other-window behavior.
5685
5686 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
5687
5688 * simple.el (blink-matching--overlay): New variable.
5689 (blink-matching-open): Instead of moving point, highlight the
5690 matching paren with an overlay
5691 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
5692
5693 * faces.el (paren-showing-faces, show-paren-match)
5694 (show-paren-mismatch): Move from paren.el.
5695
5696 2013-12-13 Leo Liu <sdl.web@gmail.com>
5697
5698 * indent.el (indent-region): Disable progress reporter in
5699 minibuffer. (Bug#16108)
5700
5701 * bindings.el (visual-order-cursor-movement): Fix version.
5702
5703 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
5704
5705 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
5706 Also match after beginning of line.
5707 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
5708 files. Thanks to Russell Sim. (Bug#15378)
5709
5710 2013-12-13 Juri Linkov <juri@jurta.org>
5711
5712 * simple.el <Keypad support>: Remove key bindings duplicated
5713 with bindings.el. (Bug#14397)
5714
5715 2013-12-13 Juri Linkov <juri@jurta.org>
5716
5717 * comint.el (comint-mode-map): Replace `delete-char' with
5718 `delete-forward-char'. (Bug#16109)
5719
5720 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
5721
5722 * progmodes/python.el (python-indent-calculate-indentation):
5723 Fix de-denters cornercase. (Bug#15731)
5724
5725 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
5726
5727 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
5728 (advice--make): Pay attention to `depth'.
5729 (advice--make-1): Don't autoload commands eagerly.
5730 * emacs-lisp/elp.el (elp-instrument-function):
5731 * emacs-lisp/trace.el (trace-function-internal):
5732 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
5733
5734 * iswitchb.el (iswitchb-mode): Don't belittle ido.
5735
5736 2013-12-12 Eli Zaretskii <eliz@gnu.org>
5737
5738 * term/w32-win.el (w32-handle-dropped-file):
5739 * startup.el (normal-top-level):
5740 * net/browse-url.el (browse-url-file-url):
5741 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
5742 decode file names using 'utf-8' rather than
5743 file-name-coding-system.
5744
5745 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
5746
5747 * progmodes/python.el (python-indent-context)
5748 (python-indent-calculate-indentation): Fix auto-identation
5749 behavior for comment blocks. (Bug#15916)
5750
5751 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
5752
5753 * progmodes/python.el (python-indent-calculate-indentation):
5754 When determining indentation, don't treat "return", "pass", etc., as
5755 operators when they are just string constituents. (Bug#15812)
5756
5757 2013-12-12 Juri Linkov <juri@jurta.org>
5758
5759 * uniquify.el (uniquify-buffer-name-style): Change default to
5760 `post-forward-angle-brackets'.
5761
5762 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
5763 `uniquify'. Change default to `post-forward-angle-brackets'.
5764
5765 2013-12-11 Glenn Morris <rgm@gnu.org>
5766
5767 * emacs-lisp/package.el (finder-list-matches):
5768 Autoload rather than falsely declaring.
5769
5770 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
5771
5772 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
5773 (eww-mode-map): Use them.
5774
5775 2013-12-11 Martin Rudalics <rudalics@gmx.at>
5776
5777 * window.el (display-buffer-in-side-window): Fix doc-string
5778 (Bug#16115).
5779
5780 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
5781
5782 * vc/vc-git.el: Silence byte-compiler warnings.
5783 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
5784 (log-edit-set-header): Declare.
5785
5786 2013-12-11 Eli Zaretskii <eliz@gnu.org>
5787
5788 * Makefile.in (custom-deps, finder-data): Run output file names
5789 through unmsys--file-name. (Bug#16099)
5790
5791 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
5792
5793 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
5794 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
5795
5796 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
5797 instead of deleting the selection "by hand" (bug#16098).
5798 Rely on insert-for-yank to yank rectangles.
5799 (cua-highlight-region-shift-only): Mark obsolete.
5800 (cua-mode): Don't enable/disable transient-mark-mode,
5801 shift-select-mode (cua-mode works both with and without them), and
5802 pc-selection-mode (obsolete).
5803 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
5804 (cua--deactivate-rectangle): Deactivate it.
5805
5806 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
5807 (delete-selection-helper): Make sure yank starts at the top of the
5808 deleted region.
5809 (minibuffer-keyboard-quit): Use region-active-p.
5810
5811 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
5812
5813 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
5814 to `delete' (bug#16109).
5815
5816 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5817
5818 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
5819 info manual and show keybindings and set `:group' keyword.
5820
5821 2013-12-11 Juri Linkov <juri@jurta.org>
5822
5823 * delsel.el (delete-active-region): Let-bind `this-command'
5824 to prevent `kill-region' from changing its original value.
5825 (delete-selection-helper): Handle `overwrite-mode' for the type
5826 `kill' exactly the same way as for the type `t'.
5827 (insert-char, quoted-insert, reindent-then-newline-and-indent):
5828 Support more commands. (Bug#13312)
5829
5830 2013-12-11 Juri Linkov <juri@jurta.org>
5831
5832 * bindings.el: Map kp keys to non-kp keys systematically
5833 with basic modifiers control, meta and shift. (Bug#14397)
5834
5835 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5836
5837 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
5838 "Close browser" menu items. Fix wrong function of "List
5839 bookmarks".
5840
5841 2013-12-11 Juri Linkov <juri@jurta.org>
5842
5843 * misearch.el (multi-isearch-buffers): Set the value of
5844 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
5845 arg of isearch-forward to t.
5846 (multi-isearch-buffers-regexp): Set the value of
5847 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
5848 arg of isearch-forward-regexp to t.
5849 (multi-isearch-files): Set the value of
5850 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
5851 arg of isearch-forward to t.
5852 (multi-isearch-files-regexp): Set the value of
5853 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
5854 arg of isearch-forward-regexp to t. (Bug#16035)
5855
5856 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
5857 arg of isearch-forward to t.
5858 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
5859 arg of isearch-forward-regexp to t.
5860 (dired-isearch-filter-filenames): Remove unnecessary check for
5861 `dired-isearch-filenames'.
5862
5863 * comint.el (comint-history-isearch-backward):
5864 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
5865 (comint-history-isearch-backward-regexp):
5866 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
5867
5868 2013-12-10 Eli Zaretskii <eliz@gnu.org>
5869
5870 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
5871 unmsys--file-name. (Bug#16099)
5872
5873 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
5874
5875 * emacs-lisp/package.el (package-keyword-button-action):
5876 Remove finder.el require dependency.
5877
5878 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
5879
5880 * emacs-lisp/package.el: Require finder.el.
5881 (describe-package-1): Add keyword buttons.
5882 (package-make-button): New convenience function.
5883 (package-keyword-button-action): Keyword button action using
5884 `finder-list-matches'.
5885
5886 2013-12-09 Eli Zaretskii <eliz@gnu.org>
5887
5888 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
5889 last commit.
5890
5891 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
5892
5893 * autorevert.el (auto-revert-notify-add-watch): Do not handle
5894 symlinked files.
5895
5896 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
5897
5898 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
5899 after the end of a percent literal.
5900
5901 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
5902
5903 * progmodes/ruby-mode.el (ruby-forward-string): Document.
5904 Handle caret-delimited strings (Bug#16079).
5905
5906 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
5907
5908 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
5909 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
5910 `ruby-parse-partial' (Bug#16078).
5911
5912 2013-12-09 Leo Liu <sdl.web@gmail.com>
5913
5914 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
5915
5916 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
5917
5918 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
5919 (js-switch-indent-offset): New option.
5920 (js--proper-indentation): Use it. And handle the case when
5921 "default" is actually a key in an object literal.
5922 (js--same-line): New function.
5923 (js--multi-line-declaration-indentation): Use it.
5924 (js--indent-in-array-comp, js--array-comp-indentation):
5925 New functions.
5926 (js--proper-indentation): Use them, to handle array comprehension
5927 continuations.
5928
5929 2013-12-08 Leo Liu <sdl.web@gmail.com>
5930
5931 * progmodes/flymake.el (flymake-highlight-line): Re-write.
5932 (flymake-make-overlay): Remove arg MOUSE-FACE.
5933 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
5934
5935 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
5936
5937 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
5938 New function.
5939 (redisplay-highlight-region-function): Use it.
5940
5941 * emulation/cua-base.el (cua--explicit-region-start)
5942 (cua--last-region-shifted): Remove.
5943 (cua--deactivate): Use deactivate-mark.
5944 (cua--pre-command-handler-1): Don't handle shift-selection.
5945 (cua--post-command-handler-1): Don't change transient-mark-mode.
5946 (cua--select-keymaps): Use region-active-p rather than
5947 cua--explicit-region-start or cua--last-region-shifted.
5948 (cua-mode): Enable shift-select-mode.
5949
5950 2013-12-08 Leo Liu <sdl.web@gmail.com>
5951
5952 * progmodes/flymake.el (flymake-popup-current-error-menu):
5953 Rename from flymake-display-err-menu-for-current-line. Reimplement.
5954 (flymake-posn-at-point-as-event, flymake-popup-menu)
5955 (flymake-make-emacs-menu): Remove. (Bug#16077)
5956
5957 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
5958
5959 * rect.el (rectangle-mark-mode): Activate mark even if
5960 transient-mark-mode is off (bug#16066).
5961 (rectangle--highlight-for-redisplay): Fix boundary condition when point
5962 is > mark and at bolp.
5963
5964 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
5965 (region-extract-function): Use it.
5966 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
5967 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
5968 Delete functions.
5969 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
5970 kill-ring-save, kill-region, delete-char, delete-forward-char.
5971 Ignore self-insert-iso.
5972
5973 * emulation/cua-gmrk.el (cua--init-global-mark):
5974 Ignore `self-insert-iso'.
5975
5976 * emulation/cua-base.el (cua--prefix-copy-handler)
5977 (cua--prefix-cut-handler): Rely on region-extract-function rather than
5978 checking cua--rectangle.
5979 (cua-delete-region): Use region-extract-function.
5980 (cua-replace-region): Delete function.
5981 (cua-copy-region, cua-cut-region): Obey region-extract-function.
5982 (cua--pre-command-handler-1): Don't do the delete-selection thing.
5983 (cua--self-insert-char-p): Ignore `self-insert-iso'.
5984 (cua--init-keymaps): Don't remap delete-selection commands.
5985 (cua-mode): Use delete-selection-mode instead of rolling our own
5986 (bug#16085).
5987
5988 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
5989 Obey region-extract-function.
5990
5991 Make registers and delete-selection-mode work on rectangles.
5992 * register.el (describe-register-1): Don't modify the register's value.
5993 (copy-to-register): Obey region-extract-function.
5994 * delsel.el (delete-active-region): Obey region-extract-function.
5995
5996 2013-12-08 Leo Liu <sdl.web@gmail.com>
5997
5998 * progmodes/flymake.el (flymake, flymake-error-bitmap)
5999 (flymake-warning-bitmap, flymake-fringe-indicator-position)
6000 (flymake-compilation-prevents-syntax-check)
6001 (flymake-start-syntax-check-on-newline)
6002 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
6003 (flymake-start-syntax-check-on-find-file, flymake-log-level)
6004 (flymake-xml-program, flymake-master-file-dirs)
6005 (flymake-master-file-count-limit)
6006 (flymake-allowed-file-name-masks): Relocate.
6007 (flymake-makehash, flymake-float-time)
6008 (flymake-replace-regexp-in-string, flymake-split-string)
6009 (flymake-get-temp-dir): Remove.
6010 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
6011 (flymake-current-row, flymake-selected-frame)
6012 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
6013 related functions. (Bug#16077)
6014
6015 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
6016
6017 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
6018
6019 2013-12-07 Tassilo Horn <tsdh@gnu.org>
6020
6021 * help-fns.el (describe-function-1): Use new advice-* functions
6022 rather than old ad-* functions. Fix function type description and
6023 source links for advised functions and subrs.
6024
6025 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
6026
6027 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
6028
6029 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
6030
6031 * progmodes/compile.el (compilation-start):
6032 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
6033
6034 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
6035 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
6036
6037 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6038
6039 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
6040 Touch up the last change.
6041
6042 2013-12-06 Leo Liu <sdl.web@gmail.com>
6043
6044 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
6045 (inferior-octave-startup): Always use "octave> " for prompt.
6046 (octave-goto-function-definition)
6047 (octave-sync-function-file-names)
6048 (octave-find-definition-default-filename): Remove redundant backquotes.
6049
6050 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6051
6052 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
6053 syntax for `?'.
6054 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
6055 where appropriate already.
6056 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
6057 end of method names (Bug#15874).
6058
6059 2013-12-06 Juri Linkov <juri@jurta.org>
6060
6061 * isearch.el (isearch--saved-overriding-local-map):
6062 New internal variable.
6063 (isearch-mode): Set it to the initial value of
6064 `overriding-terminal-local-map'.
6065 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
6066 with `isearch--saved-overriding-local-map'. (Bug#16035)
6067
6068 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6069
6070 * progmodes/octave.el (inferior-octave-completion-table):
6071 Turn back into function, use `completion-table-with-cache'
6072 (Bug#11906). Update all references.
6073
6074 * minibuffer.el (completion-table-with-cache): New function.
6075
6076 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
6077
6078 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
6079
6080 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
6081
6082 * net/eww.el (eww-current-source): New variable to store page
6083 source.
6084 (eww-display-html, eww-mode, eww-save-history)
6085 (eww-restore-history): Use it.
6086 (eww-view-source): New command to view page source.
6087 Opportunistically uses `html-mode' to highlight the buffer.
6088 (eww-mode-map): Install it.
6089
6090 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
6091
6092 * net/dbus.el (dbus-unregister-service)
6093 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
6094 Fix docstring.
6095 (dbus-unregister-service): Skip :serial entries in
6096 `dbus-registered-objects-table'.
6097 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
6098
6099 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
6100
6101 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
6102 around keywords with extra `split-string' argument.
6103
6104 2013-12-04 Martin Rudalics <rudalics@gmx.at>
6105
6106 * windmove.el (windmove-other-window-loc): Handle navigation
6107 between windows (excluding the minibuffer window - Bug#16017).
6108
6109 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
6110
6111 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
6112 in D-Bus type syntax.
6113 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
6114 preserve unibyte strings. (Bug#16048)
6115
6116 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
6117
6118 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
6119 Call force-mode-line-update is the proper buffer (bug#16042).
6120
6121 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
6122
6123 * vc/log-edit.el (log-edit-add-new-comment): Rename to
6124 `log-edit-remember-comment', make argument optional. Adjust all
6125 callers.
6126 (log-edit-mode): Add `log-edit-remember-comment' to
6127 `kill-buffer-hook' locally.
6128 (log-edit-kill-buffer): Don't remember comment explicitly since
6129 the buffer is killed anyway.
6130
6131 2013-12-04 Juri Linkov <juri@jurta.org>
6132
6133 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
6134 add-hook and remove-hook for multi-buffer search. (Bug#16035)
6135
6136 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
6137
6138 * notifications.el (notifications-close-notification): Call the
6139 D-Bus method with ID being a `:uint32'. (Bug#16030)
6140
6141 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
6142
6143 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
6144
6145 2013-12-03 Juri Linkov <juri@jurta.org>
6146
6147 * progmodes/compile.el (compilation-start): Rename window alist
6148 entry `no-display-ok' to `allow-no-window'.
6149
6150 * simple.el (shell-command): Add window alist entry
6151 `allow-no-window' to `display-buffer'.
6152 (async-shell-command): Doc fix.
6153
6154 * window.el (display-buffer-no-window): New action function.
6155 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
6156
6157 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6158
6159 * vc/log-edit.el (log-edit-set-header): Extract from
6160 `log-edit-toggle-header'.
6161 (log-edit-extract-headers): Separate the summary, when extracted
6162 from header, from the rest of the message with an empty line.
6163
6164 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
6165 line, if present, to the Summary header.
6166
6167 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
6168
6169 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
6170 in current-buffer (bug#16029).
6171
6172 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
6173
6174 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
6175 (debugger-mode-map): Bind it.
6176 (debugger--backtrace-base): New function.
6177 (debugger-eval-expression): Use it.
6178 (debugger-frame-number): Skip local vars when present.
6179 (debugger--locals-visible-p, debugger--insert-locals)
6180 (debugger--show-locals, debugger--hide-locals): New functions.
6181
6182 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
6183
6184 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
6185 "LC_ALL".
6186 (tramp-get-remote-locale): New defun.
6187 (tramp-open-connection-setup-interactive-shell): Use it.
6188
6189 2013-12-02 Leo Liu <sdl.web@gmail.com>
6190
6191 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
6192
6193 * progmodes/sh-script.el (sh-shell-process):
6194 * progmodes/octave.el (inferior-octave-process-live-p):
6195 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
6196 (gdb-inferior-io-sentinel):
6197 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
6198
6199 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6200
6201 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
6202 `save-selected-window' to `log-edit-hide-buf'. This makes
6203 `log-edit-show-files' idempotent.
6204 (log-edit-show-files): Mark the new window as dedicated.
6205
6206 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6207
6208 * vc/log-edit.el (log-edit-mode-map): Add binding for
6209 `log-edit-kill-biffer'.
6210 (log-edit-hide-buf): Add a FIXME comment.
6211 (log-edit-add-new-comment): New function, extracted from
6212 `log-edit-done'.
6213 (log-edit-done, log-edit-add-to-changelog): Use it.
6214 (log-edit-kill-buffer): New command.
6215
6216 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6217
6218 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
6219 instead of killing the buffer.
6220
6221 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
6222
6223 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
6224
6225 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6226
6227 * net/eww.el (eww-form-checkbox-selected-symbol)
6228 (eww-form-checkbox-symbol): New customizable variable.
6229 (eww-form-checkbox, eww-toggle-checkbox):
6230 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
6231
6232 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
6233 (shr--get-media-pref, shr--extract-best-source): New function.
6234 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
6235 no :src tag was specified.
6236
6237 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
6238 (eww-render): Handle `eww-use-external-browser-for-content-type'.
6239 Use \\` to match beginning of string instead of ^.
6240 (eww-browse-with-external-browser): Provide optional URL parameter.
6241 (eww-render): Set `eww-current-title' back to "".
6242
6243 * net/shr.el (shr-tag-video): Display content for video if no
6244 poster is available.
6245 (shr-tag-audio): Add support for <audio> tag.
6246
6247 * net/eww.el (eww-text-input-types): New const.
6248 (eww-process-text-input): Treat input types in
6249 `eww-text-input-types' as text.
6250
6251 * net/shr.el (shr-tag-table): Fix comment typo.
6252
6253 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6254
6255 * net/eww.el (eww-follow-link): New command to avoid reloading
6256 pages when we follow #target links (bug#15243).
6257 (eww-quit): Special mode buffers shouldn't query before exiting.
6258
6259 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
6260
6261 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
6262 forms.
6263
6264 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6265
6266 * net/eww.el (eww-restore-history): Update the window title after
6267 moving in the history.
6268 (eww-current-dom): New variable used to save the current DOM.
6269
6270 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
6271
6272 * vc/log-edit.el (log-edit-mode-map): Add binding for
6273 `log-edit-beginning-of-line'.
6274 (log-edit-setup-add-author): New user option.
6275 (log-edit-beginning-of-line): New command.
6276 (log-edit): Move major mode call above the contents setup so that
6277 the local variable values are already applied.
6278 (log-edit): Only insert "Author: " when
6279 `log-edit-setup-add-author' is non-nil.
6280 (log-edit): When SETUP is non-nil, position point after ": "
6281 instead of point-min.
6282
6283 2013-12-01 Glenn Morris <rgm@gnu.org>
6284
6285 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
6286
6287 2013-11-30 Eli Zaretskii <eliz@gnu.org>
6288
6289 * startup.el (fancy-splash-frame): On MS-Windows, trigger
6290 redisplay to make sure the initial frame gets a chance to become
6291 visible. (Bug#16014)
6292
6293 2013-11-30 Martin Rudalics <rudalics@gmx.at>
6294
6295 Support resizing frames and windows pixelwise.
6296 * cus-start.el (frame-resize-pixelwise)
6297 (window-resize-pixelwise): New entries.
6298 * emacs-lisp/debug.el (debug): Use window-total-height instead
6299 of window-total-size.
6300 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
6301 * help.el (describe-bindings-internal): Use help-buffer as
6302 argument for with-help-window.
6303 (temp-buffer-max-width): New option.
6304 (resize-temp-buffer-window, help-window-setup)
6305 (with-help-window): Rewrite.
6306 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
6307 dragging dividers.
6308 * window.el (frame-char-size, window-min-pixel-height)
6309 (window-safe-min-pixel-height, window-safe-min-pixel-width)
6310 (window-min-pixel-width, window-safe-min-pixel-size)
6311 (window-combination-p, window-safe-min-size)
6312 (window-resizable-p, window--size-to-pixel)
6313 (window--pixel-to-size, window--resize-apply-p): New functions.
6314 (window-safe-min-height): Fix doc-string.
6315 (window-size, window-min-size, window--min-size-1)
6316 (window-sizable, window-sizable-p, window--min-delta-1)
6317 (window-min-delta, window--max-delta-1, window-max-delta)
6318 (window--resizable, window--resizable-p, window-resizable)
6319 (window-full-height-p, window-full-width-p, window-at-side-p)
6320 (window--in-direction-2, window-in-direction)
6321 (window--resize-reset-1, window--resize-mini-window)
6322 (window-resize, window-resize-no-error)
6323 (window--resize-child-windows-normal)
6324 (window--resize-child-windows, window--resize-siblings)
6325 (window--resize-this-window, window--resize-root-window)
6326 (window--resize-root-window-vertically)
6327 (adjust-window-trailing-edge, enlarge-window, shrink-window)
6328 (maximize-window, minimize-window, delete-window)
6329 (quit-restore-window, window-split-min-size, split-window)
6330 (balance-windows-2, balance-windows)
6331 (balance-windows-area-adjust, balance-windows-area)
6332 (window--state-get-1, window-state-get, window--state-put-1)
6333 (window--state-put-2, window-state-put)
6334 (display-buffer-record-window, window--display-buffer):
6335 Make functions handle pixelwise sizing of windows.
6336 (display-buffer--action-function-custom-type)
6337 (display-buffer-fallback-action):
6338 Add display-buffer-in-previous-window.
6339 (display-buffer-use-some-window): Resize window to height it had
6340 before.
6341 (fit-window-to-buffer-horizontally): New option.
6342 (fit-frame-to-buffer): Describe new values.
6343 (fit-frame-to-buffer-bottom-margin): Replace with
6344 fit-frame-to-buffer-margins.
6345 (window--sanitize-margin): New function.
6346 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
6347 using window-text-pixel-size.
6348
6349 2013-11-30 Glenn Morris <rgm@gnu.org>
6350
6351 * emacs-lisp/bytecomp.el (byte-compile-form):
6352 Make the `interactive-only' warning like the `obsolete' one.
6353 * comint.el (comint-run):
6354 * files.el (insert-file-literally, insert-file):
6355 * replace.el (replace-string, replace-regexp):
6356 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
6357 (goto-line, insert-buffer, next-line, previous-line):
6358 Tweak `interactive-only' spec.
6359
6360 Stop keeping (most) generated cedet grammar files in the repository.
6361 * Makefile.in (semantic): New.
6362 (compile-main): Depend on semantic.
6363
6364 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6365
6366 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
6367 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
6368
6369 * uniquify.el (uniquify-buffer-name-style): Change default.
6370
6371 * loadup.el: Preload "uniquify".
6372
6373 * time.el (display-time-update): Update all mode lines (bug#15999).
6374
6375 * electric.el (electric-indent-mode): Enable by default.
6376 * loadup.el: Preload "electric".
6377
6378 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
6379
6380 * emacs-lisp/helpers.el (string-empty-p): New function.
6381 (string-blank-p): New function.
6382
6383 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
6384
6385 * imenu.el (imenu--index-alist): Add missing dot to the docstring
6386 (Bug#14029).
6387
6388 2013-11-29 Andreas Politz <politza@fh-trier.de>
6389 * imenu.el (imenu--subalist-p): Don't error on non-conses and
6390 allow non-lambda lists as functions.
6391 (imenu--in-alist): Don't recurse into non-subalists.
6392 (imenu): Don't pass function itself as an argument (Bug#14029).
6393
6394 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6395
6396 * progmodes/python.el (python-mode-map): Remove binding for ":".
6397 (python-indent-electric-colon): Remove command.
6398 (python-indent-post-self-insert-function): Integrate the previous code
6399 of python-indent-electric-colon. Make it conditional on
6400 electric-indent-mode.
6401 (python-mode): Add ?: to electric-indent-chars.
6402 Move python-indent-post-self-insert-function to the end of
6403 post-self-insert-hook.
6404
6405 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6406
6407 * doc-view.el (doc-view-goto-page): Update mode-line.
6408
6409 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
6410
6411 2013-11-27 Glenn Morris <rgm@gnu.org>
6412
6413 * international/charprop.el, international/uni-bidi.el:
6414 * international/uni-category.el, international/uni-combining.el:
6415 * international/uni-comment.el, international/uni-decimal.el:
6416 * international/uni-decomposition.el, international/uni-digit.el:
6417 * international/uni-lowercase.el, international/uni-mirrored.el:
6418 * international/uni-name.el, international/uni-numeric.el:
6419 * international/uni-old-name.el, international/uni-titlecase.el:
6420 * international/uni-uppercase.el:
6421 Remove generated files from VCS repository.
6422
6423 2013-11-27 Eli Zaretskii <eliz@gnu.org>
6424
6425 * filenotify.el (file-notify-add-watch): Don't special-case
6426 w32notify when computing the directory to watch.
6427
6428 2013-11-27 Glenn Morris <rgm@gnu.org>
6429
6430 Make bootstrap without generated uni-*.el files possible again.
6431 * loadup.el: Update command-line-args checking for unidata-gen.
6432 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
6433 * composite.el, international/characters.el:
6434 Handle unicode tables being undefined.
6435
6436 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
6437 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
6438 (compile-main): Depend on leim rule.
6439 (leim): New rule.
6440 * loadup.el: Move leim-list.el to leim/ subdirectory.
6441 * startup.el (normal-top-level): No more leim directory.
6442 * international/ja-dic-cnv.el (skkdic-convert):
6443 Disable version-control and autoloads in output files.
6444 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
6445 Disable version-control and autoloads in output files.
6446 * leim/quail: Move here from ../leim.
6447 * leim/quail/hangul.el (hangul-input-method-activate):
6448 Add autoload cookie.
6449 (generated-autoload-load-name): Set file-local value.
6450 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
6451 (generated-autoload-load-name): Set file-local value.
6452
6453 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
6454
6455 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
6456 (eww-add-bookmark): Ask confirmation when add to bookmarks.
6457 (eww-quit): Ask confirmation before quitting eww.
6458
6459 2013-11-26 Eli Zaretskii <eliz@gnu.org>
6460
6461 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
6462 reading output from Diff on MS-Windows and MS-DOS.
6463
6464 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
6465
6466 * emacs-lisp/helpers.el (string-reverse): New function.
6467
6468 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
6469
6470 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
6471 names on MS Windows, like "/[::1]:".
6472
6473 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
6474 SWITCHES.
6475
6476 2013-11-26 Glenn Morris <rgm@gnu.org>
6477
6478 * progmodes/python.el (python-indent-guess-indent-offset):
6479 Avoid corner-case error. (Bug#15975)
6480
6481 Preload leim-list.el. (Bug#4789)
6482 * loadup.el: Load leim-list.el when found.
6483 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
6484
6485 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
6486
6487 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
6488
6489 * emacs-lisp/helpers.el (string-join): New function.
6490
6491 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
6492
6493 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
6494 Mark as obsolete and replace it with a symbol property.
6495 (byte-compile-form): Use new 'interactive-only property.
6496 * comint.el, files.el, replace.el, simple.el:
6497 Apply new 'interactive-only properly.
6498
6499 2013-11-25 Martin Rudalics <rudalics@gmx.at>
6500
6501 * window.el (display-buffer-at-bottom): Make sure that
6502 split-window-sensibly creates the new window on bottom
6503 (Bug#15961).
6504
6505 2013-11-23 David Kastrup <dak@gnu.org>
6506
6507 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
6508 on the conflict markers when available.
6509 (smerge--get-marker): New function.
6510 (smerge-end-re, smerge-base-re): Add subgroup.
6511
6512 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
6513
6514 * frame.el (handle-focus-in, handle-focus-out): Add missing
6515 interactive spec.
6516
6517 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
6518
6519 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
6520 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
6521
6522 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
6523
6524 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
6525 (gomoku--last-pos): New var.
6526 (gomoku--intangible-chars): New const.
6527 (gomoku--intangible): New function.
6528 (gomoku-mode): Use it. Derive from special-mode.
6529 (gomoku-move-up): Adjust line count.
6530 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
6531 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
6532 Simplify accordingly.
6533
6534 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
6535 Remove blink-cursor code.
6536 (blink-cursor-timer-function, blink-cursor-suspend):
6537 Don't special-case GUIs.
6538 (blink-cursor-mode): Use focus-in/out-hook.
6539
6540 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
6541
6542 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
6543 work when annotation is invisible (Bug#13886).
6544
6545 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
6546
6547 * json.el (json-alist-p): Only return non-nil if the alist has
6548 simple keys (Bug#13518).
6549
6550 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
6551
6552 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
6553 when control-statement is the first statement in a buffer (Bug#15956).
6554
6555 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
6556
6557 * imenu.el (imenu-generic-skip-comments-and-strings):
6558 New option (Bug#15560).
6559 (imenu--generic-function): Use it.
6560
6561 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
6562
6563 * minibuffer.el (completion--in-region-1): Scroll the correct window.
6564 (Bug#13898)
6565
6566 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
6567
6568 * emacs-lisp/helpers.el: Add some string helpers.
6569 (string-trim-left): Removes leading whitespace.
6570 (string-trim-right): Removes trailing whitespace.
6571 (string-trim): Removes leading and trailing whitespace.
6572
6573 * subr.el (string-suffix-p): New function.
6574
6575 2013-11-23 Glenn Morris <rgm@gnu.org>
6576
6577 * progmodes/python.el (python-shell-send-file):
6578 Add option to delete file when done. (Bug#15647)
6579 (python-shell-send-string, python-shell-send-region): Use it.
6580
6581 2013-11-23 Ivan Shmakov <ivan@siamics.net> (tiny change)
6582
6583 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
6584 to set buffer-read-only to t, never to nil. (Bug#15938)
6585
6586 * textmodes/tex-mode.el (latex-noindent-environments):
6587 Add safe-local-variable property. (Bug#15936)
6588
6589 2013-11-23 Glenn Morris <rgm@gnu.org>
6590
6591 * textmodes/enriched.el (enriched-mode): Doc fix.
6592 * emacs-lisp/authors.el (authors-renamed-files-alist):
6593 Add enriched.doc -> enriched.txt.
6594
6595 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
6596
6597 2013-11-22 Leo Liu <sdl.web@gmail.com>
6598
6599 * progmodes/octave.el (inferior-octave-startup): Spit out error
6600 message.
6601
6602 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
6603
6604 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
6605 Improve docstring.
6606 Add :version.
6607 (ruby-encoding-magic-comment-style): Add :version.
6608
6609 2013-11-22 Leo Liu <sdl.web@gmail.com>
6610
6611 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
6612 (Bug#15076)
6613 (octave-help-mode): Adapt to change to help-mode-finish to use
6614 derived-mode-p on 2013-09-17.
6615 (inferior-octave-prompt): Also match octave-gui.
6616 (octave-kill-process): Don't ask twice. (Bug#10564)
6617
6618 2013-11-22 Leo Liu <sdl.web@gmail.com>
6619
6620 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
6621 (inferior-octave-startup, inferior-octave-check-process)
6622 (inferior-octave-track-window-width-change)
6623 (octave-completion-at-point, octave-eldoc-function): Use it.
6624 (octave-kill-process): Provide confirmation. (Bug#10564)
6625
6626 2013-11-21 Leo Liu <sdl.web@gmail.com>
6627
6628 * progmodes/octave.el (octave-mode, inferior-octave-mode):
6629 Fix obsolete variable comment-use-global-state.
6630
6631 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6632
6633 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
6634 Add `octave-source-file'.
6635 (octave-source-file): New function. (Bug#15935)
6636
6637 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
6638
6639 * net/eww.el (eww-local-regex): New variable.
6640 (eww): Use it to detect localhost and similar.
6641
6642 2013-11-21 Leo Liu <sdl.web@gmail.com>
6643
6644 Add completion for command `ag'.
6645 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
6646 (pcomplete/ag): New function.
6647 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
6648
6649 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
6650
6651 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
6652 (bug#14646).
6653 (make-obsolete): Remove interactive spec.
6654
6655 2013-11-21 Glenn Morris <rgm@gnu.org>
6656
6657 * startup.el (command-line-1): Use path-separator with -L.
6658
6659 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
6660
6661 * emacs-lisp/package.el (describe-package-1): Add package archive
6662 to shown fields.
6663
6664 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
6665
6666 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
6667 Change default to "# encoding: %s" to differentiate it from the
6668 default Ruby encoding comment template.
6669
6670 2013-11-20 era eriksson <era+emacsbugs@iki.fi>
6671
6672 * ses.el (ses-mode): Doc fix. (Bug#14748)
6673
6674 2013-11-20 Leo Liu <sdl.web@gmail.com>
6675
6676 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
6677
6678 2013-11-19 Dan Nicolaescu <dann@gnu.org>
6679
6680 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
6681 when rebase or bisect are in progress.
6682
6683 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
6684
6685 * filenotify.el (file-notify-add-watch): Doc fix.
6686
6687 2013-11-19 Leo Liu <sdl.web@gmail.com>
6688
6689 * obsolete/rcompile.el: Mark obsolete.
6690
6691 * progmodes/compile.el (compilation-start)
6692 (compilation-goto-locus, compilation-find-file):
6693 Pass no-display-ok and handle nil value from display-buffer.
6694 (Bug#13594)
6695
6696 * window.el (display-buffer-alist, display-buffer): Document the
6697 new parameter no-display-ok. Return either a window or nil
6698 but never a non-window value.
6699
6700 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
6701
6702 * electric.el (electric-indent-mode-map): Remove.
6703 (electric-indent-mode): Change the global-map instead (bug#15915).
6704
6705 * textmodes/text-mode.el (paragraph-indent-minor-mode):
6706 Use add-function.
6707
6708 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
6709
6710 * emacs-lisp/nadvice.el (remove-function): Align with
6711 add-function's behavior.
6712
6713 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
6714 (gdb--string-regexp): New constant.
6715 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
6716 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
6717 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
6718 submatch 1.
6719 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
6720 Adjust use accordingly.
6721 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
6722
6723 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
6724
6725 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
6726 interpolation curlies (Bug#15914).
6727
6728 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
6729
6730 * calc/calc.el (calc-context-sensitive-enter): New variable.
6731 (calc-enter): Use `calc-context-sensitive-enter'.
6732
6733 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
6734
6735 * progmodes/cfengine.el: Version bump.
6736 (cfengine-cf-promises): New defcustom to locate cf-promises.
6737 (cfengine3-vartypes): Add new "data" type.
6738 (cfengine3--current-word): New function to get current name-like
6739 word or its bounds.
6740 (cfengine3--current-function): New function to look up a CFEngine
6741 function's definition.
6742 (cfengine3-format-function-docstring): New function.
6743 (cfengine3-make-syntax-cache): New function.
6744 (cfengine3-documentation-function): New function: ElDoc glue.
6745 (cfengine3-completion-function): New function: completion glue.
6746 (cfengine3-mode): Set `compile-command',
6747 `eldoc-documentation-function', and add to
6748 `completion-at-point-functions'.
6749
6750 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
6751
6752 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
6753 `tramp-current-connection'.
6754
6755 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
6756
6757 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
6758 nil/self/true/false with "end of symbol".
6759
6760 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
6761
6762 * subr.el (version-regexp-alist): Fix a typo.
6763
6764 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
6765
6766 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
6767 "en_US.utf8" and "LC_CTYPE" to "".
6768 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
6769 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
6770
6771 2013-11-15 Leo Liu <sdl.web@gmail.com>
6772
6773 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
6774
6775 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
6776
6777 * progmodes/gud.el (ctl-x-map):
6778 Remove C-x SPC binding. (Bug#12342)
6779 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
6780
6781 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
6782
6783 * subr.el (version-regexp-alist):
6784 Recognize hg, svn and darcs versions as snapshot versions.
6785
6786 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
6787 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
6788 (ruby--encoding-comment-required-p): Extract from
6789 `ruby-mode-set-encoding'.
6790 (ruby-mode-set-encoding): Add the ability to always insert an
6791 utf-8 encoding comment. Fix and simplify coding comment update
6792 logic.
6793
6794 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
6795
6796 * net/tramp-gvfs.el (top): Run init code only when
6797 `tramp-gvfs-enabled' is not nil.
6798 (tramp-gvfs-enabled): Check also :system bus.
6799
6800 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
6801
6802 Sync with upstream verilog-mode revision 78e66ba.
6803 * progmodes/verilog-mode.el (verilog-end-of-defun)
6804 (verilog-type-completion, verilog-get-list): Remove unused funcs.
6805 (verilog-get-end-of-defun): Remove unused argument.
6806 (verilog-comment-depth): Remove unused local `e'.
6807 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
6808 Don't pass arg to verilog-get-end-of-defun.
6809
6810 2013-11-14 Glenn Morris <rgm@gnu.org>
6811
6812 * obsolete/assoc.el (aget): Prefix dynamic variable.
6813
6814 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
6815
6816 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
6817
6818 * widget.el, hfy-cmap.el: Remove bogus package version number.
6819
6820 2013-11-13 Glenn Morris <rgm@gnu.org>
6821
6822 * replace.el (replace-eval-replacement):
6823 Try to give more helpful error message. (Bug#15836)
6824
6825 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
6826 (archive-7z-update): Avoid custom type mismatches.
6827
6828 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
6829
6830 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
6831
6832 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
6833 address can be empty.
6834
6835 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
6836 Accept nil SWITCHES.
6837 (tramp-gvfs-handle-write-region): Implement APPEND.
6838
6839 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
6840
6841 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
6842 binary "|" operator and closing block args delimiter.
6843 Remove FIXME comment referring to Ruby 1.8-only syntax.
6844 (ruby-smie--implicit-semi-p): Not after "|" operator.
6845 (ruby-smie--closing-pipe-p): New function.
6846 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
6847 (ruby-smie-rules): Indent after "|".
6848
6849 2013-11-12 Glenn Morris <rgm@gnu.org>
6850
6851 * ps-print.el (ps-face-attribute-list):
6852 Handle anonymous faces. (Bug#15827)
6853
6854 2013-11-12 Martin Rudalics <rudalics@gmx.at>
6855
6856 * window.el (display-buffer-other-frame): Fix doc-string.
6857 (Bug#15868)
6858
6859 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
6860
6861 * subr.el (force-mode-line-update): Delete, move to buffer.c.
6862
6863 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
6864
6865 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
6866 (tramp-sh-handle-file-local-copy): Don't write a message when
6867 saving temporary files.
6868
6869 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
6870 both directories are remote.
6871 (tramp-smb-handle-directory-files): Do not return double entries.
6872 Do not expand full file names.
6873 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
6874 (tramp-smb-handle-write-region): Implement APPEND.
6875 (tramp-smb-get-stat-capability): Fix a stupid bug.
6876
6877 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
6878
6879 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
6880
6881 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6882
6883 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
6884 throwing error over malformed let/let* (bug#15814).
6885
6886 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
6887
6888 * iswitchb.el (iswitchb-mode): Mark obsolete.
6889
6890 2013-11-11 Glenn Morris <rgm@gnu.org>
6891
6892 * international/uni-bidi.el, international/uni-category.el:
6893 * international/uni-name.el, international/uni-numeric.el:
6894 Regenerate for Unicode 6.3.0.
6895
6896 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
6897
6898 * net/tramp.el (tramp-methods):
6899 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
6900 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
6901
6902 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
6903
6904 * progmodes/sh-script.el (sh-font-lock-keywords-var):
6905 Force highlighting text after Summary keyword in doc face for rpm.
6906
6907 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
6908
6909 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
6910 available and the word has no wildcards, append one to the grep pattern.
6911 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
6912 (ispell-complete-word): Call `ispell-lookup-words' with the value
6913 independent of `ispell-look-p'.
6914
6915 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6916
6917 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
6918 Not after "||".
6919 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
6920 their parent.
6921
6922 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
6923
6924 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
6925 (ruby-font-lock-keywords): Use backquote.
6926
6927 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6928
6929 * progmodes/ruby-mode.el (ruby-smie--forward-token)
6930 (ruby-smie--backward-token): Only consider full-string matches.
6931
6932 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
6933
6934 * faces.el (describe-face): Add distant-foreground.
6935
6936 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
6937
6938 * progmodes/ruby-mode.el: Improve encoding comment handling.
6939 (ruby-encoding-magic-comment-style): New option.
6940 (ruby-custom-encoding-magic-comment-template): New option.
6941 (ruby--insert-coding-comment, ruby--detect-encoding):
6942 New functions extracted from `ruby-mode-set-encoding'.
6943 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
6944 to control the style of the auto-inserted encoding comment.
6945
6946 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6947
6948 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
6949 Use `smie-backward-sexp' with token argument.
6950
6951 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
6952
6953 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
6954 Remove instrumentation code.
6955
6956 2013-11-08 Glenn Morris <rgm@gnu.org>
6957
6958 * progmodes/autoconf.el (autoconf-mode):
6959 Tweak comment-start-skip. (Bug#15822)
6960
6961 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
6962
6963 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
6964 at bobp (bug#15826).
6965 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
6966
6967 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
6968
6969 * man.el (Man-start-calling): New macro, extracted from
6970 Man-getpage-in-background.
6971 (Man-getpage-in-background): Use it.
6972 (Man-update-manpage): New command.
6973 (Man-mode-map): Bind it.
6974
6975 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6976
6977 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
6978 of "and", "or", "&&" and "||".
6979 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
6980 argument. Prohibit opening curly brace because it could only be a
6981 block opener in that position.
6982 (ruby-smie--forward-token, ruby-smie--backward-token):
6983 Separate "|" from "&" or "*" going after it. That can happen in block
6984 arguments.
6985 (ruby-smie--indent-to-stmt): New function, seeks the end of
6986 previous statement or beginning of buffer.
6987 (ruby-smie-rules): Use it.
6988 (ruby-smie-rules): Check if there's a ":" before a curly block
6989 opener candidate; if there is, it's a hash.
6990
6991 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
6992
6993 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
6994 (cl--block-wrapper): Fix last accidental change.
6995
6996 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
6997
6998 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
6999 Instrument, in order to hunt failure on hydra.
7000
7001 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7002
7003 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
7004 malformed bindings form (bug#15814).
7005
7006 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
7007
7008 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
7009 "." compared to " @ ". This incidentally fixes some indentation
7010 examples with "do".
7011 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
7012 (ruby-smie-grammar): New tokens: "and" and "or".
7013 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
7014 Exclude "and" and "or". Remove "do" in order to work around token
7015 priorities.
7016 (ruby-smie-rules): Add all infix tokens. Handle the case of
7017 beginning-of-buffer.
7018
7019 2013-11-06 Glenn Morris <rgm@gnu.org>
7020
7021 * Makefile.in (setwins_almost, setwins_for_subdirs):
7022 Avoid accidental matches.
7023
7024 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
7025
7026 * menu-bar.el (popup-menu): Use key-binding.
7027
7028 2013-11-06 Eli Zaretskii <eliz@gnu.org>
7029
7030 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
7031 menus, support also the menus produced by minor modes.
7032 (Bug#15817)
7033
7034 2013-11-06 Leo Liu <sdl.web@gmail.com>
7035
7036 * thingatpt.el (thing-at-point-looking-at): Add optional arg
7037 DISTANCE to bound the search. All uses changed. (Bug#15808)
7038
7039 2013-11-06 Glenn Morris <rgm@gnu.org>
7040
7041 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
7042 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
7043 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
7044
7045 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
7046
7047 * electric.el (electric-indent-just-newline): New command.
7048 (electric-indent-mode-map): New keymap.
7049 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
7050 Re-add :group which weren't redundant.
7051
7052 * electric.el (electric-indent-local-mode): New minor mode.
7053 (electric-indent-functions-without-reindent): New var.
7054 (electric-indent-post-self-insert-function): Use it.
7055 * emacs-lisp/gv.el (buffer-local-value): Add setter.
7056
7057 2013-11-05 Eli Zaretskii <eliz@gnu.org>
7058
7059 * international/quail.el (quail-help): Be more explicit about the
7060 meaning of the labels shown on the keys. (Bug#15800)
7061
7062 * startup.el (normal-top-level): Load the subdirs.el files before
7063 setting the locale environment. (Bug#15805)
7064
7065 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
7066
7067 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
7068 via arguments so as to get the right ones (bug#15418).
7069
7070 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
7071
7072 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
7073
7074 Fix problems found while writing a test suite.
7075
7076 * net/tramp-compat.el (tramp-compat-load): New defun.
7077 * net/tramp.el (tramp-handle-load): Use it.
7078
7079 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
7080 "(numberp ok-if-already-exists)" correctly.
7081
7082 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
7083
7084 * international/characters.el (glyphless-char-display-control):
7085 Add usage note.
7086
7087 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
7088
7089 * progmodes/python.el (python-mode):
7090 * progmodes/scheme.el (scheme-mode):
7091 * progmodes/prolog.el (prolog-mode):
7092 * progmodes/ruby-mode.el (ruby-mode):
7093 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
7094 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
7095
7096 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7097
7098 * rect.el (rectangle--highlight-for-redisplay):
7099 * emacs-lisp/smie.el (smie--next-indent-change):
7100 Use buffer-chars-modified-tick.
7101
7102 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
7103
7104 * electric.el (electric-indent-post-self-insert-function):
7105 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
7106
7107 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
7108
7109 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
7110
7111 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7112
7113 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
7114 (bug#15786).
7115
7116 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7117
7118 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
7119
7120 * progmodes/python.el: Fix up last change.
7121 (python-shell--save-temp-file): New function.
7122 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
7123 `string' comes from the current buffer.
7124 (python-shell-send-string-no-output): Remove `msg' arg.
7125 (python--use-fake-loc): New var.
7126 (python-shell-buffer-substring): Obey it. Try to compensate for the
7127 extra coding line added by python-shell--save-temp-file.
7128 (python-shell-send-region): Use python-shell--save-temp-file and
7129 python-shell-send-file directly. Add `nomain' argument.
7130 (python-shell-send-buffer): Use python-shell-send-region.
7131 (python-electric-pair-string-delimiter): New function.
7132 (python-mode): Use it.
7133
7134 2013-11-04 Eli Zaretskii <eliz@gnu.org>
7135
7136 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
7137 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
7138 environment and decoding all of the default-directory's to here
7139 from command-line.
7140 (command-line): Decode also argv[0].
7141
7142 * loadup.el: Error out if default-directory is a multibyte string
7143 when we are dumping.
7144
7145 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
7146
7147 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
7148
7149 * emacs-lisp/package.el (package-menu-mode)
7150 (package-menu--print-info, package-menu--archive-predicate):
7151 Add Archive column to package list.
7152
7153 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
7154
7155 Fix problems found while writing a test suite.
7156
7157 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
7158 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
7159 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
7160 to nil when running original file name handler. Otherwise,
7161 there are problems with constructs like "$$FOO".
7162
7163 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
7164 for `localname'.
7165
7166 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
7167
7168 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
7169
7170 * subr.el (version<, version<=, version=):
7171 Update docstrings with information for snapshot versions.
7172
7173 * helpers.el: New library for misc helper functions.
7174 (hash-table-keys): New function returning a list of hash keys.
7175 (hash-table-values): New function returning a list of hash values.
7176
7177 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
7178
7179 * progmodes/ruby-mode.el (ruby-smie--forward-token)
7180 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
7181
7182 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
7183
7184 * textmodes/fill.el (fill-single-char-nobreak-p): New function
7185 checking whether point is after a 1-letter word.
7186
7187 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7188
7189 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
7190 Don't infloop when expanding region over `multiline' syntax-type that
7191 begins a line (bug#15778).
7192
7193 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7194
7195 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
7196 Make it into a proper minor mode.
7197 (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
7198 (rectangle-mark-mode-map): New keymap.
7199 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
7200
7201 2013-11-04 Glenn Morris <rgm@gnu.org>
7202
7203 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
7204
7205 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
7206
7207 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
7208 (ruby-smie-rules): Use smie-rule-parent instead.
7209
7210 * emacs-lisp/smie.el (smie-rule-parent): Always call
7211 smie-indent-virtual rather than only for hanging tokens.
7212 (smie--next-indent-change): New helper command.
7213
7214 2013-11-03 Glenn Morris <rgm@gnu.org>
7215
7216 * Makefile.in (abs_srcdir): Remove.
7217 (emacs): Unset EMACSLOADPATH.
7218
7219 2013-11-02 Glenn Morris <rgm@gnu.org>
7220
7221 * Makefile.in (EMACS): Use a relative filename.
7222 (abs_top_builddir): Remove.
7223 (custom-deps, finder-data, autoloads): Use --chdir.
7224
7225 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
7226
7227 Use relative filenames in TAGS files.
7228 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
7229 (lisptagsfiles4, TAGS): Use relative file names.
7230 (TAGS-LISP): Remove.
7231 (maintainer-clean): No more TAGS-LISP file.
7232
7233 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
7234 (lisptagsfiles4): Use absolute filenames again.
7235 (TAGS, TAGS-LISP): Not everything needs to run in one line.
7236 Remove all *loaddefs files, not just the first. Remove esh-groups.
7237 (maintainer-clean): Delete TAGS, TAGS-LISP.
7238
7239 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7240
7241 * emacs-lisp/package.el (package-version-join):
7242 Recognize snapshot versions.
7243
7244 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7245
7246 * subr.el (version-regexp-alist): Add support for snapshot versions.
7247
7248 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
7249
7250 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
7251 New function, replacement for `smie-rule-parent' for when we want to
7252 skip over our direct parent if it's an assignment token..
7253 (ruby-smie-rules): Use it.
7254
7255 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
7256
7257 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
7258 unconditionally. Remove now unnecessary forward declarations.
7259 Remove XEmacs-specific setup.
7260 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
7261 (ruby-font-lock-syntactic-keywords)
7262 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
7263 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
7264 (ruby-here-doc-end-syntax): Remove.
7265 (ruby-mode): Don't check whether `syntax-propertize-rules' is
7266 defined as function.
7267
7268 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7269
7270 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
7271
7272 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
7273
7274 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
7275 table and abbrev table, `define-derived-mode' does that for us
7276 anyway.
7277
7278 2013-11-01 Glenn Morris <rgm@gnu.org>
7279
7280 * Makefile.in: Remove manual mh-e dependencies (writing .elc
7281 files is atomic for some time, so no parallel compilation issues).
7282
7283 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
7284
7285 * faces.el (face-x-resources): Add :distant-foreground.
7286 (region): Use :distant-foreground for gtk and ns.
7287
7288 2013-11-01 Tassilo Horn <tsdh@gnu.org>
7289
7290 Allow multiple bibliographies when BibLaTeX is used rather than
7291 BibTeX.
7292 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
7293 (reftex-locate-bibliography-files): Us it.
7294
7295 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
7296
7297 * image.el (image-type-header-regexps): Fix the 'pbm' part to
7298 allow comments in pbm files.
7299
7300 * term/w32-win.el (dynamic-library-alist): Support newer versions
7301 of libjpeg starting with v7: look only for the DLL from the
7302 version against which Emacs was built.
7303 Support versions of libpng beyond 1.4.x.
7304 Support libtiff v4.x.
7305
7306 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
7307
7308 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
7309 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
7310 Add property :safe.
7311 (ruby-deep-arglist): Add property :type.
7312
7313 2013-10-31 Glenn Morris <rgm@gnu.org>
7314
7315 * Makefile.in (custom-deps, finder-data): No need to setq the target
7316 variables, we are in the right directory and the defaults work fine.
7317
7318 2013-10-30 Glenn Morris <rgm@gnu.org>
7319
7320 * Makefile.in (autoloads): Do not use abs_lisp.
7321
7322 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7323 `newline' does not respect `standard-output', so use `princ'.
7324
7325 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
7326
7327 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
7328 * buff-menu.el (Buffer-menu--unmark): New function.
7329 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
7330
7331 2013-10-30 Glenn Morris <rgm@gnu.org>
7332
7333 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
7334
7335 * emacs-lisp/package.el (lm-homepage): Declare.
7336
7337 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
7338 Fix doc typos.
7339
7340 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
7341
7342 * Makefile.in (finder-data, autoloads, update-subdirs)
7343 (compile-main, compile-clean, compile-always, bootstrap-clean):
7344 Check return value of cd.
7345 (compile-calc): Remove.
7346
7347 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7348
7349 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
7350
7351 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
7352 (byte-compile-and-folded): New function.
7353 (=, <, >, <=, >=): Use it.
7354
7355 * dos-w32.el (minibuffer-history-case-insensitive-variables)
7356 (path-separator, null-device, buffer-file-coding-system)
7357 (lpr-headers-switches): Check system-type before modifying them.
7358 (find-buffer-file-type-coding-system): Mark obsolete.
7359 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
7360 find-file-not-found-set-buffer-file-coding-system.
7361 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
7362 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
7363 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
7364 (w32-direct-print-region-helper, w32-direct-print-region-function)
7365 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
7366 * startup.el (normal-top-level-add-subdirs-to-load-path):
7367 * ps-print.el (ps-print-region-function):
7368 * lpr.el (print-region-function): Use new name.
7369
7370 * subr.el (custom-declare-variable-early): Remove function.
7371 (custom-declare-variable-list): Remove var.
7372 (error, user-error): Remove `while' loop.
7373 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
7374 (user-emacs-directory-warning, locate-user-emacs-file):
7375 Move to files.el.
7376 * simple.el (read-quoted-char-radix, read-quoted-char):
7377 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
7378 Move from subr.el.
7379 * custom.el (custom-declare-variable-list): Don't process
7380 custom-declare-variable-list.
7381
7382 * progmodes/python.el (python-shell-get-buffer): New function.
7383 (python-shell-get-process): Use it.
7384 (python-shell-send-string): Always use utf-8 and add a cookie to tell
7385 Python which encoding was used. Don't split-string since we only care
7386 about the first line. Return the temp-file, if applicable.
7387 (python-shell-send-region): Tell compile.el how to turn locations in
7388 the temp-file into locations in the source buffer.
7389
7390 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
7391
7392 * subr.el (undefined): Add missing behavior from the C code for
7393 unbound keys.
7394
7395 * rect.el: Use lexical-binding. Add new rectangular region support.
7396 (rectangle-mark): New command.
7397 (rectangle--region): New var.
7398 (deactivate-mark-hook): Reset rectangle--region.
7399 (rectangle--extract-region, rectangle--insert-for-yank)
7400 (rectangle--highlight-for-redisplay)
7401 (rectangle--unhighlight-for-redisplay): New functions.
7402 (region-extract-function, redisplay-unhighlight-region-function)
7403 (redisplay-highlight-region-function): Use them to handle
7404 rectangular region.
7405 * simple.el (region-extract-function): New var.
7406 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
7407 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
7408 (kill-region): Replace obsolete `yank-handler' arg with `region'.
7409 (copy-region-as-kill, kill-ring-save): Add `region' argument.
7410 (redisplay-unhighlight-region-function)
7411 (redisplay-highlight-region-function): New vars.
7412 (redisplay--update-region-highlight): New function.
7413 (pre-redisplay-function): Use it.
7414 (exchange-point-and-mark): Don't deactivate the mark before
7415 reactivate-it anyway.
7416 * comint.el (comint-kill-region): Remove yank-handler argument.
7417 * delsel.el (delete-backward-char, backward-delete-char-untabify)
7418 (delete-char): Remove property, since it's now part of their
7419 default behavior.
7420 (self-insert-iso): Remove property since this command doesn't exist.
7421
7422 * emacs-lisp/package.el (package--download-one-archive)
7423 (describe-package-1): Don't query the user about final newline.
7424
7425 2013-10-29 Daniel Colascione <dancol@dancol.org>
7426
7427 * net/tramp.el (tramp-methods): Document new functionality.
7428 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
7429 tramp-hostname-checker if method provides one instead of scanning
7430 argument list for "%h" to decide hostname acceptability.
7431
7432 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
7433
7434 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
7435 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
7436 Handle COPY-CONTENTS. (Bug#15737)
7437
7438 2013-10-28 Daiki Ueno <ueno@gnu.org>
7439
7440 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
7441 Document that this option has no effect with GnuPG 2.0 (bug#15552).
7442
7443 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
7444
7445 * image.el (defimage, image-load-path): Doc fixes.
7446
7447 2013-10-27 Alan Mackenzie <acm@muc.de>
7448
7449 Indent statements in macros following "##" correctly.
7450 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7451 Modify the "#" arm of a cond form to handle "#" and "##" operators.
7452
7453 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7454
7455 * linum.el (linum-update-window): Fix boundary test (bug#13446).
7456
7457 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
7458
7459 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
7460 after `=' is probably a new expression.
7461
7462 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7463
7464 * man.el (man-imenu-title): New option.
7465 (Man-mode-map): Add menu. (Bug#15722)
7466 (Man-mode): Add imenu to menu.
7467
7468 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
7469
7470 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
7471 specific in what the first arg can be: a non-keyword word,
7472 string/regexp/percent literal opener, opening paren, or unary
7473 operator followed directly by word.
7474
7475 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7476
7477 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
7478 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
7479 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
7480 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
7481 Remove vars, they do not apply any more.
7482 (prolog-mode-abbrev-table): Remove redundant declaration.
7483 (prolog-upper-case-string, prolog-lower-case-string): Remove.
7484 (prolog-use-smie): Remove.
7485 (prolog-smie-rules): Add indentation rule for the if-then-else layout
7486 supported by prolog-electric-if-then-else-flag.
7487 (prolog-mode-variables, prolog-menu): Use setq-local.
7488 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
7489 Remove binding to `Backspace' since this key doesn't exist anyway.
7490 Remove bindings for electric self-inserting keys.
7491 (prog-mode): Assume it's defined.
7492 (prolog-post-self-insert): New function.
7493 (prolog-mode): Use it.
7494 (prolog-indent-line, prolog-indent-level)
7495 (prolog-find-indent-of-matching-paren)
7496 (prolog-indentation-level-of-line, prolog-goto-comment-column)
7497 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
7498 (prolog-goto-next-paren, prolog-in-string-or-comment)
7499 (prolog-tokenize, prolog-inside-mline-comment)
7500 (prolog-find-start-of-mline-comment): Remove functions.
7501 (prolog-find-unmatched-paren, prolog-clause-end)
7502 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
7503 (prolog-electric--if-then-else): Rename from
7504 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
7505 (prolog-tokenize-searchkey): Remove const.
7506 (prolog-clause-info): Use forward-sexp.
7507 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
7508 (prolog-electric-if-then-else): Remove commands.
7509 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
7510 for use in post-self-insert-hook.
7511 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
7512 for use in post-self-insert-hook.
7513 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
7514 for use in post-self-insert-hook.
7515 (prolog-electric--underscore): Rename from prolog-electric--underscore;
7516 adapt it for use in post-self-insert-hook.
7517
7518 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
7519
7520 * emacs-lisp/ert.el (ert-run-tests-interactively):
7521 Use `completing-read'. (Bug#9756)
7522
7523 2013-10-25 Eli Zaretskii <eliz@gnu.org>
7524
7525 * simple.el (line-move): Call line-move-1 instead of
7526 line-move-visual when the current window hscroll is zero, but
7527 temporary-goal-column indicates we will need to hscroll as result
7528 of the movement. (Bug#15712)
7529
7530 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
7531
7532 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
7533 capitalization. Use :visible instead of :active.
7534 Fix `ruby-indent-exp' reference. Add menu items for the generic
7535 commands that are used with SMIE.
7536 (ruby-do-end-to-brace): Insert space after `{'.
7537
7538 2013-10-25 John Anthony <john@jo.hnanthony.com>
7539
7540 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
7541
7542 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
7543
7544 2013-10-25 Glenn Morris <rgm@gnu.org>
7545
7546 * vc/vc.el (vc-print-log): Don't use a working revision unless
7547 one was explicitly specified. (Bug#15322)
7548
7549 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7550
7551 * subr.el (add-to-list): Preserve return value in compiler-macro
7552 (bug#15692).
7553
7554 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7555
7556 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
7557 result. Ask user to retry using '-all' flag. (Bug#15701)
7558
7559 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7560
7561 * emacs-lisp/smie.el: New smie-config system.
7562 (smie-config): New defcustom.
7563 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
7564 (smie-config-guess, smie-config-save): New commands.
7565 (smie-config--mode-local, smie-config--buffer-local)
7566 (smie-config--trace, smie-config--modefuns): New vars.
7567 (smie-config--advice, smie-config--mode-hook)
7568 (smie-config--setter, smie-config-local, smie-config--get-trace)
7569 (smie-config--guess-value, smie-config--guess): New functions.
7570 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
7571 text properties. Treat "string fence" syntax like string syntax.
7572
7573 * progmodes/sh-script.el (sh-use-smie): Change default.
7574 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
7575 (sh-var-value): Simplify by CSE.
7576 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
7577 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
7578 is used.
7579 (sh-guess-basic-offset): Use cl-incf.
7580 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
7581
7582 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
7583
7584 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
7585 (bug#15699).
7586
7587 2013-10-24 Glenn Morris <rgm@gnu.org>
7588
7589 * Makefile.in (abs_top_srcdir): Remove.
7590 (update-subdirs): Use relative path to update-subdirs.
7591
7592 2013-10-24 Eli Zaretskii <eliz@gnu.org>
7593
7594 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
7595 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
7596 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
7597 Call unmsys--file-name before expand-file-name, not after it.
7598
7599 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
7600
7601 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
7602 (ert-test-skipped): New error.
7603 (ert-skip, ert-stats-skipped): New defuns.
7604 (ert--skip-unless): New macro.
7605 (ert-test-skipped): New struct.
7606 (ert--run-test-debugger, ert-test-result-type-p)
7607 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
7608 (ert--stats-set-test-and-result, ert-char-for-test-result)
7609 (ert-string-for-test-result, ert-run-tests-batch)
7610 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
7611 Handle skipped tests. (Bug#9803)
7612
7613 2013-10-24 Glenn Morris <rgm@gnu.org>
7614
7615 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
7616
7617 * Makefile.in (abs_top_srcdir): New, set by configure.
7618 (update-subdirs): Correct build-aux location.
7619
7620 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
7621
7622 * vc/vc.el (vc-print-root-log): Always set `default-directory'
7623 value, whether we could auto-deduce `backend', or not.
7624
7625 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
7626 with parameters" example. Simplify the "is it block or is it
7627 hash" check, but also make it more thorough.
7628
7629 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
7630
7631 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
7632
7633 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
7634
7635 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
7636 { if it is hanging.
7637
7638 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
7639 :before ";".
7640
7641 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
7642
7643 * progmodes/compile.el (compilation-directory-matcher)
7644 (compilation-page-delimiter):
7645 Support GNU Make-4.0 directory quoting. (Bug#15678)
7646
7647 2013-10-23 Leo Liu <sdl.web@gmail.com>
7648
7649 * ido.el (ido-tidy): Handle read-only text.
7650
7651 2013-10-23 Glenn Morris <rgm@gnu.org>
7652
7653 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
7654 (emacs, compile, compile-always):
7655 Quote entities that might contain whitespace.
7656 (custom-deps, finder-data, autoloads): Use abs_lisp.
7657 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7658 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7659 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
7660
7661 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
7662
7663 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
7664 Use `following-char'.
7665
7666 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
7667
7668 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
7669 * progmodes/ruby-mode.el (ruby-smie-rules):
7670 Remove corresponding workaround. Fix indentation rule of ";" so it
7671 also applies when ";" is the parent.
7672
7673 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
7674
7675 * frame.el (display-screens, display-pixel-height)
7676 (display-pixel-width, display-mm-width, display-backing-store)
7677 (display-save-under, display-planes, display-color-cells)
7678 (display-visual-class, display-monitor-attributes-list):
7679 Mention the optional ‘display’ argument in doc strings.
7680
7681 2013-10-22 Michael Gauland <mikelygee@amuri.net>
7682
7683 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
7684 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
7685
7686 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
7687
7688 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
7689 TODO. Add "." after " @ ".
7690 (ruby-smie--at-dot-call): New function. Checks if point at method
7691 call with explicit target.
7692 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
7693 to the method name tokens when it precedes them.
7694 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
7695 (ruby-smie-rules): Add rule for indentation before and after "."
7696 token.
7697
7698 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
7699
7700 * textmodes/remember.el (remember-diary-extract-entries):
7701 Avoid add-to-list.
7702
7703 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
7704 an instruction.
7705
7706 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
7707
7708 * progmodes/ruby-mode.el (ruby-smie-grammar):
7709 Add (almost) all infix operators.
7710 (ruby-smie--implicit-semi-p): Add new operator chars.
7711
7712 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
7713 `smie-down-list'.
7714 (ruby-smie--args-separator-p): Check that there's no newline
7715 between method call and its arguments.
7716
7717 2013-10-20 Alan Mackenzie <acm@muc.de>
7718
7719 Allow comma separated lists after Java "implements".
7720
7721 * progmodes/cc-engine.el (c-backward-over-enum-header):
7722 Parse commas.
7723 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
7724 from a "disallowed" list in enum fontification.
7725
7726 2013-10-20 Johan Bockgård <bojohan@gnu.org>
7727
7728 * startup.el (default-frame-background-mode): Remove unused defvar.
7729
7730 * progmodes/verilog-mode.el (verilog-mode): Don't set
7731 comment-indent-function globally.
7732
7733 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
7734
7735 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
7736 Move Info menu item creation to ns-win.el.
7737
7738 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
7739 in menu bar.
7740
7741 * menu-bar.el: Move GNUstep specific menus...
7742
7743 * term/ns-win.el (ns-initialize-window-system): ... to here.
7744
7745 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
7746
7747 * simple.el (newline): Only run post-self-insert-hook when
7748 called interactively.
7749
7750 2013-10-19 Johan Bockgård <bojohan@gnu.org>
7751
7752 * icomplete.el (icomplete-with-completion-tables): Add :version.
7753
7754 2013-10-19 Alan Mackenzie <acm@muc.de>
7755
7756 Fix fontification bugs with constructors and const.
7757
7758 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
7759 CASE 2) Remove the check for the absence of a suffix construct
7760 after a function declaration with only types (no identifiers) in
7761 the parentheses. Also, accept a function declaration with just a
7762 type inside the parentheses, if this type can be positively
7763 recognised as such, or if a prefix keyword like "explicit" nails
7764 down the construct as a declaration.
7765
7766 2013-10-19 Eli Zaretskii <eliz@gnu.org>
7767
7768 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
7769 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
7770 the problem whereby selecting a menu item that leads to a
7771 minibuffer prompt moves the cursor out of the minibuffer window,
7772 making it hard to type at the prompt. Suggested by Stefan Monnier
7773 <monnier@iro.umontreal.ca>.
7774
7775 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
7776
7777 * menu-bar.el: Don't make Services menu.
7778
7779 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7780
7781 * ffap.el: Handle "/usr/include/c++/<version>" directories.
7782 (ffap-alist): Use ffap-c++-mode for c++-mode.
7783 (ffap-c++-path): New variable.
7784 (ffap-c++-mode): New function.
7785
7786 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
7787
7788 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
7789
7790 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
7791
7792 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
7793 introduced on 2013-09-08, which results in an infinite loop
7794 requesting a password.
7795
7796 2013-10-18 Glenn Morris <rgm@gnu.org>
7797
7798 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
7799
7800 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
7801
7802 Sync with upstream verilog-mode revision 1a6ecec7.
7803 * progmodes/verilog-mode.el (verilog-mode-version): Update.
7804 (verilog-mode-release-date): Remove.
7805 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
7806 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
7807 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
7808 (verilog-auto-tieoff-ignore-regexp)
7809 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
7810 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
7811 (verilog-signals-with, verilog-dir-cache-preserving)
7812 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
7813 Doc fixes.
7814 (verilog-case-fold): New option, to control case folding in
7815 regexp searches, bug597.
7816 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
7817 (verilog-string-match-fold, verilog-in-paren-count)
7818 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
7819 (verilog-at-close-struct-p): New functions.
7820 (verilog-beg-block-re-ordered, verilog-extended-case-re)
7821 (verilog-forward-sexp, verilog-set-auto-endcomments)
7822 (verilog-leap-to-case-head): Handle "unique0" case.
7823 (verilog-in-constraint-re): New constant.
7824 (verilog-keywords, verilog-type-font-keywords):
7825 Add some SystemVerilog 1800-2012 keywords.
7826 (verilog-label-be): Remove unimplemented argument, bug669.
7827 (verilog-batch-execute-func): When batch expanding clear
7828 create-lockfiles to prevent spurious user locks when a file ends
7829 up not changing.
7830 (verilog-calculate-indent, verilog-calc-1)
7831 (verilog-at-close-constraint-p, verilog-at-constraint-p)
7832 (verilog-do-indent): Fix indentation of nested constraints
7833 and structures.
7834 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
7835 (verilog-auto-inst-param): Use verilog-string-match-fold.
7836 (verilog-read-inst-module-matcher):
7837 Fix AUTOINST on gate primitives with #1.
7838 (verilog-read-decls): Fix double-declaring user-defined typed signals.
7839 Reads all user-defined typed variables.
7840 (verilog-read-defines): Fix reading definitions inside comments, bug647.
7841 (verilog-signals-matching-regexp)
7842 (verilog-signals-not-matching-regexp, verilog-auto):
7843 Respect verilog-case-fold.
7844 (verilog-diff-report): Fix line count.
7845 (verilog-auto-assign-modport): Remove unused local `modi'.
7846 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
7847 better handle multidimensional arrays.
7848 Fix packed array ports misadding bit index in AUTOINST, bug637.
7849 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
7850 to not double-declare existing outputs and inputs, respectively.
7851 (verilog-template-map): Bind U to verilog-sk-uvm-component.
7852 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
7853 (verilog-sk-uvm-component): New skeleton.
7854 (verilog-submit-bug-report): Add verilog-case-fold,
7855 remove verilog-mode-release-date.
7856
7857 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
7858
7859 * subr.el (sit-for): Call (input-pending-p t) so as to behave
7860 as before.
7861
7862 2013-10-18 Reuben Thomas <rrt@sc3d.org>
7863
7864 * textmodes/remember.el (remember): Set buffer-offer-save in
7865 remember buffers (bug#13566).
7866
7867 2013-10-18 Daniel Colascione <dancol@dancol.org>
7868
7869 When evaluating forms in ielm, direct standard output to ielm
7870 buffer. Add new ielm-return-for-effect command. Remove trailing
7871 whitespace throughout.
7872
7873 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
7874 (ielm-return-for-effect): New command.
7875 (ielm-send-input): Accept optional `for-effect' parameter.
7876 (ielm-eval-input): Accept optional `for-effect' parameter.
7877 Bind `standard-output' to stream we create using
7878 `ielm-standard-output-impl'. Suppress printing result when
7879 `for-effect'.
7880 (ielm-standard-output-impl): New function.
7881 (inferior-emacs-lisp-mode): Explain new features in documentation.
7882
7883 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
7884
7885 Code cleanup.
7886
7887 * net/tramp.el (tramp-debug-message): Do not check for connection
7888 buffer.
7889 (tramp-message): Use "vector" connection property.
7890
7891 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
7892 (tramp-equal-remote, tramp-eshell-directory-change)
7893 * net/tramp-adb.el (tramp-adb-handle-copy-file)
7894 (tramp-adb-handle-rename-file)
7895 * net/tramp-cmds.el (tramp-list-remote-buffers)
7896 (tramp-cleanup-connection, tramp-cleanup-this-connection)
7897 * net/tramp-compat.el (tramp-compat-process-running-p)
7898 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
7899 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
7900 (tramp-gvfs-handle-rename-file)
7901 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
7902 (tramp-set-file-uid-gid)
7903 * net/tramp-smb.el (tramp-smb-handle-copy-file)
7904 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
7905 of `file-remote-p'.
7906
7907 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
7908 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
7909 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
7910 (tramp-gw-open-network-stream): Suppress unrelated traces.
7911
7912 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
7913 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
7914 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
7915 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
7916 connection property.
7917
7918 * net/tramp-cache.el (top): Suppress traces when reading
7919 persistency file.
7920
7921 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
7922 Refactor common code. Improve debug message.
7923 (tramp-maybe-open-connection)
7924 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
7925 connection buffer too early.
7926
7927 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
7928 from `tramp-smb-actions-with-acl'.
7929 (tramp-smb-actions-set-acl): New defconst.
7930 (tramp-smb-handle-copy-directory)
7931 (tramp-smb-action-get-acl): New defun, renamed from
7932 `tramp-smb-action-with-acl'.
7933 (tramp-smb-action-set-acl): New defun.
7934 (tramp-smb-handle-set-file-acl): Rewrite.
7935
7936 2013-10-17 Glenn Morris <rgm@gnu.org>
7937
7938 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
7939
7940 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
7941
7942 * skeleton.el (skeleton-newline): Remove.
7943 (skeleton-internal-1): Use (insert "\n") instead.
7944
7945 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
7946 let-bindings.
7947
7948 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
7949 forward-sexp-function while we redo its job (bug#15613).
7950
7951 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
7952
7953 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
7954 represented by lists.
7955
7956 2013-10-16 Glenn Morris <rgm@gnu.org>
7957
7958 * tmm.el (tmm--history): New dynamic variable.
7959 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
7960
7961 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
7962
7963 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
7964 (tramp-smb-errors): Add error messages.
7965 (tramp-smb-actions-with-acl): New defconst.
7966 (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
7967 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
7968 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
7969 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
7970 (tramp-smb-get-stat-capability): Fix tests.
7971
7972 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
7973
7974 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
7975 (bug#15580).
7976
7977 2013-10-16 Glenn Morris <rgm@gnu.org>
7978
7979 * ansi-color.el (ansi-color-drop-regexp):
7980 Add 1J, 1K, 2K. (Bug#15617)
7981
7982 * files.el (hack-local-variables--warned-lexical): New.
7983 (hack-local-variables):
7984 Warn about misplaced lexical-binding. (Bug#15616)
7985
7986 * net/eww.el (eww-render): Always set eww-current-url,
7987 and update header line. (Bug#15622)
7988 (eww-display-html): ... Rather than just doing it here.
7989
7990 2013-10-15 Eli Zaretskii <eliz@gnu.org>
7991
7992 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
7993 menu navigations commands.
7994
7995 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
7996
7997 * progmodes/subword.el (subword-capitalize): Be careful when
7998 the search for [[:alpha:]] fails (bug#15580).
7999
8000 2013-10-14 Eli Zaretskii <eliz@gnu.org>
8001
8002 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
8003 to commands that scroll the menu.
8004
8005 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
8006
8007 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
8008 Handle methods ending with `?' and `!'.
8009
8010 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
8011
8012 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
8013 `japanese-cp932' to `cp932' to fix the problem where saving a
8014 source file written in Shift_JIS twice would end up having
8015 `coding: japanese-cp932' which Ruby could not recognize.
8016 (ruby-mode-set-encoding): Add support for encodings mapped to nil
8017 in `ruby-encoding-map'.
8018 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
8019 doesn't need to be explicitly declared in magic comment.
8020 (ruby-encoding-map): Add type declaration for better customize UI.
8021
8022 2013-10-13 Glenn Morris <rgm@gnu.org>
8023
8024 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
8025 Occur buffers are read-only. http://bugs.debian.org/720775
8026
8027 * emacs-lisp/authors.el (authors-fixed-entries):
8028 Comment out old alpha stuff.
8029
8030 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
8031
8032 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
8033 to `after-save-hook' instead of `before-save-hook'.
8034 (ruby-mode-set-encoding): Use the value of coding system used to
8035 write the file. Call `basic-save-buffer-1' after modifying the
8036 buffer.
8037
8038 2013-10-13 Alan Mackenzie <acm@muc.de>
8039
8040 Fix indentation/fontification of Java enum with
8041 "implements"/generic.
8042
8043 * progmodes/cc-engine.el (c-backward-over-enum-header):
8044 Extracted from the three other places and enhanced to handle generics.
8045 (c-inside-bracelist-p): Uses new function above.
8046 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
8047 function above.
8048 (c-font-lock-enum-tail): Uses new function above.
8049
8050 2013-10-13 Kenichi Handa <handa@gnu.org>
8051
8052 * international/mule-cmds.el (select-safe-coding-system): Remove a
8053 superfluous condition in chekcing whether a coding system is safe
8054 or not.
8055
8056 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
8057
8058 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
8059
8060 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
8061
8062 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
8063
8064 2013-10-13 Glenn Morris <rgm@gnu.org>
8065
8066 * menu-bar.el (menu-bar-update-buffers):
8067 Unify Buffers menu prompt string. (Bug#15576)
8068
8069 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
8070
8071 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
8072 Add some entries.
8073 (authors-fixed-entries): Use accented form of name.
8074
8075 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8076
8077 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
8078 method calls (bug#15594).
8079 (ruby-smie--args-separator-p): New function.
8080 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
8081 recognize paren-free method calls.
8082
8083 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
8084 internals of universal-argument.
8085
8086 2013-10-11 Eli Zaretskii <eliz@gnu.org>
8087
8088 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
8089 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
8090 dropped menu on second mouse click on the menu bar.
8091
8092 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8093
8094 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
8095 (explicit-shell-file-name): Declare.
8096 (sh--vars-before-point, sh--cmd-completion-table): New functions.
8097 (sh-completion-at-point-function): New function.
8098 (sh-mode): Use it.
8099 (sh-smie--keyword-p): Remove unused argument.
8100 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
8101 vars.
8102 (sh-set-shell): Always setup SMIE, even if we use the
8103 old indentation code.
8104
8105 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
8106
8107 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
8108 cases of ? and =.
8109 (ruby-smie-rules): Simplify the "do" rule. The cases when the
8110 predicate would return nil are almost non-existent.
8111 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
8112
8113 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
8114 cache also after commands that modify the buffer but don't move
8115 point.
8116
8117 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
8118
8119 * env.el (substitute-env-in-file-name): New function.
8120 (substitute-env-vars): Extend the meaning of the optional arg.
8121
8122 2013-10-10 Eli Zaretskii <eliz@gnu.org>
8123
8124 * term/w32-win.el (dynamic-library-alist): Define separate lists
8125 of GIF DLLs for versions before and after 5.0.0 of giflib.
8126 (Bug#15531)
8127
8128 2013-10-10 João Távora <joaotavora@gmail.com>
8129
8130 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
8131 not locked, use last revision and current source as
8132 defaults. (Bug#15569)
8133
8134 2013-10-10 Masatake YAMATO <yamato@redhat.com>
8135
8136 * menu-bar.el (menu-bar-open): Don't use popup-menu if
8137 menu-bar is hidden.
8138
8139 2013-10-10 Martin Rudalics <rudalics@gmx.at>
8140
8141 * window.el (pop-to-buffer-same-window): Fix doc-string.
8142 (Bug#15492)
8143
8144 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
8145
8146 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
8147
8148 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
8149
8150 * calendar/icalendar.el (icalendar-import-file):
8151 Fix interactive spec. (Bug#15482)
8152
8153 2013-10-10 Glenn Morris <rgm@gnu.org>
8154
8155 * desktop.el (desktop-save): Default to saving in .emacs.d,
8156 since PWD is no longer in desktop-path by default. (Bug#15319)
8157
8158 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
8159 now that text mode has a menu with the same entry.
8160 (menu-bar-text-mode-auto-fill): Remove now unused func.
8161 * textmodes/text-mode.el (text-mode-map):
8162 Use auto-fill help text from menu-bar.el.
8163
8164 2013-10-10 John Anthony <john@jo.hnanthony.com>
8165
8166 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
8167
8168 2013-10-09 Juri Linkov <juri@jurta.org>
8169
8170 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
8171 instead of this-command-keys. Add universal-argument-more and
8172 universal-argument-minus to the list of prefix commands. (Bug#15568)
8173
8174 2013-10-09 Glenn Morris <rgm@gnu.org>
8175
8176 * vc/vc-svn.el (vc-svn-create-repo):
8177 Expand paths in file://... url. (Bug#15446)
8178
8179 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
8180 Add some entries.
8181 (authors): Remove unused local variables.
8182
8183 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
8184
8185 * profiler.el: Create a more coherent calltree from partial backtraces.
8186 (profiler-format): Hide the tail with `invisible' so that C-s can still
8187 find the hidden elements.
8188 (profiler-calltree-depth): Don't recurse so enthusiastically.
8189 (profiler-function-equal): New hash-table-test.
8190 (profiler-calltree-build-unified): New function.
8191 (profiler-calltree-build): Use it.
8192 (profiler-report-make-name-part): Indent the calltree less.
8193 (profiler-report-mode): Add visibility specs for profiler-format.
8194 (profiler-report-expand-entry, profiler-report-toggle-entry):
8195 Expand the whole subtree when provided with a prefix arg.
8196
8197 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
8198
8199 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
8200 iuwu-mod token.
8201 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
8202 hanging iuwu-mod token.
8203 (ruby-smie--forward-token): Do not include a dot after a token in
8204 that token.
8205 (ruby-smie--backward-token): Likewise.
8206
8207 2013-10-08 Juri Linkov <juri@jurta.org>
8208
8209 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
8210 to isearch-other-control-char.
8211 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
8212 and isearch-post-command-hook to post-command-hook.
8213 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
8214 and isearch-post-command-hook from post-command-hook.
8215 (isearch-unread-key-sequence)
8216 (isearch-reread-key-sequence-naturally)
8217 (isearch-lookup-scroll-key, isearch-other-control-char)
8218 (isearch-other-meta-char): Remove functions.
8219 (isearch-pre-command-hook, isearch-post-command-hook):
8220 New functions based on isearch-other-meta-char rewritten
8221 relying on the new behavior of overriding-terminal-local-map
8222 that does not replace the local keymaps any more. (Bug#15200)
8223
8224 2013-10-08 Eli Zaretskii <eliz@gnu.org>
8225
8226 Support menus on text-mode terminals.
8227 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
8228 functionality.
8229
8230 * tooltip.el (tooltip-mode): Don't error out on TTYs.
8231
8232 * menu-bar.el (popup-menu, popup-menu-normalize-position):
8233 Move here from mouse.el.
8234 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
8235 and arrow keys.
8236 (tty-menu-navigation-map): New map for TTY menu navigation.
8237
8238 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
8239
8240 * frame.el (display-mouse-p): Report text-mode mouse as available
8241 on w32.
8242 (display-popup-menus-p): Report availability if mouse is
8243 available; don't condition on window-system.
8244
8245 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
8246 (tty-menu-selected-face): New faces.
8247
8248 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
8249
8250 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
8251 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
8252 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
8253 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
8254 New constants.
8255 (lisp-mode-variables): New `elisp' argument.
8256 (emacs-lisp-mode): Use it.
8257 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
8258 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
8259
8260 * indent.el: Use lexical-binding.
8261 (indent-region): Add progress reporter.
8262 (tab-stop-list): Make it implicitly extend to infinity by repeating the
8263 last step.
8264 (indent--next-tab-stop): New function to implement this behavior.
8265 (tab-to-tab-stop, move-to-tab-stop): Use it.
8266
8267 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
8268
8269 * indent.el (indent-rigidly--current-indentation): New function.
8270 (indent-rigidly-map): New var.
8271 (indent-rigidly): Use it to provide interactive mode (bug#8196).
8272
8273 2013-10-08 Bastien Guerry <bzg@gnu.org>
8274
8275 * register.el (insert-register): Fix 2013-10-07 change.
8276
8277 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
8278
8279 * progmodes/perl-mode.el: Use lexical-binding.
8280 Remove redundant :group args.
8281 (perl-nochange): Change default to be closer to other major modes's
8282 standard behavior.
8283 (perl-indent-line): Don't consider text on current line as a
8284 valid beginning of function from which to indent.
8285
8286 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
8287 with more than one argument (bug#15538).
8288
8289 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
8290
8291 * vc/pcvs.el: Use lexical-binding.
8292 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
8293 environment of `eval'.
8294 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
8295 than a list of expressions. Adjust callers.
8296 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
8297
8298 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
8299
8300 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
8301 case of the dot in a chained method call being on the following line.
8302
8303 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8304
8305 * electric.el (electric-indent-inhibit): New var.
8306 (electric-indent-post-self-insert-function): Use it.
8307 * progmodes/python.el (python-mode): Set it.
8308
8309 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
8310 open braces.
8311
8312 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
8313
8314 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
8315 (css-mode): Use electric-indent-chars.
8316
8317 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
8318 (font-lock-beg, font-lock-end): Move before first use.
8319 (nxml-mode): Use syntax-propertize-function.
8320 (nxml-after-change, nxml-after-change1): Adjust accordingly.
8321 (nxml-extend-after-change-region): Remove.
8322 * nxml/xmltok.el: Use lexical-binding.
8323 (xmltok-save): Use `declare'.
8324 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
8325 * nxml/nxml-util.el: Use lexical-binding.
8326 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
8327 Use `declare'.
8328 * nxml/nxml-ns.el: Use lexical-binding.
8329 (nxml-ns-save): Use `declare'.
8330 (nxml-ns-prefixes-for): Avoid add-to-list.
8331 * nxml/rng-match.el: Use lexical-binding.
8332 (rng--ipattern): Use cl-defstruct.
8333 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
8334 (rng-cons-group-after, rng-subst-group-after)
8335 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
8336 Use closures instead of `(lambda...).
8337
8338 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
8339
8340 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
8341 of BEG and END.
8342
8343 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
8344 Use `tramp-handle-insert-file-contents'.
8345 (tramp-gvfs-handle-insert-file-contents): Remove function.
8346
8347 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
8348 Use `save-restriction' in order to keep markers.
8349
8350 * net/trampver.el: Update release number.
8351
8352 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8353
8354 * progmodes/compile.el (compilation-parse-errors):
8355 Use compilation--put-prop.
8356 (compilation--ensure-parse): Check compilation-multiline.
8357
8358 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
8359
8360 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
8361 lexical-binding.
8362
8363 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
8364
8365 * progmodes/ruby-mode.el: Fix recently added tests.
8366 (ruby-smie-grammar): Add - and +.
8367 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
8368 (ruby-smie--backward-id): New functions.
8369 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
8370 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
8371 any more.
8372
8373 2013-10-07 Leo Liu <sdl.web@gmail.com>
8374
8375 * register.el (register-preview-delay)
8376 (register-preview-functions): New variables.
8377 (register-read-with-preview, register-preview)
8378 (register-describe-oneline): New functions.
8379 (point-to-register, window-configuration-to-register)
8380 (frame-configuration-to-register, jump-to-register)
8381 (number-to-register, view-register, insert-register)
8382 (copy-to-register, append-to-register, prepend-to-register)
8383 (copy-rectangle-to-register): Use register-read-with-preview to
8384 read register. (Bug#15525)
8385
8386 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
8387
8388 * net/network-stream.el (network-stream-open-starttls): Don't add
8389 --insecure if it's already present, because that gnutls-cli
8390 rejects getting that parameter twice.
8391
8392 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
8393
8394 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
8395 keyword, too.
8396
8397 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
8398
8399 * newcomment.el (comment-use-global-state): Change default value
8400 to t, mark obsolete (Bug#15251).
8401 (comment-beginning): In addition to `comment-to-syntax', check the
8402 value of `comment-use-global-state'.
8403
8404 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8405
8406 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
8407 (ruby-comment-column): Follow the global default, by default.
8408 (ruby-smie-grammar): Add assignment syntax.
8409 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
8410 open-paren, a comma, or a \.
8411 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
8412 and line continuations.
8413 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
8414 followed by implicit semi-colons. Add rule for string concatenation
8415 and for indentation at BOB.
8416 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
8417
8418 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
8419 calling next-sexp, since next-token may have skipped chars which
8420 next-sexp doesn't know should be skipped!
8421
8422 2013-10-05 Leo Liu <sdl.web@gmail.com>
8423
8424 * progmodes/octave.el (octave-send-region):
8425 Call compilation-forget-errors.
8426
8427 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8428
8429 * vc/vc-svn.el (vc-svn-find-admin-dir):
8430 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
8431 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
8432 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
8433 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
8434
8435 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8436
8437 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
8438
8439 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8440
8441 * subr.el (read-passwd): Hide chars even when called within a context
8442 where after-change-functions is disabled (bug#15501).
8443 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
8444 until we removed ourself from overriding-terminal-local-map.
8445
8446 2013-10-04 Leo Liu <sdl.web@gmail.com>
8447
8448 * progmodes/octave.el (inferior-octave-mode):
8449 Call compilation-forget-errors.
8450
8451 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8452
8453 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
8454
8455 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
8456
8457 * net/secrets.el (secrets-create-collection): Add optional
8458 argument ALIAS. Use proper Label keyword. Append ALIAS as
8459 dbus-call-method argument. (Bug#15516)
8460
8461 2013-10-04 Leo Liu <sdl.web@gmail.com>
8462
8463 * progmodes/octave.el (inferior-octave-error-regexp-alist)
8464 (inferior-octave-compilation-font-lock-keywords): New variables.
8465 (compilation-error-regexp-alist)
8466 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
8467 (inferior-octave-mode): Use compilation-shell-minor-mode.
8468
8469 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
8470
8471 * minibuffer.el (completion--replace): Be careful that `end' might be
8472 a marker.
8473
8474 2013-10-03 Daiki Ueno <ueno@gnu.org>
8475
8476 Add support for package signature checking.
8477 * emacs-lisp/package.el (url-http-file-exists-p)
8478 (epg-make-context, epg-context-set-home-directory)
8479 (epg-verify-string, epg-context-result-for)
8480 (epg-signature-status, epg-signature-to-string)
8481 (epg-check-configuration, epg-configuration)
8482 (epg-import-keys-from-file): Declare.
8483 (package-check-signature): New user option.
8484 (package-unsigned-archives): New user option.
8485 (package-desc): Add `signed' field.
8486 (package-load-descriptor): Set `signed' field if .signed file exists.
8487 (package--archive-file-exists-p): New function.
8488 (package--check-signature): New function.
8489 (package-install-from-archive): Check package signature.
8490 (package--download-one-archive): Check archive signature.
8491 (package-delete): Remove .signed file.
8492 (package-import-keyring): New command.
8493 (package-refresh-contents): Import default keyring.
8494 (package-desc-status): Add "unsigned" status.
8495 (describe-package-1, package-menu--print-info)
8496 (package-menu-mark-delete, package-menu--find-upgrades)
8497 (package-menu--status-predicate): Support "unsigned" status.
8498
8499 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8500
8501 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
8502 the new compilation scheme using the new byte-codes.
8503
8504 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
8505 (byte-pophandler): New byte codes.
8506 (byte-goto-ops): Adjust accordingly.
8507 (byte-compile--use-old-handlers): New var.
8508 (byte-compile-catch): Use new byte codes depending on
8509 byte-compile--use-old-handlers.
8510 (byte-compile-condition-case--old): Rename from
8511 byte-compile-condition-case.
8512 (byte-compile-condition-case--new): New function.
8513 (byte-compile-condition-case): New function that dispatches depending
8514 on byte-compile--use-old-handlers.
8515 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
8516 when we can.
8517
8518 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
8519 Optimize under `condition-case' and `catch' if
8520 byte-compile--use-old-handlers is nil.
8521 (disassemble-offset): Handle new bytecodes.
8522
8523 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8524
8525 * subr.el (error): Use `declare'.
8526 (decode-char, encode-char): Use advertised-calling-convention instead
8527 of the docstring to discourage use of the `restriction' arg.
8528
8529 2013-10-03 Daiki Ueno <ueno@gnu.org>
8530
8531 * epg.el (epg-verify-file): Add a comment saying that it does not
8532 notify verification error as a return value nor a signal.
8533 (epg-verify-string): Ditto.
8534
8535 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
8536
8537 * progmodes/compile.el (compilation-start): Try globbing the arg to
8538 `cd' (bug#15417).
8539
8540 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
8541
8542 Sync with Tramp 2.2.8.
8543
8544 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
8545 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
8546 * net/trampver.el: Update release number.
8547
8548 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
8549
8550 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
8551 and default-process-coding-system for darwin only.
8552
8553 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
8554
8555 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
8556
8557 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
8558
8559 * vc/vc-git.el (vc-git-grep): Disable pager.
8560
8561 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
8562
8563 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
8564 Use :url instead of :homepage, as per
8565 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
8566
8567 * newcomment.el (comment-beginning): When `comment-use-syntax' is
8568 non-nil, use `syntax-ppss' (Bug#15251).
8569
8570 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8571
8572 * progmodes/octave.el (inferior-octave-startup-file):
8573 Prefer ~/.emacs.d/init_octave.m.
8574
8575 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
8576
8577 * emacs-lisp/package.el (package-desc-from-define):
8578 Accept additional arguments as plist, convert them to an alist and store
8579 them in the `extras' slot.
8580 (package-generate-description-file): Convert extras alist back to
8581 plist and append to the `define-package' form arguments.
8582 (package--alist-to-plist): New function.
8583 (package--ac-desc): Add `extras' slot.
8584 (package--add-to-archive-contents): Check if the archive-contents
8585 vector is long enough, and if it is, pass its `extras' slot value
8586 to `package-desc-create'.
8587 (package-buffer-info): Call `lm-homepage', pass the returned value
8588 to `package-desc-from-define'.
8589 (describe-package-1): Render the homepage button (Bug#13291).
8590
8591 * emacs-lisp/package-x.el (package-upload-buffer-internal):
8592 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
8593
8594 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
8595
8596 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
8597 and default-process-coding-system to utf-8-unix (Bug#15402).
8598
8599 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
8600
8601 * subr.el (looking-back): Do not recommend using looking-back.
8602
8603 2013-09-28 Alan Mackenzie <acm@muc.de>
8604
8605 Fix indentation/fontification of Java enum with "implements".
8606
8607 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
8608 regexp which matches "implements", etc., in Java.
8609 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
8610 specifier clauses coming after "enum".
8611 * progmodes/cc-fonts.el (c-font-lock-declarations)
8612 (c-font-lock-enum-tail): Check for extra specifier clauses coming
8613 after "enum".
8614
8615 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
8616
8617 * faces.el (region): Change ns_selection_color to
8618 ns_selection_fg_color, add ns_selection_bg_color.
8619
8620 2013-09-28 Leo Liu <sdl.web@gmail.com>
8621
8622 * progmodes/octave.el (inferior-octave-completion-table)
8623 (inferior-octave-completion-at-point): Minor tweaks.
8624
8625 * textmodes/ispell.el (ispell-lookup-words): Rename from
8626 lookup-words. (Bug#15460)
8627 (lookup-words): Obsolete.
8628 (ispell-complete-word, ispell-command-loop): All uses changed.
8629
8630 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8631
8632 * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
8633 (octave-mode-menu): Add octave-send-buffer.
8634 (octave-send-buffer): New function.
8635
8636 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8637
8638 * progmodes/octave.el (octave-mode-map): Add key binding for
8639 octave-lookfor.
8640 (octave-mode-menu): Add octave-lookfor.
8641 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
8642 octave-lookfor.
8643 (octave-lookfor): New function.
8644
8645 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
8646
8647 * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
8648 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
8649 its convention.
8650 (cl--loop-set-iterator-function): New function.
8651 (cl-loop): Adjust accordingly, so as not to use cl-subst.
8652 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
8653 Bind `it' with `let' instead of substituting it with `cl-subst'.
8654 (cl--unused-var-p): New function.
8655 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
8656 Eliminate some unused variable warnings (bug#15326).
8657
8658 2013-09-27 Tassilo Horn <tsdh@gnu.org>
8659
8660 * doc-view.el (doc-view-scale-reset): Rename from
8661 `doc-view-reset-zoom-level'.
8662 (doc-view-scale-adjust): New command.
8663 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
8664 `doc-view-scale-adjust'.
8665
8666 2013-09-26 Tassilo Horn <tsdh@gnu.org>
8667
8668 * doc-view.el (doc-view-reset-zoom-level): New command.
8669 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
8670 zoom commands (bug#15466).
8671
8672 2013-09-26 Kenichi Handa <handa@gnu.org>
8673
8674 * international/quail.el (quail-help): Make it not a command.
8675
8676 2013-09-26 Leo Liu <sdl.web@gmail.com>
8677
8678 * minibuffer.el (completion-all-sorted-completions): Make args
8679 optional as they are.
8680
8681 2013-09-25 Daniel Colascione <dancol@dancol.org>
8682
8683 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
8684 specs are and that they're not evaluated.
8685
8686 2013-09-24 Sam Steingold <sds@gnu.org>
8687
8688 * midnight.el (clean-buffer-list-kill-regexps)
8689 (clean-buffer-list-kill-buffer-names): Update for the new Man
8690 buffer naming which includes the object name.
8691
8692 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8693
8694 * eshell/esh-cmd.el (eshell--sep-terms): New var.
8695 (eshell-parse-command, eshell-parse-pipeline): Use it since
8696 eshell-separate-commands requires a dynamic scoped var.
8697 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
8698
8699 2013-09-23 Leo Liu <sdl.web@gmail.com>
8700
8701 * autoinsert.el (auto-insert-alist): Make the value of
8702 lexical-binding match its file setting.
8703
8704 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
8705
8706 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
8707
8708 * autoarg.el (autoarg-kp-digit-argument):
8709 * electric.el (Electric-command-loop):
8710 * kmacro.el (kmacro-step-edit-insert):
8711 Do not set universal-argument-num-events.
8712
8713 2013-09-22 Leo Liu <sdl.web@gmail.com>
8714
8715 * files.el (interpreter-mode-alist): Add octave.
8716
8717 2013-09-21 Alan Mackenzie <acm@muc.de>
8718
8719 C++: fontify identifier in declaration following "public:" correctly.
8720 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
8721 to match "public", etc.
8722 (c-decl-prefix-re): Add ":" into the C++ value.
8723 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
8724 bit. Add a check for a ":" preceded by "public", etc.
8725
8726 2013-09-21 Eli Zaretskii <eliz@gnu.org>
8727
8728 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
8729 recognized by GDB 7.5 and later.
8730
8731 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
8732
8733 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
8734
8735 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
8736
8737 * subr.el (internal--call-interactively): New const.
8738 (called-interactively-p): Use it (bug#3984).
8739
8740 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
8741
8742 * vc/pcvs.el (cvs-mode-ignore):
8743 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
8744 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
8745
8746 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8747
8748 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
8749 (eshell-ls-orig-insert-directory): Remove.
8750 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
8751 (eshell-ls-use-in-dired): Use advice-add/remove.
8752 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
8753 Add `orig-fun' arg for use in :around advice.
8754 Make it check (redundantly) eshell-ls-use-in-dired.
8755
8756 2013-09-19 Glenn Morris <rgm@gnu.org>
8757
8758 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
8759
8760 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
8761
8762 * emacs-lisp/eieio.el (class-parent): Undo previous change.
8763
8764 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
8765
8766 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
8767 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
8768 (tramp-get-remote-python): New defuns.
8769 (tramp-get-remote-uid-with-perl)
8770 (tramp-get-remote-gid-with-perl): New defuns. Perl code
8771 contributed by yary <not.com@gmail.com> (tiny change).
8772 (tramp-get-remote-uid-with-python)
8773 (tramp-get-remote-gid-with-python): New defuns. Python code
8774 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
8775 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
8776
8777 2013-09-19 Glenn Morris <rgm@gnu.org>
8778
8779 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
8780
8781 * eshell/em-unix.el (eshell-remove-entries):
8782 Rename argument to avoid name-clash with global `top-level'.
8783
8784 * eshell/esh-proc.el (eshell-kill-process-function):
8785 Remove eshell-reset-after-proc from eshell-kill-hook if present.
8786 (eshell-reset-after-proc): Remove unused arg `proc'.
8787
8788 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
8789 (directory-files-and-attributes): Mark unused arg.
8790
8791 * eshell/em-unix.el (eshell-remove-entries):
8792 Remove unused arg `path'. Update callers.
8793
8794 * eshell/em-hist.el (eshell-hist-parse-arguments):
8795 Remove unused arg `silent'. Update callers.
8796
8797 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
8798 Fix (f)boundp mix-up.
8799
8800 * eshell/em-smart.el (eshell-smart-scroll-window)
8801 (eshell-disable-after-change):
8802 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
8803
8804 2013-09-18 Alan Mackenzie <acm@muc.de>
8805
8806 Fix fontification of type when followed by "const".
8807 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
8808 "known" types from fontification.
8809
8810 2013-09-18 Glenn Morris <rgm@gnu.org>
8811
8812 * emacs-lisp/chart.el (x-display-color-cells): Declare.
8813 (chart-face-list): Drop Emacsen without display-color-p.
8814
8815 * net/eww.el (libxml-parse-html-region): Declare.
8816 (eww-display-html): Explicit error if no libxml2 support.
8817
8818 * doc-view.el (doc-view-mode): Silence --without-x compilation.
8819
8820 * image.el (image-type-from-buffer, image-multi-frame-p):
8821 Remove --without-x warning/error.
8822
8823 * mouse.el (mouse-yank-primary):
8824 * term.el (term-mouse-paste):
8825 Reorder to silence --without-x compilation.
8826
8827 * mpc.el (doc-view-mode): Silence --without-x compilation.
8828
8829 * mail/rmailmm.el (rmail-mime-set-bulk-data):
8830 Silence --without-x compilation.
8831
8832 * progmodes/gud.el (gud-find-file, gud-mode):
8833 Silence --without-x compilation.
8834 (tooltip-mode): Declare.
8835
8836 * wdired.el (dired-backup-overwrite): Remove declaration.
8837 (wdired-mode-map): Add doc string.
8838
8839 * custom.el (x-get-resource): Declare.
8840
8841 * eshell/em-glob.el (ange-cache):
8842 * eshell/em-unix.el (ange-cache): Declare.
8843
8844 * faces.el (x-display-list, x-open-connection, x-get-resource):
8845 Declare.
8846
8847 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
8848 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
8849 Declare.
8850
8851 * frame.el (x-display-grayscale-p, x-display-name): Declare.
8852
8853 * net/gnutls.el (gnutls-log-level): Declare.
8854
8855 * net/shr.el (image-size, image-animate): Declare.
8856
8857 * simple.el (font-info): Declare.
8858
8859 * subr.el (x-popup-dialog): Declare.
8860
8861 * term/common-win.el (x-select-enable-primary)
8862 (x-last-selected-text-primary, x-last-selected-text-clipboard):
8863 Declare.
8864
8865 * term/ns-win.el (x-handle-args): Declare.
8866
8867 * term/x-win.el (x-select-enable-clipboard): Declare.
8868
8869 * term/w32-win.el (create-default-fontset): Declare.
8870
8871 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
8872 Declare.
8873
8874 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
8875 (fit-frame-to-buffer): Explicit error if --without-x.
8876 (mouse-autoselect-window-select): Silence compiler.
8877
8878 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
8879
8880 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
8881 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
8882 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
8883 * eshell/esh-util.el (eshell-sublist):
8884 Remove unused local variables.
8885
8886 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
8887
8888 * textmodes/two-column.el: Make 2C-split work for --without-x.
8889 (scroll-bar-columns): Autoload.
8890 (top-level): Require fringe when compiling.
8891
8892 2013-09-18 Leo Liu <sdl.web@gmail.com>
8893
8894 * subr.el (add-hook): Robustify to handle closure as well.
8895
8896 2013-09-17 Glenn Morris <rgm@gnu.org>
8897
8898 * simple.el (messages-buffer-mode-map): Unbind "g".
8899
8900 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8901
8902 * help-mode.el (help-mode-finish): Use derived-mode-p.
8903 Remove obsolete highlighting.
8904
8905 * play/life.el (life-mode): Use define-derived-mode. Derive from
8906 special-mode.
8907 (life): Let-bind inhibit-read-only.
8908 (life-setup): Avoid `setq'. Use `life-mode'.
8909
8910 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
8911 which should not be needed any more.
8912 (package-menu-refresh, package-menu-describe-package): Use user-error.
8913
8914 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
8915 (eshell-post-rewrite-command-hook): Make obsolete.
8916 (eshell-parse-command): Simplify.
8917 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
8918 (eshell--cmd): Declare.
8919 (eshell-parse-pipeline): Remove unused var `final-p'.
8920 Pass a dynvar to eshell-post-rewrite-command-hook.
8921 Implement the new eshell-post-rewrite-command-function.
8922 (eshell-invoke-directly): Remove unused arg `input'.
8923 * eshell/esh-io.el (eshell-io-initialize):
8924 Use eshell-post-rewrite-command-function (bug#15399).
8925 (eshell--apply-redirections): Rename from eshell-apply-redirections;
8926 adjust to new calling convention.
8927 (eshell-create-handles): Rename args to avoid clashing with dynvar
8928 `standard-output'.
8929
8930 2013-09-17 Glenn Morris <rgm@gnu.org>
8931
8932 * simple.el (messages-buffer-mode): New major mode.
8933 (messages-buffer): New function.
8934 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
8935 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
8936 (ert-run-test): Use `messages-buffer' function.
8937 (ert--force-message-log-buffer-truncation): Ignore read-only.
8938 * help.el (view-echo-area-messages): Use `messages-buffer' function.
8939 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
8940
8941 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8942
8943 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
8944
8945 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
8946
8947 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8948
8949 * icomplete.el (icomplete-in-buffer): New var.
8950 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
8951 vars and replace them with functions.
8952 (icomplete-minibuffer-setup): Adjust accordingly.
8953 (icomplete--completion-table, icomplete--completion-predicate)
8954 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
8955 New functions.
8956 (icomplete-forward-completions, icomplete-backward-completions)
8957 (icomplete-simple-completing-p, icomplete-exhibit)
8958 (icomplete-completions): Use them.
8959 (icomplete--in-region-buffer): New var.
8960 (icomplete--in-region-setup): New function.
8961 (icomplete-mode): Use it.
8962
8963 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
8964 (bug#15379).
8965 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
8966 return args and options.
8967 (eshell-eval-using-options): Use the new return value of
8968 eshell--do-opts to set the options's vars in their scope.
8969 (eshell--set-option): Rename from eshell-set-option.
8970 Add arg `opt-vals'.
8971 (eshell--process-option): Rename from eshell-process-option.
8972 Add arg `opt-vals'.
8973 (eshell--process-args): Use an `opt-vals' alist to store the options's
8974 values during their processing and return them additionally to the
8975 remaining args.
8976
8977 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
8978
8979 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
8980 continuation character an operator, as far as indentation is
8981 concerned (Bug#15369).
8982
8983 2013-09-15 Martin Rudalics <rudalics@gmx.at>
8984
8985 * window.el (window--state-put-2): Don't process buffer state
8986 when buffer doesn't exist any more (Bug#15382).
8987
8988 2013-09-15 Glenn Morris <rgm@gnu.org>
8989
8990 * eshell/em-unix.el (eshell/rm):
8991 Make -f ignore missing files. (Bug#15373)
8992
8993 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
8994 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
8995 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
8996
8997 2013-09-14 Glenn Morris <rgm@gnu.org>
8998
8999 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
9000
9001 2013-09-13 Glenn Morris <rgm@gnu.org>
9002
9003 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
9004 (dired-guess-default): Make `file' available in the env. (Bug#15363)
9005
9006 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
9007
9008 * frame.el (x-focus-frame): Mark as declared in frame.c.
9009
9010 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
9011
9012 * ls-lisp.el: Use advice-add.
9013 (original-insert-directory): Remove.
9014 (ls-lisp--insert-directory): Rename from insert-directory; add
9015 `orig-fun' argument.
9016 (insert-directory): Advise.
9017
9018 2013-09-13 Eli Zaretskii <eliz@gnu.org>
9019
9020 * term.el (term-emulate-terminal): Decode the command string
9021 before passing it to term-command-hook. (Bug#15337)
9022
9023 2013-09-13 Glenn Morris <rgm@gnu.org>
9024
9025 * eshell/esh-util.el (ange-cache): Move declaration earlier.
9026
9027 * eshell/esh-ext.el (eshell-search-path): Declare.
9028
9029 * eshell/em-prompt.el (eshell/pwd): Autoload it.
9030 Otherwise an error occurs if eshell-dirs module not loaded.
9031
9032 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
9033
9034 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
9035
9036 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
9037 `tramp-check-proper-host'. Check for a valid method name.
9038
9039 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
9040 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
9041 * net/tramp-sh.el (tramp-maybe-open-connection):
9042 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
9043
9044 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
9045 also for hash values.
9046
9047 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9048
9049 * term/ns-win.el (parameters): Don't declare as dynamic.
9050 (before-make-frame-hook): Don't add ineffective function.
9051
9052 * eshell/*.el: Use lexical-binding (bug#15231).
9053
9054 2013-09-12 Kenichi Handa <handa@gnu.org>
9055
9056 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
9057
9058 2013-09-12 Glenn Morris <rgm@gnu.org>
9059
9060 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
9061 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
9062
9063 * subr.el (do-after-load-evaluation): Also give compiler warnings
9064 when obsolete files are used (except by obsolete files).
9065
9066 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
9067 in the status output, assume `filename' is the first. (Bug#15322)
9068
9069 * vc/vc.el (vc-deduce-fileset): Doc fix.
9070
9071 * calc/calc-help.el (Info-goto-node):
9072 * progmodes/cperl-mode.el (Info-find-node):
9073 * vc/ediff.el (Info-goto-node): Update declarations.
9074
9075 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
9076
9077 * vc/vc-bzr.el (vc-compilation-mode): Declare.
9078 (vc-bzr-pull): Require vc-dispatcher.
9079 * vc/vc-git.el (vc-compilation-mode): Declare.
9080 (vc-git-pull): Require vc-dispatcher.
9081
9082 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
9083
9084 * progmodes/octave.el (help-button-action): Declare.
9085
9086 * shell.el (shell-directory-tracker): Output error as a message
9087 rather than just returning it as a string.
9088 (shell-process-pushd): Remove useless use of message.
9089
9090 * dframe.el (dframe-timer-fn):
9091 * files.el (dir-locals-read-from-file):
9092 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
9093 (mpc-format):
9094 * reveal.el (reveal-post-command):
9095 * saveplace.el (load-save-place-alist-from-file):
9096 * shell.el (shell-resync-dirs):
9097 * w32-common-fns.el (x-get-selection-value):
9098 * emacs-lisp/copyright.el (copyright-find-copyright):
9099 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
9100 * emulation/tpu-edt.el (tpu-copy-keyfile):
9101 * play/bubbles.el (bubbles--mark-neighbourhood):
9102 * progmodes/executable.el
9103 (executable-make-buffer-file-executable-if-script-p):
9104 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
9105
9106 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9107
9108 Cleanup Eshell to rely less on dynamic scoping.
9109 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
9110 last-value, and ext-command here. Bind `args' closer to `body'.
9111 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
9112 (eshell--args): Declare new dynamic var.
9113 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
9114 last-value, and ext-command. Pass `args' to `body'.
9115 (eshell-process-args): Bind eshell--args.
9116 (eshell-set-option): Use eshell--args.
9117 * eshell/eshell.el (eshell): Use derived-mode-p.
9118 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
9119 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
9120 (eshell-glob-function): Declare.
9121 * eshell/esh-util.el: Require cl-lib.
9122 (eshell-read-hosts-file): Avoid add-to-list.
9123 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
9124 `err'.
9125 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
9126 Declare.
9127 (eshell/diff): Remove unused var `err'.
9128 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
9129 `killflag'.
9130 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
9131 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
9132 first use.
9133 * eshell/em-glob.el (eshell-glob-matches, message-shown):
9134 Move declaration before first use.
9135 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
9136 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
9137 rely on cl-return.
9138
9139 2013-09-12 Glenn Morris <rgm@gnu.org>
9140
9141 * term/ns-win.el (global-map): Remove binding for ispell-next,
9142 deleted 1999-05-29. (Bug#15357)
9143
9144 2013-09-11 Glenn Morris <rgm@gnu.org>
9145
9146 * echistory.el (electric-command-history): Remove call to deleted func.
9147
9148 * play/landmark.el (landmark-mode): Fix typos.
9149
9150 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
9151 Check cvs-sort-ignore-file is bound.
9152
9153 * savehist.el: No need for cl when compiling on Emacs.
9154
9155 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9156
9157 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
9158 (bug#15338).
9159 (eshell-self-insert-command, eshell-send-invisible):
9160 Remove unused argument.
9161 (eshell-handle-control-codes): Remove unused var `orig'.
9162 Avoid delete-backward-char.
9163
9164 * files.el (set-auto-mode): Simplify a bit further.
9165
9166 2013-09-11 Glenn Morris <rgm@gnu.org>
9167
9168 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
9169 (set-auto-mode): Don't regexp-quote elements.
9170 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
9171 * progmodes/cc-mode.el (interpreter-mode-alist):
9172 * progmodes/ruby-mode.el (interpreter-mode-alist):
9173 Revert previous change.
9174
9175 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9176
9177 * play/snake.el (snake-mode):
9178 * play/mpuz.el (mpuz-mode):
9179 * play/landmark.el (lm-mode):
9180 * play/blackbox.el (blackbox-mode):
9181 * play/5x5.el (5x5-mode):
9182 * obsolete/options.el (Edit-options-mode):
9183 * net/quickurl.el (quickurl-list-mode):
9184 * net/newst-treeview.el (newsticker-treeview-mode):
9185 * mail/rmailsum.el (rmail-summary-mode):
9186 * mail/mspools.el (mspools-mode):
9187 * locate.el (locate-mode):
9188 * ibuffer.el (ibuffer-mode):
9189 * emulation/ws-mode.el (wordstar-mode):
9190 * emacs-lisp/debug.el (debugger-mode):
9191 * array.el (array-mode):
9192 * net/eudc.el (eudc-mode): Use define-derived-mode.
9193 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
9194 Move initialization into declaration.
9195 (mairix-searches-mode): Use define-derived-mode.
9196 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
9197 (eudc-edit-hotlist): Use dolist.
9198 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
9199 (Man-mode): Use define-derived-mode.
9200 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
9201 (Info-edit-mode): Use define-derived-mode.
9202 (Info-cease-edit): Use Info-mode.
9203 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
9204 into declaration.
9205 (eshell-mode): Use define-derived-mode.
9206 * chistory.el (command-history-mode-map): Rename from
9207 command-history-map.
9208 (command-history-mode): Use define-derived-mode.
9209 (Command-history-setup): Remove function.
9210 * calc/calc.el (calc-trail-mode-map): New var.
9211 (calc-trail-mode): Use define-derived-mode.
9212 (calc-trail-buffer): Set calc-main-buffer manually.
9213 * bookmark.el (bookmark-insert-annotation): New function.
9214 (bookmark-edit-annotation): Use it.
9215 (bookmark-edit-annotation-mode): Make it a proper major mode.
9216 (bookmark-send-edited-annotation): Use derived-mode-p.
9217 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
9218 closer to its ideal place. Use \' to match EOS.
9219
9220 * profiler.el (profiler-calltree-find): Use function-equal.
9221
9222 2013-09-10 Glenn Morris <rgm@gnu.org>
9223
9224 * files.el (interpreter-mode-alist): Convert to regexps.
9225 (set-auto-mode): Adapt for this. (Bug#15306)
9226 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
9227 Comment out unused variable.
9228 * progmodes/cc-mode.el (interpreter-mode-alist):
9229 * progmodes/python.el (interpreter-mode-alist):
9230 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
9231 * progmodes/sh-script.el (sh-set-shell):
9232 No longer use interpreter-mode-alist to get list of shells.
9233
9234 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
9235
9236 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
9237
9238 * simple.el: Use set-temporary-overlay-map for universal-argument.
9239 (universal-argument-map): Don't use default-bindings (bug#15317).
9240 Bind switch-frame explicitly. Replace universal-argument-minus with
9241 a conditional binding.
9242 (universal-argument-num-events, saved-overriding-map): Remove.
9243 (restore-overriding-map): Remove.
9244 (universal-argument--mode): Rename from save&set-overriding-map,
9245 and rewrite.
9246 (universal-argument, universal-argument-more, negative-argument)
9247 (digit-argument): Adjust accordingly.
9248 (universal-argument-minus): Remove.
9249 (universal-argument-other-key): Remove.
9250
9251 * subr.el (with-demoted-errors): Add `format' argument.
9252
9253 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
9254
9255 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
9256 `tramp-cleanup-connection'.
9257
9258 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
9259 parameters KEEP-DEBUG and KEEP-PASSWORD.
9260
9261 * net/tramp.el (tramp-file-name-handler):
9262 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
9263 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
9264 (tramp-maybe-open-connection):
9265 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
9266 Use `tramp-cleanup-connection'.
9267
9268 * net/tramp-sh.el (tramp-maybe-open-connection):
9269 Catch 'uname-changed inside the progress reporter.
9270
9271 2013-09-10 Glenn Morris <rgm@gnu.org>
9272
9273 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
9274
9275 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
9276 returns "alternate access method" in mode (eg "-rw-r--r--.").
9277
9278 2013-09-08 Glenn Morris <rgm@gnu.org>
9279
9280 * saveplace.el (load-save-place-alist-from-file):
9281 Demote errors. (Bug#15305)
9282
9283 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
9284
9285 Improve compatibility with older Emacsen, and XEmacs.
9286
9287 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
9288 only if it is bound. It isn't for XEmacs.
9289 (with-tramp-progress-reporter): Do not let-bind `result'.
9290 This yields to scoping errors in XEmacs.
9291 (tramp-handle-make-auto-save-file-name): New function, moved from
9292 tramp-sh.el.
9293
9294 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
9295 for `make-auto-save-file-name'.
9296 (tramp-adb--gnu-switches-to-ash):
9297 Use `tramp-compat-replace-regexp-in-string'.
9298
9299 * net/tramp-cache.el (tramp-cache-print): Call
9300 `substring-no-properties' only if it is bound. It isn't for XEmacs.
9301
9302 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
9303 bound. It isn't for XEmacs.
9304
9305 * net/tramp-compat.el (tramp-compat-copy-file):
9306 Catch `wrong-number-of-arguments' error.
9307 (tramp-compat-replace-regexp-in-string): New defun.
9308
9309 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
9310 for `make-auto-save-file-name'.
9311 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
9312 `copy-file'.
9313 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
9314 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
9315 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
9316
9317 * net/tramp-gw.el (tramp-gw-open-network-stream):
9318 Use `tramp-compat-replace-regexp-in-string'.
9319
9320 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
9321 Call `tramp-handle-make-auto-save-file-name'.
9322 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
9323 (tramp-sh-file-gvfs-monitor-dir-process-filter)
9324 (tramp-sh-file-inotifywait-process-filter):
9325 Use `tramp-compat-replace-regexp-in-string'.
9326 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
9327
9328 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
9329 for `make-auto-save-file-name'.
9330 (tramp-smb-handle-copy-directory):
9331 Call `tramp-compat-replace-regexp-in-string'.
9332 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
9333 (tramp-smb-handle-copy-file): Improve error message.
9334 (tramp-smb-handle-rename-file): Rename directly only in case
9335 `newname' does not exist yet. This is a restriction of smbclient.
9336 (tramp-smb-maybe-open-connection): Rerun the function only when
9337 `auth-sources' is non-nil.
9338
9339 2013-09-08 Kenichi Handa <handa@gnu.org>
9340
9341 * international/characters.el: Set category "^" (Combining) for
9342 more characters.
9343
9344 2013-09-07 Alan Mackenzie <acm@muc.de>
9345
9346 Correctly fontify Java class constructors.
9347 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
9348 in Java Mode.
9349 (c-recognize-typeless-decls): Set the Java value to t.
9350 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
9351 While handling a "(", add a check for, effectively, Java, and handle a
9352 "typeless" declaration there.
9353
9354 2013-09-07 Roland Winkler <winkler@gnu.org>
9355
9356 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
9357 field subtitle for entry type book.
9358
9359 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9360
9361 * minibuffer.el: Make minibuffer-complete call completion-in-region
9362 rather than other way around.
9363 (completion--some, completion-pcm--find-all-completions):
9364 Don't delay signals when debugging.
9365 (minibuffer-completion-contents): Beware fields within the
9366 minibuffer contents.
9367 (completion-all-sorted-completions): Use defvar-local.
9368 (completion--do-completion, completion--cache-all-sorted-completions)
9369 (completion-all-sorted-completions, minibuffer-force-complete):
9370 Add args `beg' and `end'.
9371 (completion--in-region-1): New fun, extracted from minibuffer-complete.
9372 (minibuffer-complete): Use completion-in-region.
9373 (completion-complete-and-exit): New fun, extracted from
9374 minibuffer-complete-and-exit.
9375 (minibuffer-complete-and-exit): Use it.
9376 (completion--complete-and-exit): Rename from
9377 minibuffer--complete-and-exit.
9378 (completion-in-region--single-word): New function, extracted from
9379 minibuffer-complete-word.
9380 (minibuffer-complete-word): Use it.
9381 (display-completion-list): Make `common-substring' argument obsolete.
9382 (completion--in-region): Call completion--in-region-1 instead of
9383 minibuffer-complete.
9384 (completion-help-at-point): Pass boundaries to
9385 minibuffer-completion-help as args rather than via an overlay.
9386 (completion-pcm--string->pattern): Use `any-delim'.
9387 (completion-pcm--optimize-pattern): New function.
9388 (completion-pcm--pattern->regex): Handle `any-delim'.
9389 * icomplete.el (icomplete-forward-completions)
9390 (icomplete-backward-completions, icomplete-completions):
9391 Adjust calls to completion-all-sorted-completions and
9392 completion--cache-all-sorted-completions.
9393 (icomplete-with-completion-tables): Default to t.
9394 * emacs-lisp/crm.el (crm--current-element): Rename from
9395 crm--select-current-element. Don't put an overlay but return the
9396 boundaries instead.
9397 (crm--completion-command): Take two new args to bind to the boundaries.
9398 (crm-completion-help): Adjust accordingly.
9399 (crm-complete): Use completion-in-region.
9400 (crm-complete-word): Use completion-in-region--single-word.
9401 (crm-complete-and-exit): Use completion-complete-and-exit.
9402
9403 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9404
9405 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
9406 than dynamically.
9407
9408 2013-09-06 Juri Linkov <juri@jurta.org>
9409
9410 * info.el (Info-display-images-node): When image file doesn't exist
9411 display text version of the image if it's provided in the Info file.
9412 Otherwise, display the location of missing image from SRC attribute.
9413 Add help-echo text property from ALT attribute. (Bug#15279)
9414
9415 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9416
9417 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
9418 (edit-abbrevs-mode): Use define-derived-mode.
9419
9420 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
9421 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
9422 that it's defined.
9423 (epa-key-list-mode, epa-key-mode, epa-info-mode):
9424 Use define-derived-mode.
9425
9426 * epg.el (epg-start-encrypt): Minor CSE simplification.
9427
9428 2013-09-06 William Xu <william.xwl@gmail.com>
9429
9430 * arc-mode.el: Add support for 7za (bug#15264).
9431 (archive-7z-program): New var.
9432 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
9433 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
9434 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
9435
9436 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
9437
9438 Remove URL syntax.
9439
9440 * net/tramp.el (tramp-syntax, tramp-prefix-format)
9441 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
9442 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
9443 (tramp-postfix-host-format, tramp-file-name-regexp)
9444 (tramp-completion-file-name-regexp)
9445 (tramp-completion-dissect-file-name)
9446 (tramp-handle-substitute-in-file-name): Remove 'url case.
9447 (tramp-file-name-regexp-url)
9448 (tramp-completion-file-name-regexp-url): Remove constants.
9449
9450 2013-09-06 Glenn Morris <rgm@gnu.org>
9451
9452 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
9453
9454 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
9455
9456 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
9457 keywords" below "here-doc beginnings" (Bug#15270).
9458
9459 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9460
9461 * subr.el (pop): Use `car-safe'.
9462 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
9463 to detect unused `pop' return value.
9464
9465 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
9466 var `block-regexp'.
9467 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
9468 (python-fill-string): Remove unused var `marker'.
9469 (python-skeleton-add-menu-items): Remove unused var `items'.
9470
9471 * international/mule-cmds.el: Require CL.
9472 (find-coding-systems-for-charsets): Avoid add-to-list.
9473 (sanitize-coding-system-list): New function, extracted from
9474 select-safe-coding-system-interactively.
9475 (select-safe-coding-system-interactively): Use it.
9476 (read-input-method-name): Accept symbols for `default'.
9477
9478 * emacs-lisp/advice.el (defadvice): Add indent rule.
9479
9480 2013-09-05 Daniel Hackney <dan@haxney.org>
9481
9482 * dired-x.el:
9483 * net/ange-ftp.el:
9484 * net/browse-url.el:
9485 * net/dbus.el:
9486 * net/eudc.el:
9487 * net/eudcb-ldap.el:
9488 * net/eww.el:
9489 * net/imap.el:
9490 * printing.el:
9491 * vc/ediff-diff.el:
9492 * vc/ediff-init.el:
9493 * vc/ediff-merg.el:
9494 * vc/ediff-mult.el:
9495 * vc/ediff-util.el:
9496 * vc/ediff-wind.el:
9497 * vc/ediff.el:
9498 * vc/emerge.el:
9499 * vc/pcvs.el:
9500 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
9501 byte compiler. Remove some unused let-bound variables.
9502
9503 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9504
9505 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
9506 a "ref-cell", since it gets better optimized (bug#14883).
9507
9508 2013-09-05 Glenn Morris <rgm@gnu.org>
9509
9510 * progmodes/cc-awk.el (c-forward-sws): Declare.
9511
9512 2013-09-04 Glenn Morris <rgm@gnu.org>
9513
9514 * generic-x.el [rul-generic-mode]: Require cc-mode.
9515 (c++-mode-syntax-table): Declare.
9516 (rul-generic-mode-syntax-table): Init in the defvar.
9517
9518 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
9519
9520 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
9521 (vc-do-command, vc-set-async-update):
9522 * vc/vc-mtn.el (vc-mtn-dir-status):
9523 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
9524 (vc-hg-pull, vc-hg-merge-branch):
9525 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
9526 (vc-git-merge-branch):
9527 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
9528 (vc-cvs-dir-status-files):
9529 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
9530 (vc-bzr-dir-status-files):
9531 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
9532 * vc/vc-annotate.el: Use lexical-binding.
9533 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
9534 (vc-sentinel-movepoint): Declare.
9535 (vc-annotate): Don't use `goto-line'.
9536 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
9537 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
9538 (vc-sentinel-movepoint): Declare.
9539 * vc/vc-svn.el: Use lexical-binding.
9540 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
9541 * vc/vc-sccs.el:
9542 * vc/vc-rcs.el: Use lexical-binding.
9543
9544 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
9545 `deleted'. Don't drop errors silently.
9546
9547 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
9548
9549 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
9550
9551 * vc/vc.el (vc-ignore): Rewrite.
9552 (vc-default-ignore): New function.
9553 (vc-default-ignore-completion-table): Use find-ignore-file.
9554
9555 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
9556 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
9557 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
9558 Remove. Most code moved to vc.el.
9559
9560 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
9561
9562 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
9563 * net/tramp-smb.el (tramp-smb-get-file-entries):
9564 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
9565 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
9566
9567 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
9568 Update call to it.
9569 (eww-change-select): Remove unused var `properties'.
9570 (eww-make-unique-file-name): Remove unused var `base'.
9571
9572 * finder.el (finder-compile-keywords): Don't mess with windows.
9573
9574 * calculator.el (calculator-funcall): Fix typo in last change.
9575
9576 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
9577
9578 * emacs-lisp/package.el (package-activate-1): Don't let a missing
9579 <pkg>-autoloads.el file stop us.
9580
9581 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
9582 warnings, and factor out common code.
9583
9584 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
9585
9586 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
9587 two-character operators and whether the character preceding them
9588 changes their meaning (Bug#15208).
9589
9590 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
9591
9592 Format code sent to Python shell for robustness.
9593 * progmodes/python.el (python-shell-buffer-substring):
9594 New function.
9595 (python-shell-send-region, python-shell-send-buffer): Use it.
9596
9597 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
9598
9599 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
9600 * net/tramp.el (tramp-user-error): ... here.
9601 (tramp-find-method, tramp-check-proper-host)
9602 (tramp-dissect-file-name, tramp-debug-message)
9603 (tramp-handle-shell-command):
9604 * net/tramp-adb.el (tramp-adb-handle-shell-command):
9605 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
9606
9607 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
9608
9609 2013-09-02 Martin Rudalics <rudalics@gmx.at>
9610
9611 * avoid.el (mouse-avoidance-point-position)
9612 (mouse-avoidance-too-close-p): Handle case where posn-at-point
9613 returns nil.
9614
9615 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
9616
9617 * progmodes/python.el (python-shell-completion-get-completions):
9618 Drop use of deleted `comint-last-prompt-overlay'.
9619 (python-nav-if-name-main): New command.
9620
9621 2013-09-01 Glenn Morris <rgm@gnu.org>
9622
9623 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
9624 Avoid leading space in $wins. Otherwise the sed command used by
9625 eg compile-main ends up containing "/*.el". (Bug#15170)
9626
9627 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
9628
9629 2013-08-30 Glenn Morris <rgm@gnu.org>
9630
9631 * emacs-lisp/bytecomp.el (byte-recompile-directory):
9632 Fix is-this-a-directory logic. (Bug#15220)
9633
9634 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9635
9636 * textmodes/css-mode.el: Use SMIE.
9637 (css-smie-grammar): New var.
9638 (css-smie--forward-token, css-smie--backward-token)
9639 (css-smie-rules): New functions.
9640 (css-mode): Use them.
9641 (css-navigation-syntax-table): Remove var.
9642 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
9643 (css-indent-calculate, css-indent-line): Remove functions.
9644
9645 Misc changes to reduce use of `(lambda...); and other cleanups.
9646 * cus-edit.el: Use lexical-binding.
9647 (customize-push-and-save, customize-apropos)
9648 (custom-buffer-create-internal): Use closures.
9649 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
9650 * progmodes/ada-xref.el: Use setq.
9651 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
9652 * dframe.el: Use lexical-binding.
9653 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
9654 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
9655 * descr-text.el: Use lexical-binding.
9656 (describe-text-widget, describe-text-sexp, describe-property-list):
9657 Use closures.
9658 * comint.el (comint-history-isearch-push-state): Use a closure.
9659 * calculator.el: Use lexical-binding.
9660 (calculator-number-to-string): Make it work with lexical-binding.
9661 (calculator-funcall): Same and use cl-letf.
9662
9663 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
9664 (lisp--company-doc-string, lisp--company-location): New functions.
9665 (lisp-completion-at-point): Use them to improve Company support.
9666
9667 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
9668 params of lambda expressions.
9669 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
9670 (ruby-smie--opening-pipe-p): New function.
9671 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
9672 symbols and matched |...| for formal params.
9673 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
9674 from being treated as hanging. Handle "rescue".
9675
9676 2013-08-29 Glenn Morris <rgm@gnu.org>
9677
9678 * progmodes/cc-engine.el (c-pull-open-brace):
9679 Move definition before use.
9680
9681 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9682
9683 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
9684 are immutable. Don't use `unsafe' any more.
9685 (cl--defsubst-expand): Don't substitute at the same time as keeping
9686 a residual unused let-binding. Don't use `unsafe' any more.
9687
9688 2013-08-29 Glenn Morris <rgm@gnu.org>
9689
9690 * calendar/cal-china.el (calendar-chinese-year-cache):
9691 Recenter on 2015.
9692
9693 * nxml/nxml-util.el (nxml-debug-clear-inside):
9694 Use cl-loop rather than loop.
9695
9696 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
9697
9698 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
9699
9700 2013-08-28 Glenn Morris <rgm@gnu.org>
9701
9702 * progmodes/antlr-mode.el: No need to require cc-mode twice.
9703
9704 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
9705
9706 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
9707
9708 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9709
9710 * simple.el (repeat-complex-command--called-interactively-skip):
9711 New function.
9712 (repeat-complex-command): Use it (bug#14136).
9713
9714 * progmodes/cc-mode.el: Minor cleanup of var declarations.
9715 (c-define-abbrev-table): Add `doc' argument.
9716 (c-mode-abbrev-table, c++-mode-abbrev-table)
9717 (objc-mode-abbrev-table, java-mode-abbrev-table)
9718 (idl-mode-abbrev-table, pike-mode-abbrev-table)
9719 (awk-mode-abbrev-table): Use it.
9720 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
9721 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
9722 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
9723 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
9724 Move initialization into the declaration; and remove any
9725 autoload cookie.
9726
9727 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
9728 and dynamic let binding.
9729
9730 * vc/smerge-mode.el: Remove redundant :group args.
9731
9732 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
9733 to load-path.
9734
9735 2013-08-28 Juri Linkov <juri@jurta.org>
9736
9737 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
9738 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
9739 (isearch-other-meta-char): Handle an undefined shifted printing
9740 character by downshifting it. (Bug#15200)
9741
9742 2013-08-28 Juri Linkov <juri@jurta.org>
9743
9744 * isearch.el (isearch-search): Change regexp error message for
9745 non-regexp searches. (Bug#15166)
9746
9747 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
9748
9749 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
9750 for portability to hosts where /bin/sh has problems.
9751
9752 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9753
9754 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
9755
9756 2013-08-27 Juri Linkov <juri@jurta.org>
9757
9758 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
9759 in the keyboard macro. (Bug#15126)
9760
9761 2013-08-27 Juri Linkov <juri@jurta.org>
9762
9763 * isearch.el (isearch-quote-char): Comment out converting unibyte
9764 to multibyte, thus syncing with its `quoted-insert' counterpart.
9765 (Bug#15166)
9766
9767 2013-08-27 Martin Rudalics <rudalics@gmx.at>
9768
9769 * window.el (display-buffer-use-some-window): Add missing
9770 argument in call of get-largest-window (Bug#15185).
9771 Reported by Stephen Leake.
9772
9773 2013-08-27 Glenn Morris <rgm@gnu.org>
9774
9775 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
9776
9777 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
9778
9779 * progmodes/python.el (python-font-lock-keywords): Don't return nil
9780 from a matcher-function unless there's no more matches (bug#15161).
9781
9782 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
9783
9784 * minibuffer.el: Revert change from 2013-08-20.
9785
9786 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
9787 with text property `tramp-default', if appropriate.
9788 (tramp-check-proper-host): New defun.
9789 (tramp-dissect-file-name): Do not check hostname. Revert change
9790 of 2013-03-18.
9791 (tramp-backtrace): Make VEC-OR-PROC optional.
9792
9793 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
9794 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
9795 * net/tramp-sh.el (tramp-maybe-open-connection):
9796 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
9797 Apply `tramp-check-proper-host'.
9798
9799 2013-08-26 Tassilo Horn <tsdh@gnu.org>
9800
9801 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
9802 lambda expression in order to have `describe-variable' display it.
9803
9804 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
9805
9806 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
9807 BUF can be optional. (Bug#15186)
9808
9809 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
9810
9811 * progmodes/flymake.el (flymake-get-real-file-name-function):
9812 Fix broken customization. (Bug#15184)
9813
9814 2013-08-25 Alan Mackenzie <acm@muc.de>
9815
9816 Improve indentation of bracelists defined by macros (without "=").
9817
9818 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
9819 expansion begins with "{", regard it as bracelist when it doesn't
9820 contain a ";".
9821
9822 Parse C++ inher-intro when there's a template split over 2 lines.
9823
9824 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
9825 rigorously the search for "class" etc. followed by ":".
9826
9827 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
9828 random languages a regexp which never matches rather than nil.
9829
9830 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
9831
9832 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
9833 (c-awk-regexp-one-line-possibly-open-char-list-re)
9834 (c-awk-one-line-possibly-open-regexp-re)
9835 (c-awk-one-line-non-syn-ws*-re): Remove.
9836 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
9837 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
9838 (c-awk-space*-unclosed-regexp-/-re): New constants.
9839 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
9840 aren't regexp delimiters.
9841
9842 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
9843 handling for a rare situation in AWK Mode involving unterminated
9844 strings/regexps.
9845
9846 2013-08-23 Glenn Morris <rgm@gnu.org>
9847
9848 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
9849
9850 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
9851
9852 * files.el (create-file-buffer): If the result would begin with
9853 spaces, prepend a "|" instead of removing them. (Bug#15162)
9854
9855 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9856
9857 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
9858 text-properties (bug#15155).
9859
9860 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
9861 exist any more.
9862 (calc-keypad-redraw): Remove unused var `pad'.
9863 (calc-keypad-press): Remove unused var `menu'.
9864
9865 2013-08-23 Martin Rudalics <rudalics@gmx.at>
9866
9867 * window.el (display-buffer-pop-up-frame):
9868 Call pop-up-frame-function with BUFFER current so `make-frame' will
9869 use it as the new frame's buffer (Bug#15133).
9870
9871 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
9872
9873 * calendar/timeclock.el: Minor cleanups.
9874 (timeclock-ask-before-exiting, timeclock-use-display-time):
9875 Use `symbol'.
9876 (timeclock-modeline-display): Define as alias before the
9877 actual definition.
9878 (timeclock-mode-line-display): Use define-minor-mode.
9879 (timeclock-day-list-template): Make it a function, add an argument.
9880 (timeclock-day-list-required, timeclock-day-list-length)
9881 (timeclock-day-list-debt, timeclock-day-list-span)
9882 (timeclock-day-list-break): Adjust calls accordingly.
9883
9884 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
9885
9886 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
9887 Use read--expression so that completion works again.
9888
9889 2013-08-21 Sam Steingold <sds@gnu.org>
9890
9891 Add rudimentary inferior shell interaction
9892 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
9893 (sh-set-shell): Reset it.
9894 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
9895 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
9896
9897 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
9898
9899 * align.el: Use lexical-binding.
9900 (align-region): Simplify accordingly.
9901
9902 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
9903
9904 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
9905
9906 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
9907 `non-essential' up.
9908
9909 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
9910
9911 * net/tramp.el:
9912 * net/tramp-adb.el:
9913 * net/tramp-cmds.el:
9914 * net/tramp-ftp.el:
9915 * net/tramp-gvfs.el:
9916 * net/tramp-gw.el:
9917 * net/tramp-sh.el: Don't wrap external variable declarations by
9918 `eval-when-compile'.
9919
9920 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
9921
9922 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
9923 now that Emacs supports ImageMagick animations.
9924
9925 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
9926
9927 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
9928 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
9929
9930 2013-08-16 Martin Rudalics <rudalics@gmx.at>
9931
9932 * window.el (mouse-autoselect-window-select): Do autoselect when
9933 mouse pointer is on margin.
9934
9935 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
9936
9937 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
9938
9939 2013-08-16 Glenn Morris <rgm@gnu.org>
9940
9941 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
9942 Handle "Remote Directory" response of some clients. (Bug#15058)
9943
9944 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
9945 Tweak warning. (Bug#14926)
9946
9947 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
9948 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
9949
9950 * image-mode.el (image-mode-map): Add menu items to reverse,
9951 increase, decrease, reset animation speed.
9952 (image--set-speed, image-increase-speed, image-decrease-speed)
9953 (image-reverse-speed, image-reset-speed): New functions.
9954 (image-mode-map): Add bindings for speed commands.
9955
9956 * image.el (image-animate-get-speed, image-animate-set-speed):
9957 New functions.
9958 (image-animate-timeout): Respect image :speed property.
9959
9960 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
9961
9962 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
9963 previous line (bug#15101).
9964 (debugger-eval-expression, debugger-record-expression):
9965 Use read--expression (bug#15102).
9966
9967 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
9968
9969 Remove byte compiler warnings, visible when compiling with
9970 `byte-compile-force-lexical-warnings' set to t.
9971
9972 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
9973 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
9974 (tramp-handle-unhandled-file-name-directory)
9975 (tramp-handle-file-notify-add-watch, tramp-action-login)
9976 (tramp-action-succeed, tramp-action-permission-denied)
9977 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
9978 arguments with "_".
9979
9980 * net/tramp-adb.el (tramp-adb-parse-device-names)
9981 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
9982 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
9983 (tramp-adb-handle-file-truename): Remove unused arguments.
9984
9985 * net/tramp-cache.el (tramp-flush-directory-property)
9986 (tramp-flush-connection-property, tramp-list-connections)
9987 (tramp-parse-connection-properties): Prefix unused arguments with "_".
9988
9989 * net/tramp-compat.el (tramp-compat-make-temp-file):
9990 Rename FILENAME to F.
9991
9992 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
9993 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
9994 (tramp-zeroconf-parse-workstation-device-names)
9995 (tramp-zeroconf-parse-webdav-device-names)
9996 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
9997
9998 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
9999 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
10000
10001 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
10002 arguments.
10003 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
10004 (tramp-sh-handle-insert-file-contents-literally)
10005 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
10006 with "_".
10007 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
10008 Remove unused variables.
10009
10010 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
10011 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
10012 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
10013
10014 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
10015 Make them a defconst.
10016 (tramp-uuencode-region): Remove unused variable.
10017
10018 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
10019
10020 * frameset.el (frameset--prop-setter): New function.
10021 (frameset-prop): Add gv-setter declaration.
10022 (frameset-filter-minibuffer): Deal with the case that the minibuffer
10023 parameter was already set in FILTERED. Doc fix.
10024 (frameset--record-minibuffer-relationships): Allow saving a
10025 minibufferless frame without its corresponding minibuffer frame.
10026 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
10027 frame, if the frame id matches.
10028 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
10029 frames before orphaned ones.
10030 (frameset-restore): Warn about orphaned windows, instead of error out.
10031
10032 2013-08-14 Martin Rudalics <rudalics@gmx.at>
10033
10034 * window.el (window-make-atom): Don't overwrite parameter
10035 already present.
10036 (display-buffer-in-atom-window): Handle special case where we
10037 split an already atomic window.
10038 (window--major-non-side-window, display-buffer-in-side-window)
10039 (window--side-check): Ignore minibuffer window when walking
10040 window tree.
10041 (window-deletable-p): Return 'frame only if no other frame uses
10042 our minibuffer window.
10043 (record-window-buffer): Run buffer-list-update-hook.
10044 (split-window): Make sure window--check-frame won't destroy an
10045 existing atomic window in case the new window gets nested
10046 inside.
10047 (display-buffer-at-bottom): Ignore minibuffer window when
10048 walking window tree. Don't split a side window.
10049 (pop-to-buffer): Don't set-buffer here, the select-window call
10050 should do that.
10051 (mouse-autoselect-window-select): Autoselect only if we are in the
10052 text portion of the window.
10053
10054 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10055
10056 * net/shr.el (shr-parse-image-data): New function to grab both the
10057 data itself and the Content-Type.
10058 (shr-put-image): Use it.
10059
10060 * net/eww.el (eww-display-image): Ditto.
10061
10062 * image.el (image-content-type-suffixes): New variable.
10063
10064 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
10065
10066 * progmodes/python.el (python-imenu--build-tree)
10067 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
10068
10069 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
10070
10071 * simple.el (backward-word): Mention the optional argument.
10072
10073 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
10074
10075 * frameset.el (frameset--make): Rename constructor from make-frameset.
10076 (frameset-p, frameset-valid-p): Don't autoload.
10077 (frameset-valid-p): Use normal accessors.
10078
10079 2013-08-13 Glenn Morris <rgm@gnu.org>
10080
10081 * progmodes/compile.el (compile-command): Tweak example in doc.
10082 * obsolete/scribe.el (scribe-mode):
10083 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
10084
10085 * mail/feedmail.el (feedmail-confirm-outgoing)
10086 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
10087
10088 * cus-start.el (truncate-partial-width-windows): Fix type.
10089
10090 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
10091
10092 * net/shr.el (shr-table-horizontal-line): Fix custom type.
10093
10094 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
10095
10096 * emacs-lisp/timer.el (timer--time-setter): New function.
10097 (timer--time): Use it as gv-setter.
10098
10099 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
10100 setter is not a symbol.
10101
10102 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
10103
10104 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
10105 if sending fails. This makes debugging easier.
10106
10107 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
10108
10109 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
10110 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
10111 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
10112
10113 2013-08-12 Eli Zaretskii <eliz@gnu.org>
10114
10115 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
10116
10117 2013-08-12 Glenn Morris <rgm@gnu.org>
10118
10119 * format.el (format-annotate-function):
10120 Handle read-only text properties in the source. (Bug#14887)
10121
10122 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10123
10124 * net/eww.el (eww-display-html): Ignore coding system errors.
10125 One web site uses "utf-8lias" as the coding system.
10126
10127 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
10128
10129 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
10130
10131 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
10132
10133 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
10134 (tutorial--detailed-help): Remove unused local variables.
10135 (tutorial--save-tutorial-to): Use ignore-errors.
10136 (help-with-tutorial): Use looking-at-p.
10137
10138 * view.el (view-buffer-other-window, view-buffer-other-frame):
10139 Mark unused arguments.
10140
10141 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
10142 (woman-select-symbol-fonts, woman, woman-find-file)
10143 (woman-insert-file-contents, woman-non-underline-faces):
10144 Use string-match-p.
10145 (woman1-unquote): Move declaration.
10146
10147 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
10148 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
10149 argument. Remove unused local variable.
10150 (xml-parse-elem-type): Use string-match-p.
10151 (xml-substitute-numeric-entities): Use ignore-errors.
10152
10153 * calculator.el (calculator): Mark unused argument.
10154 (calculator-paste, calculator-quit, calculator-integer-p):
10155 Use ignore-errors.
10156 (calculator-string-to-number, calculator-decimal, calculator-exp)
10157 (calculator-op-or-exp): Use string-match-p.
10158
10159 * dired.el (dired-buffer-more-recently-used-p): Declare.
10160 (dired-insert-set-properties, dired-insert-old-subdirs):
10161 Use ignore-errors.
10162
10163 * dired-aux.el (dired-compress): Use ignore-errors.
10164 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
10165 (dired-do-async-shell-command, dired-do-shell-command)
10166 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
10167 (dired-insert-subdir-validate): Use string-match-p.
10168 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
10169 (dired-add-entry): Use string-match-p, looking-at-p.
10170 (dired-insert-subdir-newpos): Remove unused local variable.
10171
10172 * filenotify.el (file-notify-callback): Remove unused local variable.
10173
10174 * filesets.el (filesets-error): Mark unused argument.
10175 (filesets-which-command-p, filesets-filter-dir-names)
10176 (filesets-directory-files, filesets-get-external-viewer)
10177 (filesets-ingroup-get-data): Use string-match-p.
10178
10179 * find-file.el (ff-other-file-name, ff-other-file-name)
10180 (ff-find-the-other-file, ff-cc-hh-converter):
10181 Remove unused local variables.
10182 (ff-get-file-name): Use string-match-p.
10183 (ff-all-dirs-under): Use ignore-errors.
10184
10185 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
10186 (follow-select-if-visible): Remove unused local variable.
10187
10188 * forms.el (read-file-filter): Move declaration.
10189 (forms--make-format, forms--make-parser, forms-insert-record):
10190 Quote function with #'.
10191 (forms--update): Use string-match-p. Quote function with #'.
10192
10193 * help-mode.el (help-dir-local-var-def): Mark unused argument.
10194 (help-make-xrefs): Use looking-at-p.
10195 (help-xref-on-pp): Use looking-at-p, ignore-errors.
10196
10197 * ibuffer.el (ibuffer-ext-visible-p): Declare.
10198 (ibuffer-confirm-operation-on): Use string-match-p.
10199
10200 * msb.el (msb-item-handler, msb-dired-item-handler):
10201 Mark unused arguments.
10202
10203 * ses.el (ses-decode-cell-symbol)
10204 (ses-kill-override): Remove unused local variable.
10205 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
10206 (ses-load): Use ignore-errors, looking-at-p.
10207 (ses-jump-safe): Use ignore-errors.
10208 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
10209
10210 * tabify.el (untabify, tabify): Mark unused arguments.
10211
10212 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
10213 Mark unused argument.
10214 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
10215 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
10216
10217 * emacs-lisp/timer.el (timer--time): Define setter with
10218 gv-define-setter to avoid deprecation warning.
10219
10220 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
10221 (*record-cmpl-statistics-p*): Remove (was commented out).
10222 (cmpl-statistics-block): Remove (body was commented out).
10223 All callers changed.
10224 (add-completions-from-buffer, load-completions-from-file):
10225 Remove unused variables.
10226
10227 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
10228
10229 * filecache.el (file-cache-delete-file-list):
10230 Print message only when told so.
10231 (file-cache-files-matching): Use #' in mapconcat argument.
10232
10233 * ffap.el (ffap-url-at-point): Fix reference to variable
10234 thing-at-point-default-mail-uri-scheme.
10235
10236 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
10237
10238 * subr.el (define-error): New function.
10239 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
10240 error-file-not-found and define with define-error.
10241 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
10242 and define with define-error.
10243 * userlock.el (file-locked, file-supersession):
10244 * simple.el (mark-inactive):
10245 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
10246 * progmodes/ada-mode.el (ada-mode-errors):
10247 * play/life.el (life-extinct):
10248 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
10249 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
10250 * nxml/rng-util.el (rng-error):
10251 * nxml/rng-uri.el (rng-uri-error):
10252 * nxml/rng-match.el (rng-compile-error):
10253 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
10254 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
10255 * nxml/nxml-rap.el (nxml-scan-error):
10256 * nxml/nxml-outln.el (nxml-outline-error):
10257 * net/soap-client.el (soap-error):
10258 * net/gnutls.el (gnutls-error):
10259 * net/ange-ftp.el (ftp-error):
10260 * mpc.el (mpc-proc-error):
10261 * json.el (json-error, json-readtable-error, json-unknown-keyword)
10262 (json-number-format, json-string-escape, json-string-format)
10263 (json-key-format, json-object-format):
10264 * jka-compr.el (compression-error):
10265 * international/quail.el (quail-error):
10266 * international/kkc.el (kkc-error):
10267 * emacs-lisp/ert.el (ert-test-failed):
10268 * calc/calc.el (calc-error, inexact-result, math-overflow)
10269 (math-underflow):
10270 * bookmark.el (bookmark-error-no-filename):
10271 * epg.el (epg-error): Define with define-error.
10272
10273 * time.el (display-time-event-handler)
10274 (display-time-next-load-average): Don't call sit-for since it seems
10275 unnecessary (bug#15045).
10276
10277 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
10278 Use #' instead of ' to quote functions.
10279 (checkdoc-output-mode): Use setq-local.
10280 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
10281 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
10282 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
10283 (checkdoc-ispell, checkdoc-ispell-current-buffer)
10284 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
10285 (checkdoc-ispell-message-text, checkdoc-ispell-start)
10286 (checkdoc-ispell-continue, checkdoc-ispell-comments)
10287 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
10288
10289 * ido.el (ido-completion-help): Fix up compiler warning.
10290
10291 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
10292
10293 * frameset.el (frameset-p): Add autoload cookie.
10294 (frameset--jump-to-register): New function, based on code moved from
10295 register.el.
10296 (frameset-to-register): Move from register.el. Adapt to `registerv'.
10297
10298 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
10299 (frameset-restore, frameset-save, frameset-session-filter-alist):
10300 Remove declarations.
10301 (register-alist): Doc fix.
10302 (frameset-to-register): Move to frameset.el.
10303 (jump-to-register, describe-register-1): Remove frameset-specific code.
10304
10305 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10306
10307 * allout-widgets.el (allout-widgets-pre-command-business)
10308 (allout-widgets-post-command-business)
10309 (allout-widgets-after-change-handler)
10310 (allout-decorate-item-and-context, allout-set-boundary-marker)
10311 (allout-body-modification-handler)
10312 (allout-graphics-modification-handler): Mark ignored arguments.
10313 (allout-widgets-post-command-business)
10314 (allout-widgets-exposure-change-processor)
10315 (allout-widgets-exposure-undo-processor)
10316 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
10317 (allout-parse-item-at-point, allout-decorate-item-guides)
10318 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
10319 * allout.el (epa-passphrase-callback-function): Declare.
10320 (allout-overlay-insert-in-front-handler)
10321 (allout-overlay-interior-modification-handler)
10322 (allout-isearch-end-handler, allout-chart-siblings)
10323 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
10324 (allout-yank-processing, allout-process-exposed)
10325 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
10326 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
10327 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
10328 (lisp-indent-defform): Mark ignored arguments.
10329 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
10330 (calculate-lisp-indent): Remove unused variables.
10331 * international/characters.el (indian-2-column, arabic-2-column)
10332 (tibetan): Mark ignored arguments.
10333 (use-cjk-char-width-table): Mark ignored arguments.
10334 Remove unused variables.
10335 * international/fontset.el (build-default-fontset-data)
10336 (x-compose-font-name, create-fontset-from-fontset-spec):
10337 Mark ignored arguments.
10338 (fontset-plain-name): Remove unused variables.
10339 * international/mule.el (charset-id, charset-bytes, generic-char-p)
10340 (keyboard-coding-system): Mark ignored arguments.
10341 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
10342 * help.el (resize-temp-buffer-window):
10343 * window.el (display-buffer-in-major-side-window)
10344 (display-buffer-in-side-window, display-buffer-in-previous-window):
10345 Remove unused variables.
10346 * isearch.el (isearch-forward-symbol):
10347 * version.el (emacs-bzr-version-bzr):
10348 * international/mule-cmds.el (current-language-environment):
10349 * term/common-win.el (x-handle-iconic, x-handle-geometry)
10350 (x-handle-display):
10351 * term/pc-win.el (x-list-fonts, x-display-planes)
10352 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
10353 (x-server-version, x-display-screens, x-display-mm-height)
10354 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
10355 (x-selection-owner-p, x-own-selection-internal)
10356 (x-disown-selection-internal, x-get-selection-internal)
10357 (msdos-initialize-window-system):
10358 * term/tty-colors.el (tty-color-alist, tty-color-clear):
10359 * term/x-win.el (x-handle-no-bitmap-icon):
10360 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
10361 (vc-default-find-file-hook, vc-default-extra-menu):
10362 Mark ignored arguments.
10363
10364 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10365
10366 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
10367 break-condition in the context of the debugged code (bug#12685).
10368
10369 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
10370
10371 * comint.el:
10372 Do not use an overlay to highlight the last prompt. (Bug#14744)
10373 (comint-mode): Make comint-last-prompt buffer local.
10374 (comint-last-prompt): New variable.
10375 (comint-last-prompt-overlay): Remove. Superseded by
10376 comint-last-prompt.
10377 (comint-snapshot-last-prompt, comint-output-filter):
10378 Use comint-last-prompt.
10379
10380 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10381
10382 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
10383 (frameset-save): Check validity of the resulting frameset.
10384
10385 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
10386
10387 * ido.el (ido-record-command): Add doc string.
10388
10389 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10390
10391 * frameset.el (frameset): Do not disable creation of the default
10392 frameset-p predicate. Doc fix.
10393 (frameset-valid-p): New function, copied from the old predicate-p.
10394 Add additional checks.
10395 (frameset-restore): Check with frameset-valid-p.
10396 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
10397 (frameset-name, frameset-description, frameset-properties)
10398 (frameset-states): Add docstring.
10399 (frameset-session-filter-alist, frameset-persistent-filter-alist)
10400 (frameset-filter-alist): Doc fixes.
10401
10402 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10403
10404 * frameset.el (frameset-p, frameset-prop): Doc fixes.
10405
10406 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10407
10408 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
10409 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
10410 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
10411 (byte-compile-normal-call): Remove obsolescence check.
10412
10413 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10414
10415 * frameset.el (frameset-restore): Doc fix.
10416
10417 * register.el (frameset-frame-id, frameset-frame-with-id)
10418 (frameset-p, frameset-restore, frameset-save): Declare.
10419 (register-alist): Document framesets.
10420 (frameset-session-filter-alist): Declare.
10421 (frameset-to-register): New function.
10422 (jump-to-register): Implement jumping to framesets. Doc fix.
10423 (describe-register-1): Describe framesets.
10424
10425 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
10426
10427 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
10428
10429 * desktop.el (desktop-save-frameset): Use new frameset-save args.
10430 Use lexical-binding.
10431
10432 * frameset.el (frameset): Use type vector, not list (incompatible
10433 change). Do not declare a new constructor, use the default one.
10434 Upgrade suggested properties `app', `name' and `desc' to slots `app',
10435 `name' and `description', respectively, and add read-only slot
10436 `timestamp'. Doc fixes.
10437 (frameset-copy, frameset-persistent-filter-alist)
10438 (frameset-filter-alist, frameset-switch-to-gui-p)
10439 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
10440 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
10441 (frameset-filter-iconified, frameset-keep-original-display-p):
10442 Doc fixes.
10443 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
10444 Rename from frameset-filter-(save|restore)-param. All callers changed.
10445 Doc fix.
10446 (frameset-p): Adapt to change to vector and be more thorough.
10447 Change arg name to OBJECT. Doc fix.
10448 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
10449 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
10450 All callers changed.
10451 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
10452 All callers changed.
10453 (frameset--record-minibuffer-relationships): Rename from
10454 frameset--process-minibuffer-frames. All callers changed.
10455 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
10456 Use new default constructor (again). Doc fix.
10457 (frameset--find-frame-if): Rename from `frameset--find-frame'.
10458 All callers changed.
10459 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
10460 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
10461 Doc fix.
10462 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
10463 PARAMETERS and WINDOW-STATE, respectively.
10464 (frameset-restore): Add new keyword argument PREDICATE.
10465 Reset frameset--target-display to nil. Doc fix.
10466
10467 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
10468
10469 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
10470 (bat-mode): Use it.
10471 (bat-mode-syntax-table): Mark \n as end-of-comment.
10472 (bat-font-lock-keywords): Remove comment rule.
10473
10474 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
10475 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
10476
10477 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
10478 (byte-compile-callargs-warn): Use `push'.
10479 (byte-compile-arglist-warn): Ignore higher-order "calls".
10480 (byte-compile-file-form-autoload): Use `pcase'.
10481 (byte-compile-function-form): If quoting a symbol, check that it exists.
10482
10483 2013-08-07 Eli Zaretskii <eliz@gnu.org>
10484
10485 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
10486 and add a few popular commands found in batch files.
10487 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
10488 (dos-mode): Doc fixes.
10489
10490 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
10491
10492 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
10493 (dos-mode): Use setq-local. Add space after "rem".
10494 (dos-mode-syntax-table): Don't use "w" for symbol chars.
10495 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
10496
10497 2013-08-07 Arni Magnusson <arnima@hafro.is>
10498
10499 * progmodes/dos.el: New file.
10500 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
10501 dos-mode.
10502
10503 2013-08-06 Glenn Morris <rgm@gnu.org>
10504
10505 * calendar/calendar.el: Add new faces, and day-header-array.
10506 (calendar-weekday-header, calendar-weekend-header)
10507 (calendar-month-header): New faces.
10508 (calendar-day-header-construct): New function.
10509 (calendar-day-header-width): Also :set calendar-day-header-array.
10510 (calendar-american-month-header, calendar-european-month-header)
10511 (calendar-iso-month-header): Use calendar- faces.
10512 (calendar-generate-month):
10513 Use calendar-day-header-array for day headers; apply faces to them.
10514 (calendar-mode): Check calendar-font-lock-keywords non-nil.
10515 (calendar-abbrev-construct): Add optional maxlen argument.
10516 (calendar-day-name-array): Doc fix.
10517 (calendar-day-name-array, calendar-abbrev-length)
10518 (calendar-day-abbrev-array):
10519 Also :set calendar-day-header-array, and maybe redraw.
10520 (calendar-day-header-array): New option. (Bug#15007)
10521 (calendar-font-lock-keywords): Set to nil and make obsolete.
10522 (calendar-day-name): Add option to use header array.
10523
10524 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10525
10526 * net/shr.el (shr-render-td): Remove debugging.
10527 (shr-render-td): Make width computation consistent by defaulting
10528 all zero-width columns to 10 characters. This may not be optimal,
10529 but it's at least consistent.
10530 (shr-make-table-1): Redo last change to fix the real problem in
10531 colspan handling.
10532
10533 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
10534
10535 * files.el (cache-long-line-scans):
10536 Make obsolete alias to `cache-long-scans'.
10537
10538 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
10539
10540 * frameset.el (frameset, frameset-filter-alist)
10541 (frameset-filter-params, frameset-save, frameset--reuse-frame)
10542 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
10543 (frameset-compute-pos): Rename from frameset--compute-pos,
10544 and add docstring.
10545 (frameset-move-onscreen): Use frameset-compute-pos.
10546 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
10547
10548 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
10549 Fix typos in docstrings.
10550
10551 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
10552
10553 * frame.el (get-other-frame): Tiny cleanup.
10554
10555 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
10556
10557 * vc/vc.el (vc-default-ignore-completion-table):
10558 Silence byte-compiler warning.
10559
10560 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
10561 slot, which can indeed be nil.
10562 (frameset-live-filter-alist, frameset-persistent-filter-alist):
10563 Move entry for `left' from persistent to live filter alist.
10564 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
10565 Doc fixes.
10566 (frameset-filter-params): When restoring a frame, copy items added to
10567 `filtered', to avoid unwittingly modifying the original parameters.
10568 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
10569 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
10570
10571 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
10572 to use looking-at-p instead of looking-at. (Bug#15028)
10573
10574 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
10575
10576 Revert introduction of isearch-filter-predicates (bug#14714).
10577 Rely on add-function instead.
10578 * isearch.el (isearch-filter-predicates): Rename it back to
10579 isearch-filter-predicate.
10580 (isearch-message-prefix): Use advice-function-mapc and advice
10581 properties to get the isearch-message-prefix.
10582 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
10583 instead of run-hook-with-args-until-failure.
10584 (isearch-filter-visible): Not obsolete any more.
10585 * loadup.el: Preload nadvice.
10586 * replace.el (perform-replace): Revert to funcall
10587 instead of run-hook-with-args-until-failure.
10588 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
10589 * dired-aux.el (dired-isearch-filenames-mode): Rename from
10590 dired-isearch-filenames-toggle; make it into a proper minor mode.
10591 Use add/remove-function.
10592 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
10593 Call the minor-mode rather than add/remove-hook.
10594 (dired-isearch-filter-filenames):
10595 Remove isearch-message-prefix property.
10596 * info.el (Info--search-loop): New function, extracted from Info-search.
10597 Funcall isearch-filter-predicate instead of
10598 run-hook-with-args-until-failure isearch-filter-predicates.
10599 (Info-search): Use it.
10600 (Info-mode): Use isearch-filter-predicate instead of
10601 isearch-filter-predicates.
10602
10603 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
10604
10605 Do not call to `selected-window' where it is assumed by default.
10606 Affected functions are `window-minibuffer-p', `window-dedicated-p',
10607 `window-hscroll', `window-width', `window-height', `window-buffer',
10608 `window-frame', `window-start', `window-point', `next-window'
10609 and `window-display-table'.
10610 * abbrev.el (abbrev--default-expand):
10611 * bs.el (bs--show-with-configuration):
10612 * buff-menu.el (Buffer-menu-mouse-select):
10613 * calc/calc.el (calc):
10614 * calendar/calendar.el (calendar-generate-window):
10615 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
10616 (diary-make-entry):
10617 * comint.el (send-invisible, comint-dynamic-complete-filename)
10618 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
10619 * completion.el (complete):
10620 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
10621 * disp-table.el (describe-current-display-table):
10622 * doc-view.el (doc-view-insert-image):
10623 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
10624 * ehelp.el (with-electric-help):
10625 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
10626 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
10627 * emacs-lisp/helper.el (Helper-help-scroller):
10628 * emulation/cua-base.el (cua--post-command-handler-1):
10629 * eshell/esh-mode.el (eshell-output-filter):
10630 * ffap.el (ffap-gnus-wrapper):
10631 * help-macro.el (make-help-screen):
10632 * hilit-chg.el (highlight-compare-buffers):
10633 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
10634 * hl-line.el (global-hl-line-highlight):
10635 * icomplete.el (icomplete-simple-completing-p):
10636 * isearch.el (isearch-done):
10637 * jit-lock.el (jit-lock-stealth-fontify):
10638 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
10639 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
10640 * mpc.el (mpc-tagbrowser, mpc):
10641 * net/rcirc.el (rcirc-any-buffer):
10642 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
10643 * play/landmark.el (landmark-max-width, landmark-max-height):
10644 * play/zone.el (zone):
10645 * progmodes/compile.el (compilation-goto-locus):
10646 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
10647 * progmodes/etags.el (find-tag-other-window):
10648 * progmodes/fortran.el (fortran-column-ruler):
10649 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
10650 * progmodes/verilog-mode.el (verilog-point-text):
10651 * reposition.el (reposition-window):
10652 * rot13.el (toggle-rot13-mode):
10653 * server.el (server-switch-buffer):
10654 * shell.el (shell-dynamic-complete-command)
10655 (shell-dynamic-complete-environment-variable):
10656 * simple.el (insert-buffer, set-selective-display)
10657 (delete-completion-window):
10658 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
10659 (speedbar-recenter):
10660 * startup.el (fancy-splash-head):
10661 * textmodes/ispell.el (ispell-command-loop):
10662 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
10663 * tutorial.el (help-with-tutorial):
10664 * vc/add-log.el (add-change-log-entry):
10665 * vc/compare-w.el (compare-windows):
10666 * vc/ediff-help.el (ediff-indent-help-message):
10667 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
10668 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
10669 (ediff-setup-control-frame):
10670 * vc/emerge.el (emerge-position-region):
10671 * vc/pcvs-util.el (cvs-bury-buffer):
10672 * window.el (walk-windows, mouse-autoselect-window-select):
10673 * winner.el (winner-set-conf, winner-undo): Related users changed.
10674
10675 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
10676
10677 * frameset.el (frameset--set-id): Doc fix.
10678 (frameset-frame-id, frameset-frame-id-equal-p)
10679 (frameset-locate-frame-id): New functions.
10680 (frameset--process-minibuffer-frames, frameset--reuse-frame)
10681 (frameset-restore): Use them.
10682
10683 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
10684
10685 Do not call to `selected-frame' where it is assumed by default.
10686 Affected functions are `raise-frame', `redraw-frame',
10687 `frame-first-window', `frame-terminal' and `delete-frame'.
10688 * calendar/appt.el (appt-disp-window):
10689 * epg.el (epg-wait-for-completion):
10690 * follow.el (follow-delete-other-windows-and-split)
10691 (follow-avoid-tail-recenter):
10692 * international/mule.el (set-terminal-coding-system):
10693 * mail/rmail.el (rmail-mail-return):
10694 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
10695 * progmodes/f90.el (f90-add-imenu-menu):
10696 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
10697 * server.el (server-switch-buffer):
10698 * simple.el (delete-completion-window):
10699 * talk.el (talk):
10700 * term/xterm.el (terminal-init-xterm-modify-other-keys)
10701 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
10702 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
10703 * vc/ediff.el (ediff-documentation): Related users changed.
10704 * frame.el (selected-terminal): Remove the leftover.
10705
10706 2013-08-05 Glenn Morris <rgm@gnu.org>
10707
10708 * calendar/calendar.el (calendar-generate-month):
10709 Fix for calendar-column-width != 1 + calendar-day-digit-width.
10710 (calendar-generate-month, calendar-font-lock-keywords):
10711 Fix for calendar-day-header-width > length of any day name.
10712
10713 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
10714
10715 * desktop.el (desktop-clear): Use new name of sort predicate.
10716
10717 * frameset.el (frameset): Add docstring. Move :version property to its
10718 own `version' slot.
10719 (frameset-copy): Rename from copy-frameset.
10720 (frameset-p): Check more thoroughly.
10721 (frameset-prop): Do not check for :version, which is no longer a prop.
10722 (frameset-live-filter-alist, frameset-persistent-filter-alist):
10723 Use new :never value instead of t.
10724 (frameset-filter-alist): Expand and clarify docstring.
10725 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
10726 (frameset-filter-minibuffer, frameset-filter-save-param)
10727 (frameset-filter-restore-param, frameset-filter-iconified):
10728 Add pointer to docstring of frameset-filter-alist.
10729 (frameset-filter-params): Rename filter values to be more meaningful:
10730 :never instead of t, and reverse the meanings of :save and :restore.
10731 (frameset--process-minibuffer-frames): Clarify error message.
10732 (frameset-save): Avoid unnecessary and confusing call to framep.
10733 Use new BOA constructor for framesets.
10734 (frameset--reuse-list): Doc fix.
10735 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
10736 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
10737 (frameset-minibufferless-first-p): Doc fix.
10738 Rename from frameset-sort-frames-for-deletion.
10739 (frameset-restore): Doc fixes. Use new function names.
10740 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
10741
10742 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
10743
10744 * desktop.el (desktop-restore-forces-onscreen)
10745 (desktop-restore-reuses-frames): Document :keyword constant values.
10746 (desktop-filter-parameters-alist): Remove, now identical to
10747 frameset-filter-alist.
10748 (desktop--filter-tty*): Remove, moved to frameset.el.
10749 (desktop-save-frameset, desktop-restore-frameset):
10750 Do not pass :filters argument.
10751
10752 * frameset.el (frameset-live-filter-alist)
10753 (frameset-persistent-filter-alist): New variables.
10754 (frameset-filter-alist): Use them. Add autoload cookie.
10755 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
10756 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
10757 `frameset--id' (it's supposed to be internal to frameset.el).
10758 (frameset--process-minibuffer-frames): Ditto. Doc fix.
10759 (frameset--initial-params): New function.
10760 (frameset--get-frame): Use it. Doc fix.
10761 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
10762 Accept :all, not 'all.
10763 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
10764 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
10765 with fbound symbols. Fix frame id matching, and remove matching ids if
10766 the frame being restored is deleted. Obey :delete.
10767
10768 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
10769
10770 * subr.el (macrop): New function.
10771 (text-clone--maintaining): New var.
10772 (text-clone--maintain): Rename from text-clone-maintain. Use it
10773 instead of inhibit-modification-hooks.
10774
10775 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
10776 a proxy, so as handle autoloads and redefinitions of the target.
10777 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
10778
10779 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
10780 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
10781 (pcase--mutually-exclusive-p): New function.
10782 (pcase--split-consp): Use it.
10783 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
10784 mutually exclusive with the current predicate.
10785
10786 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
10787 (edebug-macrop): Remove. Use `macrop' instead.
10788 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
10789 (ad-macro-p):
10790 * eshell/esh-cmd.el (eshell-macrop):
10791 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
10792
10793 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
10794
10795 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
10796 (advice-mapc): New function, using it.
10797 (advice-function-member-p): New function.
10798 (advice--normalize): Store the cdr in advice--saved-rewrite since
10799 that's the part that will be changed.
10800 (advice--symbol-function): New function.
10801 (advice-remove): Handle removal before the function is defined.
10802 Adjust to new advice--saved-rewrite.
10803 (advice-member-p): Use advice-function-member-p and
10804 advice--symbol-function.
10805
10806 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
10807
10808 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
10809 (frameset-filter-minibuffer): Doc fix.
10810 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
10811 (frameset--set-id, frameset--process-minibuffer-frames)
10812 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
10813 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
10814
10815 * desktop.el (desktop-clear): Only delete frames when called
10816 interactively and desktop-restore-frames is non-nil. Doc fix.
10817 (desktop-read): Set desktop-saved-frameset to nil.
10818
10819 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
10820
10821 * vc/vc.el (vc-ignore): Rewrite.
10822 (vc-default-ignore-completion-table, vc--read-lines)
10823 (vc--add-line, vc--remove-regexp): New functions.
10824
10825 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
10826 (vc-svn-ignore-completion-table): New function.
10827
10828 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
10829 (vc-hg-ignore-completion-table)
10830 (vc-hg-find-ignore-file): New functions.
10831
10832 * vc/vc-git.el (vc-git-ignore): Rewrite.
10833 (vc-git-ignore-completion-table)
10834 (vc-git-find-ignore-file): New functions.
10835
10836 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
10837
10838 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
10839 (vc-bzr-ignore-completion-table)
10840 (vc-bzr-find-ignore-file): New functions.
10841
10842 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
10843
10844 * frameset.el (frameset-prop): New function and setter.
10845 (frameset-save): Do not modify frame list passed by the caller.
10846
10847 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10848
10849 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
10850
10851 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
10852
10853 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
10854 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
10855
10856 * custom.el (custom-initialize-default, custom-initialize-set)
10857 (custom-initialize-reset, custom-initialize-changed): Affect the
10858 toplevel-default-value (bug#6275, bug#14586).
10859 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
10860 for bug#6275.
10861
10862 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
10863
10864 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
10865 Add cl-def* expressions.
10866
10867 * frameset.el (frameset-filter-params): Fix order of arguments.
10868
10869 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
10870
10871 Move code related to saving frames to frameset.el.
10872 * desktop.el: Require frameset.
10873 (desktop-restore-frames): Doc fix.
10874 (desktop-restore-reuses-frames): Rename from
10875 desktop-restoring-reuses-frames.
10876 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
10877 (desktop-clear): Clear frames too.
10878 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
10879 (desktop--filter-tty*, desktop-save, desktop-read):
10880 Use frameset functions.
10881 (desktop-before-saving-frames-functions, desktop--filter-*-color)
10882 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
10883 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
10884 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
10885 (desktop--process-minibuffer-frames, desktop-save-frames)
10886 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
10887 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
10888 (desktop--sort-states, desktop-restoring-frames-p)
10889 (desktop-restore-frames): Remove. Most code moved to frameset.el.
10890 (desktop-restoring-frameset-p, desktop-restore-frameset)
10891 (desktop--check-dont-save, desktop-save-frameset): New functions.
10892 (desktop--app-id): New constant.
10893 (desktop-first-buffer, desktop-buffer-ok-count)
10894 (desktop-buffer-fail-count): Move before first use.
10895 * frameset.el: New file.
10896
10897 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
10898
10899 * files.el: Use lexical-binding.
10900 (dir-locals-read-from-file): Remove unused `err' variable.
10901 (hack-dir-local-variables--warned-coding): New var.
10902 (hack-dir-local-variables): Use it to avoid repeated warnings.
10903 (make-backup-file-name--default-function): New function.
10904 (make-backup-file-name-function): Use it as default.
10905 (buffer-stale--default-function): New function.
10906 (buffer-stale-function): Use it as default.
10907 (revert-buffer-insert-file-contents--default-function): New function.
10908 (revert-buffer-insert-file-contents-function): Use it as default.
10909 (insert-directory): Avoid add-to-list.
10910
10911 * autorevert.el (auto-revert-handler): Simplify.
10912 Use buffer-stale--default-function.
10913
10914 2013-08-01 Tassilo Horn <tsdh@gnu.org>
10915
10916 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
10917
10918 * whitespace.el (whitespace-ensure-local-variables): New function.
10919 (whitespace-cleanup-region): Call it.
10920 (whitespace-turn-on): Call it.
10921
10922 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
10923
10924 Complete file name handlers.
10925
10926 * net/tramp.el (tramp-handle-set-visited-file-modtime)
10927 (tramp-handle-verify-visited-file-modtime)
10928 (tramp-handle-file-notify-rm-watch): New functions.
10929 (tramp-call-process): Do not bind `default-directory'.
10930
10931 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
10932 Order alphabetically.
10933 <access-file, add-name-to-file, dired-call-process>:
10934 <dired-compress-file, file-acl, file-notify-rm-watch>:
10935 <file-ownership-preserved-p, file-selinux-context>:
10936 <make-directory-internal, make-symbolic-link, set-file-acl>:
10937 <set-file-selinux-context, set-visited-file-modtime>:
10938 <verify-visited-file-modtime>: Add handler.
10939 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
10940
10941 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
10942 <file-notify-add-watch, file-notify-rm-watch>:
10943 <set-file-times, set-visited-file-modtime>:
10944 <verify-visited-file-modtime>: Add handler.
10945 (with-tramp-gvfs-error-message)
10946 (tramp-gvfs-handle-set-visited-file-modtime)
10947 (tramp-gvfs-fuse-file-name): Remove.
10948 (tramp-gvfs-handle-file-notify-add-watch)
10949 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
10950 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
10951
10952 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
10953 Order alphabetically.
10954 <file-notify-rm-watch>: Use default Tramp handler.
10955 <executable-find>: Remove private handler.
10956 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
10957 `default-directory'.
10958 (tramp-sh-handle-executable-find)
10959 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
10960 (tramp-sh-file-gvfs-monitor-dir-process-filter)
10961 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
10962 Do not use `format' in `tramp-message'.
10963
10964 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
10965 <file-notify-rm-watch, set-visited-file-modtime>:
10966 <verify-visited-file-modtime>: Add handler.
10967 (tramp-smb-call-winexe): Do not bind `default-directory'.
10968
10969 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
10970
10971 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
10972
10973 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
10974
10975 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
10976 use it.
10977 (log-view-diff-changeset): Same.
10978 (log-view-diff-common): Call backend command `previous-revision'
10979 to find out the previous revision, in both cases. Swap the
10980 variables `to' and `fr', so that `fr' usually refers to the
10981 earlier revision (Bug#14989).
10982
10983 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
10984
10985 * ibuf-ext.el (ibuffer-filter-by-filename):
10986 Make it work with dired buffers too.
10987
10988 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
10989
10990 * emacs-lisp/re-builder.el (reb-color-display-p):
10991 * files.el (save-buffers-kill-terminal):
10992 * net/browse-url.el (browse-url):
10993 * server.el (server-save-buffers-kill-terminal):
10994 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
10995 Prefer nil to selected-frame for the first arg of frame-parameter.
10996
10997 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
10998
10999 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
11000
11001 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
11002
11003 * minibuffer.el (completion--twq-all): Try and preserve each
11004 completion's case choice (bug#14907).
11005
11006 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11007
11008 * net/network-stream.el (open-network-stream): Mention the new
11009 :nogreeting parameter.
11010 (network-stream-open-starttls): Use the :nogreeting parameter
11011 (bug#14938).
11012
11013 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
11014
11015 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
11016 more natural than popping.
11017
11018 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
11019 (shr-urlify): Highlight under mouse.
11020
11021 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
11022
11023 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
11024
11025 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
11026
11027 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
11028 buffer for output.
11029
11030 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
11031 point-min==1. Fix search string. Fix parentheses missing.
11032
11033 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
11034 assume point-min==1. Fix search string. Fix parentheses missing.
11035
11036 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
11037
11038 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
11039 buffer for output.
11040
11041 2013-07-29 Eli Zaretskii <eliz@gnu.org>
11042
11043 * frame.el (frame-notice-user-settings): Avoid inflooping when the
11044 initial frame is minibuffer-less. (Bug#14841)
11045
11046 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
11047
11048 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
11049 option.
11050
11051 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
11052 (tramp-maybe-open-connection): Use it.
11053
11054 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
11055
11056 * desktop.el (desktop--make-frame): Include `minibuffer' in the
11057 minimal set of parameters passed when creating a frame, because
11058 the minibuffer status of a frame cannot be changed later.
11059
11060 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
11061
11062 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
11063 replace-regexp-in-string and inadvertent omissions in previous change.
11064 (todo-filter-items): Ensure only file names are comma-separated in
11065 name of filtered items buffer.
11066
11067 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
11068
11069 * desktop.el: Optionally force offscreen frames back onscreen.
11070 (desktop-restoring-reuses-frames): New option.
11071 (desktop--compute-pos, desktop--move-onscreen): New functions.
11072 (desktop--make-frame): Use desktop--move-onscreen.
11073
11074 2013-07-27 Alan Mackenzie <acm@muc.de>
11075
11076 Fontify a Java generic method as a function.
11077 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
11078 value to t.
11079
11080 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
11081
11082 * calendar/todo-mode.el: Add command to rename todo files.
11083 (todo-rename-file): New command.
11084 (todo-key-bindings-t): Add key binding for it. Change the
11085 bindings of todo-filter-regexp-items(-multifile) to use `x'
11086 instead of `r', since the latter is better suited to the new
11087 renaming command.
11088
11089 2013-07-27 Alan Mackenzie <acm@muc.de>
11090
11091 Make Java try-with-resources statement parse properly.
11092 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
11093 (c-block-stmt-1-2-key): New language constants/variables.
11094 * progmodes/cc-engine.el (c-beginning-of-statement-1)
11095 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
11096 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
11097 with c-block-stmt-1-2-key.
11098
11099 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
11100
11101 * desktop.el (desktop--make-frame): Apply most frame parameters after
11102 creating the frame to force (partially or totally) offscreen frames to
11103 be restored as such.
11104
11105 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
11106
11107 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
11108 (Bug#14948)
11109
11110 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11111
11112 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
11113 `base' arg of backtrace-frame.
11114
11115 2013-07-26 Eli Zaretskii <eliz@gnu.org>
11116
11117 * simple.el (list-processes): Doc fix.
11118
11119 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
11120
11121 * desktop.el (desktop--select-frame):
11122 Try harder to reuse existing frames.
11123
11124 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11125
11126 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
11127 (edebug-eval): Use backtrace-eval.
11128 (edebug--display, edebug--recursive-edit): Don't let-bind the
11129 edebug-outer-* vars that keep track of variables we locally let-bind.
11130 (edebug-outside-excursion): Don't restore outside values of locally
11131 let-bound vars.
11132 (edebug--display): Use user-error.
11133 (cl-lexical-debug, cl-debug-env): Remove.
11134
11135 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
11136
11137 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
11138 are restored to be sure that they are visible before deleting any
11139 remaining ones.
11140
11141 2013-07-26 Matthias Meulien <orontee@gmail.com>
11142
11143 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
11144 vc-print-root-log. (Bug#14948)
11145
11146 2013-07-26 Richard Stallman <rms@gnu.org>
11147
11148 Add aliases for encrypting mail.
11149 * epa.el (epa-mail-aliases): New option.
11150 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
11151 Bind inhibit-read-only so read-only text doesn't ruin everything.
11152 (epa-mail-default-recipients): New subroutine broken out.
11153 Handle epa-mail-aliases.
11154
11155 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11156
11157 Add support for lexical variables to the debugger's `e' command.
11158 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
11159 vars, except for debugger-outer-match-data.
11160 (debugger-frame-number): Move check for "on a function call" from
11161 callers into it. Add `skip-base' argument.
11162 (debugger-frame, debugger-frame-clear): Simplify accordingly.
11163 (debugger-env-macro): Only reset the state stored in non-variables,
11164 i.e. current-buffer and match-data.
11165 (debugger-eval-expression): Rewrite using backtrace-eval.
11166 * subr.el (internal--called-interactively-p--get-frame): Remove.
11167 (called-interactively-p):
11168 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
11169 `base' arg of backtrace-frame instead.
11170
11171 2013-07-26 Glenn Morris <rgm@gnu.org>
11172
11173 * align.el (align-regexp): Doc fix. (Bug#14857)
11174 (align-region): Explicit error if subexpression missing/does not match.
11175
11176 * simple.el (global-visual-line-mode):
11177 Do not duplicate the mode lighter. (Bug#14858)
11178
11179 2013-07-25 Martin Rudalics <rudalics@gmx.at>
11180
11181 * window.el (display-buffer): In display-buffer bind
11182 split-window-keep-point to t, bug#14829.
11183
11184 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
11185
11186 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
11187 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
11188 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
11189 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
11190 Change accordingly.
11191 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
11192 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
11193
11194 2013-07-25 Glenn Morris <rgm@gnu.org>
11195
11196 * dired-x.el (dired-mark-extension): Convert comment to doc string.
11197
11198 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
11199
11200 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
11201 parameter to modify-frame-parameters if the value has not changed;
11202 this is a workaround for bug#14949.
11203 (desktop--make-frame): On cl-delete-if call, check parameter name,
11204 not full parameter.
11205
11206 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
11207
11208 * vc/vc.el (vc-ignore): New function.
11209
11210 * vc/vc-svn.el (vc-svn-ignore): New function.
11211
11212 * vc/vc-hg.el (vc-hg-ignore): New function.
11213
11214 * vc/vc-git.el (vc-git-ignore): New function.
11215
11216 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
11217 (vc-dir-ignore): New function.
11218
11219 * vc/vc-cvs.el (vc-cvs-ignore): New function.
11220 (cvs-append-to-ignore): Move here from pcvs.el.
11221
11222 * vc/vc-bzr.el (vc-bzr-ignore): New function.
11223
11224 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
11225
11226 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
11227
11228 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
11229 (desktop-restore-frames): Warn when deleting an existing frame failed.
11230
11231 2013-07-24 Glenn Morris <rgm@gnu.org>
11232
11233 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
11234
11235 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
11236
11237 * filenotify.el (file-notify-supported-p):
11238 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
11239 Remove functions.
11240
11241 * autorevert.el (auto-revert-use-notify)
11242 (auto-revert-notify-add-watch):
11243 * net/tramp.el (tramp-file-name-for-operation):
11244 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11245 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11246 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
11247 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11248 Remove `file-notify-supported-p' entry.
11249
11250 2013-07-24 Glenn Morris <rgm@gnu.org>
11251
11252 * printing.el: Replace all uses of deleted ps-windows-system,
11253 ps-lp-system, ps-flatten-list with lpr- versions.
11254
11255 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
11256
11257 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
11258 checked with memq (bug#14935).
11259
11260 * files.el (revert-buffer-function): Use a non-nil default.
11261 (revert-buffer-preserve-modes): Declare var to
11262 provide access to the `preserve-modes' argument.
11263 (revert-buffer): Let-bind it.
11264 (revert-buffer--default): New function, extracted from revert-buffer.
11265
11266 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
11267
11268 * lpr.el: Signal print errors more prominently.
11269 (print-region-function): Don't default to nil.
11270 (lpr-print-region): New function, extracted from print-region-1.
11271 Check lpr's return value and signal an error in case of problem.
11272 (print-region-1): Use it.
11273 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
11274 versions instead.
11275 (ps-printer-name): Default to nil.
11276 (ps-printer-name-option): Default to lpr-printer-switch.
11277 (ps-print-region-function): Don't default to nil.
11278 (ps-postscript-code-directory): Simplify default.
11279 (ps-do-despool): Use lpr-print-region to properly check the outcome.
11280 (ps-string-list, ps-eval-switch, ps-flatten-list)
11281 (ps-flatten-list-1): Remove.
11282 (ps-multibyte-buffer): Avoid setq.
11283 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
11284 (print-region-function, ps-print-region-function): Don't set them here.
11285
11286 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
11287
11288 * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
11289 (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
11290 (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
11291 (ido-decorations): Doc fix.
11292
11293 * ansi-color.el: Fix old URL.
11294
11295 2013-07-23 Michael R. Mauger <michael@mauger.com>
11296
11297 * progmodes/sql.el: Version 3.3
11298 (sql-product-alist): Improve oracle :prompt-cont-regexp.
11299 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
11300 (sql-interactive-remove-continuation-prompt): Rewrite, use
11301 functions above. Fix continuation prompt and complete output line
11302 handling.
11303 (sql-redirect-one, sql-execute): Use `read-only-mode' on
11304 redirected output buffer.
11305 (sql-mode): Restore deleted code (Bug#13591).
11306
11307 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
11308
11309 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
11310
11311 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
11312
11313 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
11314
11315 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11316 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11317 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
11318
11319 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
11320
11321 * desktop.el (desktop-clear): Simplify; remove useless checks
11322 against invalid buffer names.
11323 (desktop-list*): Use cl-list*.
11324 (desktop-buffer-info, desktop-create-buffer): Simplify.
11325
11326 2013-07-23 Leo Liu <sdl.web@gmail.com>
11327
11328 * bookmark.el (bookmark-make-record): Restore NAME as a default
11329 value. (Bug#14933)
11330
11331 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
11332
11333 * emacs-lisp/autoload.el (autoload--setup-output): New function,
11334 extracted from autoload--insert-text.
11335 (autoload--insert-text): Remove.
11336 (autoload--print-cookie-text): New function, extracted from
11337 autoload--insert-cookie-text.
11338 (autoload--insert-cookie-text): Remove.
11339 (autoload-generate-file-autoloads): Adjust calls accordingly.
11340
11341 * winner.el (winner-hook-installed-p): Remove.
11342 (winner-mode): Simplify accordingly.
11343
11344 * subr.el (add-to-list): Fix compiler-macro when `append' is
11345 not constant. Don't use `cl-member' for the base case.
11346
11347 * progmodes/subword.el: Fix boundary case (bug#13758).
11348 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
11349 own group.
11350 (subword-backward-regexp): Make it a constant.
11351 (subword-forward-internal): Don't treat a trailing capital as the
11352 beginning of a word.
11353
11354 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
11355
11356 * emacs-lisp/package.el (package-menu-mode): Don't modify the
11357 global value of tabulated-list-revert-hook (bug#14930).
11358
11359 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
11360
11361 * desktop.el: Require 'cl-lib.
11362 (desktop-before-saving-frames-functions): New hook.
11363 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
11364 for frames being saved. Rename from desktop--save-minibuffer-frames.
11365 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
11366 Do not save frames with non-nil `desktop-dont-save' parameter.
11367 Filter out deleted frames.
11368 (desktop--find-frame): Use cl-find-if.
11369 (desktop--select-frame): Use cl-(first|second|third) to access values
11370 of desktop-mini.
11371 (desktop--make-frame): Use cl-delete-if.
11372 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
11373 (desktop-restore-frames): Use cl-(first|second|third) to access values
11374 of desktop-mini. Look for visible frame at the end, not while
11375 restoring frames.
11376
11377 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
11378 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
11379 Use string-match-p, looking-at-p (bug#14927).
11380
11381 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
11382
11383 * desktop.el (desktop-saved-frame-states):
11384 Rename from desktop--saved-states; all users changed.
11385 (desktop-save-frames): Rename from desktop--save-frames.
11386 Do not save state to desktop file.
11387 (desktop-save): Save desktop-saved-frame-states to desktop file
11388 and reset to nil.
11389 (desktop-restoring-frames-p): New function.
11390 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
11391 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
11392 buffer-lists when restoring frames. Suggested by Martin Rudalics.
11393
11394 * desktop.el: Correctly restore iconified frames.
11395 (desktop--filter-iconified-position): New function.
11396 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
11397
11398 2013-07-20 Glenn Morris <rgm@gnu.org>
11399
11400 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
11401 Let `message' do the formatting.
11402 (def-gdb-preempt-display-buffer): Add explicit format.
11403
11404 * image-dired.el (image-dired-track-original-file):
11405 Use with-current-buffer.
11406 (image-dired-track-thumbnail): Use with-current-buffer.
11407 Avoid changing point of wrong window.
11408
11409 * image-dired.el (image-dired-track-original-file):
11410 Avoid changing point of wrong window. (Bug#14909)
11411
11412 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
11413
11414 * progmodes/gdb-mi.el (gdb-done-or-error):
11415 Guard against "%" in gdb output. (Bug#14127)
11416
11417 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
11418
11419 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
11420 (Bug#14826)
11421
11422 * international/mule.el (coding-system-iso-2022-flags): Fix last
11423 change.
11424
11425 2013-07-20 Kenichi Handa <handa@gnu.org>
11426
11427 * international/mule.el (coding-system-iso-2022-flags):
11428 Add `8-bit-level-4'. (Bug#8522)
11429
11430 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11431
11432 * net/shr.el (shr-mouse-browse-url): New command and keystroke
11433 (bug#14815).
11434
11435 * net/eww.el (eww-process-text-input): Allow inputting when the
11436 point is at the start of the line, as the properties aren't
11437 front-sticky.
11438
11439 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
11440 degenerate widths.
11441
11442 2013-07-19 Richard Stallman <rms@gnu.org>
11443
11444 * epa.el (epa-popup-info-window): Doc fix.
11445
11446 * subr.el (split-string): New arg TRIM.
11447
11448 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
11449
11450 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
11451 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
11452
11453 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
11454
11455 * filenotify.el (file-notify--library): Rename from
11456 `file-notify-support'. Do not autoload. Adapt all uses.
11457 (file-notify-supported-p): New defun.
11458
11459 * autorevert.el (auto-revert-use-notify):
11460 Use `file-notify-supported-p' instead of `file-notify-support'.
11461 Adapt docstring.
11462 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
11463
11464 * net/tramp.el (tramp-file-name-for-operation):
11465 Add `file-notify-supported-p'.
11466
11467 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
11468 New defun.
11469 (tramp-sh-file-name-handler-alist): Add it as handler for
11470 `file-notify-supported-p '.
11471
11472 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11473 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11474 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11475 Add `ignore' as handler for `file-notify-*' functions.
11476
11477 2013-07-17 Eli Zaretskii <eliz@gnu.org>
11478
11479 * simple.el (line-move-partial, line-move): Don't start vscroll or
11480 scroll-up if the current line is not taller than the window.
11481 (Bug#14881)
11482
11483 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
11484
11485 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
11486 highlight question marks in the method names as strings.
11487 (ruby-block-beg-keywords): Inline.
11488 (ruby-font-lock-keyword-beg-re): Extract from
11489 `ruby-font-lock-keywords'.
11490
11491 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
11492
11493 * frame.el (blink-cursor-blinks): New defcustom.
11494 (blink-cursor-blinks-done): New defvar.
11495 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
11496 (blink-cursor-timer-function): Check if number of blinks has been
11497 done on X and NS.
11498 (blink-cursor-suspend, blink-cursor-check): New defuns.
11499
11500 2013-07-15 Glenn Morris <rgm@gnu.org>
11501
11502 * edmacro.el (edmacro-format-keys): Fix previous change.
11503
11504 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
11505
11506 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
11507 The hack didn't work outside English locales anyway.
11508
11509 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
11510
11511 * simple.el (define-alternatives): Rename from alternatives-define,
11512 per RMS' suggestion.
11513
11514 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
11515
11516 * desktop.el (desktop-restore-frames): Change default to t.
11517 (desktop-restore-in-current-display): Now offer more options.
11518 (desktop-restoring-reuses-frames): New customization option.
11519 (desktop--saved-states): Doc fix.
11520 (desktop-filter-parameters-alist): New variable, renamed and expanded
11521 from desktop--excluded-frame-parameters.
11522 (desktop--target-display): New variable.
11523 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
11524 (desktop--filter-tty*, desktop--filter-*-color)
11525 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
11526 (desktop--filter-save-desktop-parm)
11527 (desktop-restore-in-original-display-p): New functions.
11528 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
11529 (desktop--save-minibuffer-frames): New function, inspired by a similar
11530 function from Martin Rudalics.
11531 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
11532 (desktop--restore-in-this-display-p): Remove.
11533 (desktop--find-frame): Rename from desktop--find-frame-in-display
11534 and add predicate argument.
11535 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
11536 (desktop--reuse-list): New variable.
11537 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
11538 New functions.
11539 (desktop--restore-frames): Add support for "minibuffer-special" frames.
11540
11541 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
11542
11543 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
11544
11545 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
11546
11547 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
11548 Highlight conversion methods on Kernel.
11549
11550 2013-07-13 Alan Mackenzie <acm@muc.de>
11551
11552 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
11553 and comment it out. This out-commenting enables certain C++
11554 declarations to be parsed correctly.
11555
11556 2013-07-13 Eli Zaretskii <eliz@gnu.org>
11557
11558 * international/mule.el (define-coding-system): Doc fix.
11559
11560 * simple.el (default-font-height): Don't call font-info if the
11561 frame's default font didn't change since the frame was created.
11562 (Bug#14838)
11563
11564 2013-07-13 Leo Liu <sdl.web@gmail.com>
11565
11566 * ido.el (ido-read-file-name): Guard against non-symbol value.
11567
11568 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
11569
11570 * progmodes/python.el (python-imenu--build-tree): Fix corner case
11571 in nested defuns.
11572
11573 2013-07-13 Leo Liu <sdl.web@gmail.com>
11574
11575 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
11576 ido-set-matches call. (Bug#6852)
11577
11578 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
11579
11580 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
11581 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
11582 Ruby 2.0.
11583 (ruby-font-lock-keywords): Distinguish calls to functions with
11584 module-like names from module references. Highlight character
11585 literals.
11586
11587 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
11588
11589 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
11590 (gdb-send): Handle continued commands. (Bug#14847)
11591
11592 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
11593
11594 * desktop.el (desktop--v2s): Remove unused local variable.
11595 (desktop-save-buffer): Make defvar-local; adjust docstring.
11596 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
11597 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
11598
11599 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
11600
11601 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
11602
11603 2013-07-12 Eli Zaretskii <eliz@gnu.org>
11604
11605 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
11606 (Bug#14842)
11607
11608 2013-07-12 Glenn Morris <rgm@gnu.org>
11609
11610 * doc-view.el: Require cl-lib at runtime too.
11611 (doc-view-remove-if): Remove.
11612 (doc-view-search-next-match, doc-view-search-previous-match):
11613 Use cl-remove-if.
11614
11615 * edmacro.el: Require cl-lib at runtime too.
11616 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
11617 (edmacro-mismatch, edmacro-subseq): Remove.
11618
11619 * shadowfile.el: Require cl-lib.
11620 (shadow-remove-if): Remove.
11621 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
11622 Use cl-remove-if.
11623
11624 * wid-edit.el: Require cl-lib.
11625 (widget-choose): Use cl-remove-if.
11626 (widget-remove-if): Remove.
11627
11628 * progmodes/ebrowse.el: Require cl-lib at runtime too.
11629 (ebrowse-delete-if-not): Remove.
11630 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
11631 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
11632 Use cl-delete-if-not.
11633
11634 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
11635
11636 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
11637 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
11638
11639 2013-07-12 Leo Liu <sdl.web@gmail.com>
11640
11641 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
11642
11643 2013-07-11 Glenn Morris <rgm@gnu.org>
11644
11645 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
11646 (edebug-gensym-index, edebug-gensym):
11647 Remove reimplementation of cl-gensym.
11648 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
11649
11650 * thumbs.el: Require cl-lib at run-time too.
11651 (thumbs-gensym-counter, thumbs-gensym):
11652 Remove reimplementation of cl-gensym.
11653 (thumbs-temp-file): Use cl-gensym.
11654
11655 * emacs-lisp/ert.el: Require cl-lib at runtime too.
11656 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
11657 (ert--intersection, ert--set-difference, ert--set-difference-eq)
11658 (ert--union, ert--gensym-counter, ert--gensym-counter)
11659 (ert--coerce-to-vector, ert--remove*, ert--string-position)
11660 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
11661 (ert-make-test-unbound, ert--expand-should-1)
11662 (ert--expand-should, ert--should-error-handle-error)
11663 (should-error, ert--explain-equal-rec)
11664 (ert--plist-difference-explanation, ert-select-tests)
11665 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
11666 Use cl-lib functions rather than reimplementations.
11667
11668 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
11669
11670 * net/tramp.el (tramp-methods): Extend docstring.
11671 (tramp-connection-timeout): New defcustom.
11672 (tramp-error-with-buffer): Reset timestamp only when appropriate.
11673 (with-tramp-progress-reporter): Simplify.
11674 (tramp-process-actions): Improve messages.
11675
11676 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
11677 * net/tramp-sh.el (tramp-maybe-open-connection):
11678 Use `tramp-connection-timeout'.
11679 (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
11680 (Bug#14808)
11681
11682 2013-07-11 Leo Liu <sdl.web@gmail.com>
11683
11684 * ido.el (ido-read-file-name): Conform to the requirements of
11685 read-file-name. (Bug#11861)
11686 (ido-read-directory-name): Conform to the requirements of
11687 read-directory-name.
11688
11689 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
11690
11691 * subr.el (delay-warning): New function.
11692
11693 2013-07-10 Eli Zaretskii <eliz@gnu.org>
11694
11695 * simple.el (default-line-height): New function.
11696 (line-move-partial, line-move): Use it instead of computing the
11697 line height inline.
11698 (line-move-partial): Always compute ROWH. If the last line is
11699 partially-visible, but its text is completely visible, allow
11700 cursor to enter such a partially-visible line.
11701
11702 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
11703
11704 Improve error messages. (Bug#14808)
11705
11706 * net/tramp.el (tramp-current-connection): New defvar, moved from
11707 tramp-sh.el.
11708 (tramp-message-show-progress-reporter-message): Remove, not
11709 needed anymore.
11710 (tramp-error-with-buffer): Show message in minibuffer.
11711 Discard input before waiting. Reset connection timestamp.
11712 (with-tramp-progress-reporter): Improve messages.
11713 (tramp-process-actions): Use progress reporter. Delete process in
11714 case of error. Improve messages.
11715
11716 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
11717 Call `tramp-error-with-buffer' with vector and buffer.
11718 (tramp-current-connection): Remove.
11719 (tramp-maybe-open-connection): The car of
11720 `tramp-current-connection' are the first 3 slots of the vector.
11721
11722 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
11723
11724 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
11725 inside continued strings.
11726
11727 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
11728
11729 Timestamp fixes for undo (Bug#14824).
11730 * files.el (clear-visited-file-modtime): Move here from fileio.c.
11731
11732 2013-07-10 Leo Liu <sdl.web@gmail.com>
11733
11734 * files.el (require-final-newline): Allow safe local value.
11735 (Bug#14834)
11736
11737 2013-07-09 Leo Liu <sdl.web@gmail.com>
11738
11739 * ido.el (ido-read-directory-name): Handle fallback.
11740 (ido-read-file-name): Update DIR to ido-current-directory.
11741 (Bug#1516)
11742 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
11743
11744 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
11745
11746 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
11747 "autoload". Remove "warn lower camel case" section, previously
11748 commented out. Highlight negation char. Do not highlight the
11749 target in singleton method definitions.
11750
11751 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
11752
11753 * faces.el (tty-setup-hook): Declare the hook.
11754
11755 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
11756 and detect when a guard/pred depends on local vars (bug#14773).
11757 (pcase--u1): Adjust caller.
11758
11759 2013-07-08 Eli Zaretskii <eliz@gnu.org>
11760
11761 * simple.el (line-move-partial, line-move): Account for
11762 line-spacing.
11763 (line-move-partial): Avoid setting vscroll when the last
11764 partially-visible line in window is of default height.
11765
11766 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
11767
11768 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
11769 been used a while.
11770
11771 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
11772
11773 * subr.el (read-quoted-char): Remove unused local variable `char'.
11774
11775 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
11776
11777 * ediff.el (ediff-version): Version update.
11778 (ediff-files-command, ediff3-files-command, ediff-merge-command)
11779 (ediff-merge-with-ancestor-command, ediff-directories-command)
11780 (ediff-directories3-command, ediff-merge-directories-command)
11781 (ediff-merge-directories-with-ancestor-command): New functions.
11782 All are command-line interfaces to ediff: to facilitate calling
11783 Emacs with the appropriate ediff functions invoked.
11784
11785 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
11786 (viper-save-kill-buffer): Check if buffer is modified.
11787
11788 * viper.el (viper-version): Version update.
11789 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
11790
11791 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
11792
11793 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
11794 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
11795 (viper-intercept-ESC-key): Simplify.
11796 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
11797 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
11798 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
11799 (viper-setup-ESC-to-escape): New functions.
11800 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
11801 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
11802
11803 2013-07-07 Eli Zaretskii <eliz@gnu.org>
11804
11805 * simple.el (default-font-height, window-screen-lines):
11806 New functions.
11807 (line-move, line-move-partial): Use them instead of
11808 frame-char-height and window-text-height. This makes scrolling
11809 text smoother when the buffer's default face uses a font that is
11810 different from the frame's default font.
11811
11812 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
11813
11814 * files.el (write-file): Do not display confirm dialog for NS,
11815 it does its own dialog, which can't be canceled (Bug#14578).
11816
11817 2013-07-06 Eli Zaretskii <eliz@gnu.org>
11818
11819 * simple.el (line-move-partial): Adjust the row returned by
11820 posn-at-point for the current window-vscroll. (Bug#14567)
11821
11822 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
11823
11824 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
11825 (tramp-sh-file-inotifywait-process-filter): Handle file names with
11826 spaces.
11827
11828 2013-07-06 Martin Rudalics <rudalics@gmx.at>
11829
11830 * window.el (window-state-put-stale-windows): New variable.
11831 (window--state-put-2): Save list of windows without matching buffer.
11832 (window-state-put): Remove "bufferless" windows if possible.
11833
11834 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
11835
11836 * simple.el (alternatives-define): Remove leftover :group keyword.
11837 Tweak docstring.
11838
11839 2013-07-06 Leo Liu <sdl.web@gmail.com>
11840
11841 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
11842 (ido-enable-virtual-buffers): New variable.
11843 (ido-buffer-internal, ido-toggle-virtual-buffers)
11844 (ido-make-buffer-list): Use it.
11845 (ido-exhibit): Support turning on and off virtual buffers
11846 automatically.
11847
11848 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
11849
11850 * simple.el (alternatives-define): New macro.
11851
11852 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
11853
11854 * subr.el (read-quoted-char): Use read-key.
11855 (sit-for): Let read-event decode tty input (bug#14782).
11856
11857 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
11858
11859 * calendar/todo-mode.el: Add handling of file deletion, both by
11860 mode command and externally. Fix various related bugs.
11861 Clarify Commentary and improve some documentation strings and code.
11862 (todo-delete-file): New command.
11863 (todo-check-file): New function.
11864 (todo-show): Handle external deletion of the file we're trying to
11865 show (bug#14688). Replace called-interactively-p by an optional
11866 prefix argument to avoid problematic interaction with catch form
11867 when byte compiled (bug#14702).
11868 (todo-quit): Handle external deletion of the archive's todo file.
11869 Make sure the buffer that was visiting the archive file is still
11870 live before trying to bury it.
11871 (todo-category-completions): Handle external deletion of any
11872 category completion files.
11873 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
11874 of todo files, in case of external deletion.
11875 (todo-add-file): Replace unnecessary setq by let-binding.
11876 (todo-find-archive): Check whether there are any archives.
11877 Replace unnecessary setq by let-binding.
11878 (todo-archive-done-item): Use find-file-noselect to get the
11879 archive buffer whether or not the archive already exists.
11880 Remove superfluous code. Use file size instead of buffer-file-name to
11881 check if the archive is new; if it is, update list of archives.
11882 (todo-default-todo-file): Allow nil to be a valid value for when
11883 there are no todo files.
11884 (todo-reevaluate-default-file-defcustom): Use corrected definition
11885 of todo-default-todo-file.
11886 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
11887 (todo-delete-category, todo-show-categories-table)
11888 (todo-category-number): Clarify comment.
11889 (todo-filter-items): Clarify documentation string.
11890 (todo-show-current-file, todo-display-as-todo-file)
11891 (todo-reset-and-enable-done-separator): Tweak documentation string.
11892 (todo-done-separator): Make separator length window-width, since
11893 bug#2749 is now fixed.
11894
11895 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
11896
11897 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
11898 Support both "gvfs-monitor-dir" and "inotifywait".
11899 (tramp-sh-file-inotifywait-process-filter): Rename from
11900 `tramp-sh-file-notify-process-filter'.
11901 (tramp-sh-file-gvfs-monitor-dir-process-filter)
11902 (tramp-get-remote-gvfs-monitor-dir): New defuns.
11903
11904 2013-07-05 Leo Liu <sdl.web@gmail.com>
11905
11906 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
11907
11908 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11909
11910 * frame.el (display-pixel-height, display-pixel-width)
11911 (display-mm-height, display-mm-width): Mention behavior on
11912 multi-monitor setups in docstrings.
11913 (w32-display-monitor-attributes-list): Declare function.
11914 (display-monitor-attributes-list): Use it.
11915
11916 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
11917
11918 * filenotify.el: New package.
11919
11920 * autorevert.el (top): Require filenotify.el.
11921 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
11922 instead.
11923 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
11924 (auto-revert-notify-handler): Use `file-notify-*' functions.
11925
11926 * subr.el (file-notify-handle-event): Move function to filenotify.el.
11927
11928 * net/tramp.el (tramp-file-name-for-operation):
11929 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
11930
11931 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
11932 for `file-notify-add-watch' and `file-notify-rm-watch'.
11933 (tramp-process-sentinel): Improve trace.
11934 (tramp-sh-handle-file-notify-add-watch)
11935 (tramp-sh-file-notify-process-filter)
11936 (tramp-sh-handle-file-notify-rm-watch)
11937 (tramp-get-remote-inotifywait): New defuns.
11938
11939 2013-07-03 Juri Linkov <juri@jurta.org>
11940
11941 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
11942 call of `occur-read-primary-args' to interactive spec.
11943
11944 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
11945 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
11946
11947 2013-07-03 Matthias Meulien <orontee@gmail.com>
11948
11949 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
11950 `Buffer-menu-multi-occur'. Add it to the menu.
11951 (Buffer-menu-mode): Document it in docstring.
11952 (Buffer-menu-multi-occur): New command. (Bug#14673)
11953
11954 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
11955
11956 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
11957 keywords and built-ins.
11958
11959 2013-07-03 Glenn Morris <rgm@gnu.org>
11960
11961 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
11962
11963 Make info-xref checks case-sensitive by default
11964 * info.el (Info-find-node, Info-find-in-tag-table)
11965 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
11966 Add option for exact case matching of nodes.
11967 * info-xref.el (info-xref): New custom group.
11968 (info-xref-case-fold): New option.
11969 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
11970
11971 2013-07-03 Leo Liu <sdl.web@gmail.com>
11972
11973 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
11974
11975 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
11976
11977 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
11978 middle of block statement initially, lower the depth. Remove
11979 FIXME comment, not longer valid. Remove middle of block statement
11980 detection, no need to do that anymore since we've been using
11981 `ruby-parse-region' here.
11982
11983 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
11984
11985 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
11986
11987 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
11988
11989 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
11990
11991 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
11992
11993 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
11994 (desktop-restore-in-current-display): New customization option.
11995 (desktop--excluded-frame-parameters): Add `font'.
11996 (desktop--save-frames): Rename from desktop--save-windows.
11997 (desktop--restore-in-this-display-p): New function.
11998 (desktop--make-full-frame): Remove unwanted width/height from
11999 full(width|height) frames.
12000 (desktop--restore-frames): Rename from desktop--restore-windows.
12001 Obey desktop-restore-current-display. Do not delete old frames or
12002 select a new frame unless we were able to restore at least one frame.
12003
12004 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
12005
12006 * files.el (find-file-noselect): Simplify conditional expression.
12007
12008 * textmodes/remember.el (remember-append-to-file):
12009 Don't mix `find-buffer-visiting' and `get-file-buffer'.
12010
12011 Add `remember-notes' function to store random notes across Emacs
12012 restarts.
12013 * textmodes/remember.el (remember-data-file): Add :set callback to
12014 affect notes buffer (if any).
12015 (remember-notes): New command.
12016 (remember-notes-buffer-name, bury-remember-notes-on-kill):
12017 New defcustoms for the `remember-notes' function.
12018 (remember-notes-save-and-bury-buffer): New command.
12019 (remember-notes-mode-map): New variable.
12020 (remember-mode): New minor mode.
12021 (remember-notes--kill-buffer-query): New function.
12022 * startup.el (initial-buffer-choice): Add notes to custom type.
12023
12024 2013-06-30 Eli Zaretskii <eliz@gnu.org>
12025
12026 * bindings.el (right-char, left-char): Don't call sit-for, this is
12027 no longer needed. Use arithmetic comparison only for numerical
12028 arguments.
12029
12030 * international/mule-cmds.el (select-safe-coding-system):
12031 Handle the case of FROM being a string correctly. (Bug#14755)
12032
12033 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12034
12035 * net/shr.el (shr-make-table-1): Add a sanity check that allows
12036 progression on degenerate tables.
12037 (shr-rescale-image): ImageMagick animated images currently don't work.
12038
12039 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
12040
12041 Some fixes and improvements for desktop frame restoration.
12042 It is still experimental and disabled by default.
12043 * desktop.el (desktop--save-windows): Put the selected frame at
12044 the head of the list.
12045 (desktop--make-full-frame): New function.
12046 (desktop--restore-windows): Try to re-select the frame that was
12047 selected upon saving. Do not abort if some frames fail to restore,
12048 just show an error message and continue. Set up maximized frames
12049 so they have default non-maximized dimensions.
12050
12051 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
12052
12053 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
12054 Don't start heredoc inside a string or comment.
12055
12056 2013-06-29 Eli Zaretskii <eliz@gnu.org>
12057
12058 * bindings.el (visual-order-cursor-movement): New defcustom.
12059 (right-char, left-char): Provide visual-order cursor motion by
12060 calling move-point-visually. Update the doc strings.
12061
12062 2013-06-28 Kenichi Handa <handa@gnu.org>
12063
12064 * international/mule.el (define-coding-system): New coding system
12065 properties :inhibit-null-byte-detection,
12066 :inhibit-iso-escape-detection, and :prefer-utf-8.
12067 (set-buffer-file-coding-system): If :charset-list property of
12068 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
12069 appropriate for setting.
12070
12071 * international/mule-cmds.el (select-safe-coding-system):
12072 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
12073 multibyte characters, return utf-8 (or one of its siblings).
12074
12075 * international/mule-conf.el (prefer-utf-8): New coding system.
12076 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
12077 files.
12078
12079 2013-06-28 Ivan Kanis <ivan@kanis.fr>
12080
12081 * net/shr.el (shr-render-region): New function.
12082
12083 * net/eww.el: Autoload `eww-browse-url'.
12084
12085 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
12086
12087 * emacs-lisp/package-x.el (package-upload-buffer-internal):
12088 Adapt to `package-desc-version' being a list.
12089 Use `package--ac-desc-version' to retrieve version from a package
12090 archive element.
12091
12092 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
12093
12094 New experimental feature to save&restore window and frame setup.
12095 * desktop.el (desktop-save-windows): New defcustom.
12096 (desktop--saved-states): New var.
12097 (desktop--excluded-frame-parameters): New defconst.
12098 (desktop--filter-frame-parms, desktop--find-frame-in-display)
12099 (desktop--restore-windows, desktop--save-windows): New functions.
12100 (desktop-save): Call `desktop--save-windows'.
12101 (desktop-read): Call `desktop--restore-windows'.
12102
12103 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
12104
12105 * net/shr.el (add-face-text-property): Remove compat definition.
12106
12107 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
12108
12109 * info.el (Info-try-follow-nearest-node): Move search for footnote
12110 above search for node name to prevent missing a footnote (bug#14717).
12111
12112 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
12113
12114 * obsolete/otodo-mode.el: Add obsolescence info to file header.
12115
12116 2013-06-27 Leo Liu <sdl.web@gmail.com>
12117
12118 * net/eww.el (eww-read-bookmarks): Check file size.
12119
12120 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
12121
12122 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
12123 advice--pending if newdef is nil or an autoload (bug#13820).
12124 (advice-mapc): New function.
12125
12126 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
12127
12128 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
12129 probably.
12130 (eww-mode-map): Add a menu bar.
12131 (eww-add-bookmark): New command.
12132 (eww-bookmark-mode): New mode and commands.
12133 (eww-add-bookmark): Remove newlines from the title.
12134 (eww-bookmark-browse): Don't bug out if it's the only window.
12135
12136 2013-06-26 Glenn Morris <rgm@gnu.org>
12137
12138 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
12139 (hfy-size): Handle ttys. (Bug#14668)
12140
12141 * info-xref.el: Update for Texinfo 5 change in *note format.
12142 (info-xref-node-re, info-xref-note-re): New constants.
12143 (info-xref-check-buffer): Use info-xref-note-re.
12144
12145 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
12146
12147 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
12148
12149 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
12150 nil terminate the loop (bug#14718).
12151
12152 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12153
12154 * net/eww.el: Rework history traversal. When going forward/back,
12155 put these actions into the history, too, so that they can be
12156 replayed.
12157 (eww-render): Move the history reset to the correct buffer.
12158
12159 2013-06-25 Juri Linkov <juri@jurta.org>
12160
12161 * files-x.el (modify-dir-local-variable): Change the header comment
12162 in the file with directory local variables. (Bug#14692)
12163
12164 * files-x.el (read-file-local-variable-value): Add `default'.
12165 (Bug#14710)
12166
12167 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12168
12169 * net/eww.el (eww-make-unique-file-name): Create a unique file
12170 name before saving to entering `y' accidentally asynchronously.
12171
12172 2013-06-25 Ivan Kanis <ivan@kanis.fr>
12173
12174 * net/eww.el (eww-download): New command and keystroke.
12175
12176 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12177
12178 * net/eww.el (eww-copy-page-url): Change name of command.
12179
12180 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
12181 be more consistent with Info and dired.
12182
12183 * net/eww.el (eww-mode-map): Ditto.
12184
12185 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12186
12187 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
12188 packages from archives.
12189 (package-archive-contents): Change format; include obsolete packages.
12190 (package-desc): Use `dir' to mark builtin packages.
12191 (package--from-builtin): Set the `dir' field to `builtin'.
12192 (generated-autoload-file, version-control): Declare.
12193 (package-compute-transaction): Change first arg and return value to be
12194 lists of package-descs. Adjust to new package-archive-contents format.
12195 (package--add-to-archive-contents): Adjust to new
12196 package-archive-contents format.
12197 (package-download-transaction): Arg is now a list of package-descs.
12198 (package-install): If `pkg' is a package name, pass it as
12199 a requirement, so it is subject to the usual (e.g. disabled) checks.
12200 (describe-package): Accept package-desc as well.
12201 (describe-package-1): Describe a specific package-desc. Add links to
12202 other package-descs for the same package name.
12203 (package-menu-describe-package): Pass the actual package-desc.
12204 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
12205 works correctly.
12206 (package-desc-status): New function.
12207 (package-menu--refresh): New function, extracted
12208 from package-menu--generate.
12209 (package-menu--generate): Use it.
12210 (package-delete): Update package-alist.
12211 (package-menu-execute): Don't call package-initialize.
12212
12213 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
12214 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
12215 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
12216 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
12217 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
12218 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
12219
12220 2013-06-25 Martin Rudalics <rudalics@gmx.at>
12221
12222 * window.el (window--state-get-1): Workaround for bug#14527.
12223 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
12224
12225 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12226
12227 * net/eww.el (eww-back-url): Implement the history by stashing all
12228 the data into a list.
12229 (eww-forward-url): Allow going forward in the history, too.
12230
12231 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12232
12233 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
12234 for values and use read--expression for expressions (bug#14710).
12235 (read-file-local-variable): Avoid setq.
12236 (read-file-local-variable-mode): Use minor-mode-list.
12237
12238 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12239
12240 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
12241 for DOI URLs.
12242
12243 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12244
12245 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
12246 Update imenu-support when dialect changes.
12247
12248 2013-06-25 Leo Liu <sdl.web@gmail.com>
12249
12250 * ido.el (ido-read-internal): Allow forward slash on windows.
12251
12252 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
12253
12254 * net/eww.el (eww): Start of strings is \\`, not ^.
12255
12256 2013-06-24 Ivan Kanis <ivan@kanis.fr>
12257
12258 * net/shr.el (shr-browse-url): Fix interactive spec.
12259
12260 * net/eww.el (eww): Add a trailing slash to domain names.
12261
12262 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
12263
12264 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
12265
12266 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
12267
12268 * net/shr.el (shr-browse-url): Use an external browser if given a
12269 prefix.
12270
12271 * net/eww.el (eww-external-browser): Move to shr.
12272
12273 2013-06-24 Ivan Kanis <ivan@kanis.fr>
12274
12275 * net/eww.el (eww): Work more correctly for file: URLs.
12276 (eww-detect-charset): Allow quoted charsets.
12277 (eww-yank-page-url): New command and keystroke.
12278
12279 2013-06-24 Daiki Ueno <ueno@gnu.org>
12280
12281 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
12282 file name of gpg executable.
12283 (epg-context-program): New function.
12284 (epg-context-home-directory): New function.
12285 (epg-context-set-program): New function.
12286 (epg-context-set-home-directory): New function.
12287 (epg--start): Use `epg-context-program' instead of
12288 'epg-gpg-program'.
12289 (epg--list-keys-1): Likewise.
12290
12291 2013-06-24 Leo Liu <sdl.web@gmail.com>
12292
12293 * ido.el (ido-read-internal): Fix bug#14620.
12294
12295 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
12296
12297 * faces.el (face-documentation): Simplify.
12298 (read-face-attribute, tty-find-type, x-resolve-font-name):
12299 Use `string-match-p'.
12300 (list-faces-display): Use `string-match-p'. Simplify.
12301 (face-spec-recalc): Check face to avoid face alias loops.
12302 (read-color): Use `string-match-p' and non-capturing parenthesis.
12303
12304 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
12305
12306 * net/shr.el (shr-rescale-image): Use the new
12307 :max-width/:max-height functionality.
12308
12309 2013-06-23 Ivan Kanis <ivan@kanis.fr>
12310
12311 * net/eww.el (eww-search-prefix): New variable.
12312 (eww): Use it.
12313 (eww-external-browser): New variable.
12314 (eww-mode-map): New keystroke.
12315 (eww-browse-with-external-browser): New command.
12316
12317 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
12318
12319 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
12320
12321 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
12322 Don't skip aligning the next header field when padding is 0;
12323 otherwise, field width is not respected unless the title is as
12324 wide as the field.
12325
12326 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
12327
12328 * emacs-lisp/package.el (package-el-version): Remove.
12329 (package-process-define-package): Fix inf-loop.
12330 (package-install): Allow symbols as arguments again.
12331
12332 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
12333
12334 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
12335 add some more keyword-like methods.
12336 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
12337
12338 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
12339
12340 * bs.el (bs-buffer-show-mark): Make defvar-local.
12341 (bs-mode): Use setq-local.
12342
12343 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
12344 (emacs-lock--try-unlocking): Make defvar-local.
12345
12346 2013-06-22 Glenn Morris <rgm@gnu.org>
12347
12348 * play/cookie1.el (cookie-apropos): Minor simplification.
12349
12350 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
12351
12352 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
12353
12354 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
12355 `regexp-opt', it breaks the build during dumping.
12356
12357 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
12358
12359 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
12360 Highlight keyword-like methods on Kernel and Module with
12361 font-lock-builtin-face.
12362 (auto-mode-alist): Consolidate different entries into one regexp
12363 and add more *file-s.
12364
12365 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
12366
12367 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
12368
12369 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
12370 (diary-entry): Use it in the action of this button type instead of
12371 diary-goto-entry.
12372
12373 * calendar/todo-mode.el: New version.
12374 (todo-add-category): Append new category to end of file and give
12375 it the highest number, instead of putting it at the beginning and
12376 giving it 0. Incorporate noninteractive functionality.
12377 (todo-forward-category): Adapt to 1-based category numbering.
12378 Allow skipping over archived categories.
12379 (todo-backward-category): Derive from todo-forward-category.
12380 (todo-backward-item, todo-forward-item): Make noninteractive and
12381 delegate interactive part to new commands. Make sensitive to done items.
12382 (todo-categories): Make value an alist of category names and
12383 vectors of item counts.
12384 (todo-category-beg): Make a defconst.
12385 (todo-category-number): Use 1 instead of 0 as initial value.
12386 (todo-category-select): Make sensitive to overlays, optional item
12387 highlighting and done items.
12388 (todo-delete-item): Make sensitive to overlays and marked and done items.
12389 (todo-edit-item): Make sensitive to overlays and editing of
12390 date/time header optional. Add format checks.
12391 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
12392 no-op if point is not on an item. Advertise using todo-edit-quit.
12393 (todo-edit-mode): Make sensitive to new format, font-locking, and
12394 multiple todo files.
12395 (todo-insert-item, todo-insert-item-here): Derive from
12396 todo-basic-insert-item and extend functionality.
12397 (todo-item-end, todo-item-start): Make sensitive to done items.
12398 (todo-item-string): Don't return text properties. Restore point.
12399 (todo-jump-to-category): Make sensitive to multiple todo files and
12400 todo archives. Use extended category completion.
12401 (todo-lower-item, todo-raise-item): Rename to *-priority and
12402 derive from todo-set-item-priority.
12403 (todo-mode): Derive from special-mode. Make sensitive to new
12404 format, font-locking and multiple todo files. Make read-only.
12405 (todo-mode-map): Don't suppress digit keys, so they can supply
12406 prefix arguments. Add many new key bindings.
12407 (todo-prefix): Insert as an overlay instead of file text.
12408 Change semantics from diary date expression to purely visual mark.
12409 (todo-print): Rename to todo-print-buffer. Make buffer display
12410 features printable. Remove option to restrict number of items
12411 printed. Add option to print to file.
12412 (todo-print-function): Rename to todo-print-buffer-function.
12413 (todo-quit): Extend to handle exiting new todo modes.
12414 (todo-remove-item): Make sensitive to overlays.
12415 (todo-save): Extend to buffers of filtered items.
12416 (todo-show): Make sensitive to done items, multiple todo files and
12417 new todo modes. Offer to convert legacy todo file before creating
12418 first new todo file.
12419 (todo-show-priorities): Rename to todo-top-priorities.
12420 Change semantics of value 0.
12421 (todo-top-priorities): Rename to todo-filter-top-priorities,
12422 derive from todo-filter-items and extend functionality.
12423 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
12424 and extend functionality to other types of filtered items.
12425 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
12426 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
12427 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
12428 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
12429 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
12430 (todo-edit-mode-hook, todo-entry-prefix-function)
12431 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
12432 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
12433 (todo-initials, todo-insert-threshold, todo-item-string-start)
12434 (todo-line-string, todo-menu, todo-mode-hook)
12435 (todo-more-important-p, todo-previous-answer, todo-previous-line)
12436 (todo-print-priorities, todo-remove-separator)
12437 (todo-save-top-priorities-too, todo-string-count-lines)
12438 (todo-string-multiline-p, todo-time-string-format)
12439 (todo-tmp-buffer-name): Remove.
12440 (todo-add-file, todo-archive-done-item, todo-choose-archive)
12441 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
12442 (todo-edit-category-diary-inclusion)
12443 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
12444 (todo-edit-file, todo-edit-item-date-day)
12445 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
12446 (todo-edit-item-date-month, todo-edit-item-date-to-today)
12447 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
12448 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
12449 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
12450 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
12451 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
12452 (todo-filter-top-priorities-multifile, todo-find-archive)
12453 (todo-find-filtered-items-file, todo-go-to-source-item)
12454 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
12455 (todo-jump-to-archive-category, todo-lower-category)
12456 (todo-mark-category, todo-marked-item-p, todo-merge-category)
12457 (todo-move-category, todo-move-item, todo-next-button)
12458 (todo-next-item, todo-padded-string, todo-powerset)
12459 (todo-previous-button, todo-previous-item)
12460 (todo-print-buffer-to-file, todo-raise-category)
12461 (todo-rename-category, todo-repair-categories-sexp, todo-search)
12462 (todo-set-category-number, todo-set-item-priority)
12463 (todo-set-top-priorities-in-category)
12464 (todo-set-top-priorities-in-file, todo-show-categories-table)
12465 (todo-sort-categories-alphabetically-or-numerically)
12466 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
12467 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
12468 (todo-toggle-item-header, todo-toggle-item-highlighting)
12469 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
12470 (todo-toggle-view-done-items, todo-toggle-view-done-only)
12471 (todo-unarchive-items, todo-unmark-category): New commands.
12472 (todo-absolute-file-name, todo-add-to-buffer-list)
12473 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
12474 (todo-basic-insert-item, todo-category-completions)
12475 (todo-category-number, todo-category-string-matcher-1)
12476 (todo-category-string-matcher-2, todo-check-filtered-items-file)
12477 (todo-check-format, todo-clear-matches)
12478 (todo-comment-string-matcher, todo-convert-legacy-date-time)
12479 (todo-current-category, todo-date-string-matcher)
12480 (todo-define-insertion-command, todo-diary-expired-matcher)
12481 (todo-diary-goto-entry, todo-diary-item-p)
12482 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
12483 (todo-display-categories, todo-display-sorted, todo-done-item-p)
12484 (todo-done-item-section-p, todo-done-separator)
12485 (todo-done-string-matcher, todo-files, todo-filter-items)
12486 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
12487 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
12488 (todo-insert-category-line, todo-insert-item-from-calendar)
12489 (todo-insert-sort-button, todo-insert-with-overlays)
12490 (todo-insertion-command-name, todo-insertion-key-bindings)
12491 (todo-label-to-key, todo-longest-category-name-length)
12492 (todo-make-categories-list, todo-mode-external-set)
12493 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
12494 (todo-modes-set-3, todo-multiple-filter-files)
12495 (todo-nondiary-marker-matcher, todo-prefix-overlays)
12496 (todo-read-category, todo-read-date, todo-read-dayname)
12497 (todo-read-file-name, todo-read-time)
12498 (todo-reevaluate-category-completions-files-defcustom)
12499 (todo-reevaluate-default-file-defcustom)
12500 (todo-reevaluate-filelist-defcustoms)
12501 (todo-reevaluate-filter-files-defcustom)
12502 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
12503 (todo-reset-done-separator, todo-reset-done-separator-string)
12504 (todo-reset-done-string, todo-reset-global-current-todo-file)
12505 (todo-reset-highlight-item, todo-reset-nondiary-marker)
12506 (todo-reset-prefix, todo-set-categories)
12507 (todo-set-date-from-calendar, todo-set-show-current-file)
12508 (todo-set-top-priorities, todo-short-file-name)
12509 (todo-show-current-file, todo-sort, todo-time-string-matcher)
12510 (todo-total-item-counts, todo-update-buffer-list)
12511 (todo-update-categories-display, todo-update-categories-sexp)
12512 (todo-update-count, todo-validate-name, todo-y-or-n-p):
12513 New functions.
12514 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
12515 New major modes.
12516 (todo-categories, todo-display, todo-edit, todo-faces)
12517 (todo-filtered): New defgroups.
12518 (todo-archived-only, todo-button, todo-category-string, todo-date)
12519 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
12520 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
12521 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
12522 (todo-add-item-if-new-category, todo-always-add-time-string)
12523 (todo-categories-align, todo-categories-archived-label)
12524 (todo-categories-category-label, todo-categories-diary-label)
12525 (todo-categories-done-label, todo-categories-number-separator)
12526 (todo-categories-todo-label, todo-categories-totals-label)
12527 (todo-category-completions-files, todo-completion-ignore-case)
12528 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
12529 (todo-done-separator-string, todo-done-string)
12530 (todo-files-function, todo-filter-done-items, todo-filter-files)
12531 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
12532 (todo-initial-category, todo-initial-file, todo-item-mark)
12533 (todo-legacy-date-time-regexp, todo-mode-line-function)
12534 (todo-nondiary-marker, todo-number-prefix)
12535 (todo-print-buffer-function, todo-show-current-file)
12536 (todo-show-done-only, todo-show-first, todo-show-with-done)
12537 (todo-skip-archived-categories, todo-top-priorities-overrides)
12538 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
12539 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
12540 New defcustoms.
12541 (todo-category-done, todo-date-pattern, todo-date-string-start)
12542 (todo-diary-items-buffer, todo-done-string-start)
12543 (todo-filtered-items-buffer, todo-item-start)
12544 (todo-month-abbrev-array, todo-month-name-array)
12545 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
12546 (todo-top-priorities-buffer): New defconsts.
12547 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
12548 (todo-categories-with-marks, todo-category-string-face)
12549 (todo-comment-face, todo-comment-string, todo-current-todo-file)
12550 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
12551 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
12552 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
12553 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
12554 (todo-font-lock-keywords, todo-global-current-todo-file)
12555 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
12556 (todo-insertion-commands-args)
12557 (todo-insertion-commands-args-genlist)
12558 (todo-insertion-commands-names, todo-insertion-map)
12559 (todo-key-bindings-t, todo-key-bindings-t+a)
12560 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
12561 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
12562 (todo-nondiary-face, todo-print-buffer, todo-time-face)
12563 (todo-visited): New variables.
12564
12565 2013-06-21 Glenn Morris <rgm@gnu.org>
12566
12567 * play/cookie1.el (cookie-apropos): Add optional display argument.
12568 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
12569 (psychoanalyze-pinhead): Use cookie-doctor.
12570
12571 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
12572
12573 * emacs-lisp/package.el (tar-get-file-descriptor)
12574 (tar--extract): Declare.
12575
12576 2013-06-21 Eduard Wiebe <usenet@pusto.de>
12577
12578 Extend flymake's warning predicate to be a function (bug#14217).
12579 * progmodes/flymake.el (flymake-warning-predicate): New.
12580 (flymake-parse-line): Use it.
12581 (flymake-warning-re): Make obsolete alias to
12582 `flymake-warning-predicate'.
12583
12584 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12585
12586 * emacs-lisp/package.el (package-alist): Include obsolete packages.
12587 (package-obsolete-list): Remove.
12588 (package-activate): Remove min-version argument. Add `force' argument.
12589 Adjust to new package-alist format.
12590 (package-mark-obsolete): Remove.
12591 (package-unpack): Force reload of the package's autoloads.
12592 (package-installed-p): Check builtins if the installed package is not
12593 recent enough.
12594 (package-initialize): Don't reset package-obsolete-list.
12595 Don't specify which package version to activate.
12596 (package-process-define-package, describe-package-1)
12597 (package-menu--generate): Adjust to new package-alist format.
12598
12599 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
12600
12601 * allout-widgets.el (allout-widgets-mode-off)
12602 (allout-widgets-mode-on, allout-widgets-pre-command-business)
12603 (allout-widgets-post-command-business)
12604 (allout-widgets-after-copy-or-kill-function)
12605 (allout-widgets-after-undo-function, allout-test-range-overlaps)
12606 (allout-decorate-item-and-context)
12607 (allout-graphics-modification-handler): Fix typos in docstrings.
12608 (allout-get-or-create-parent-widget): Use `looking-at-p'.
12609
12610 * cmuscheme.el (scheme-start-file): Doc fix.
12611 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
12612 (scheme-input-filter): Use `string-match-p'.
12613
12614 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
12615
12616 * dired-x.el: Use Dired consistently in docstrings.
12617
12618 * dired.el: Use Dired consistently in docstrings.
12619 (dired-readin, dired-mode): Use `setq-local'.
12620 (dired-switches-alist): Make defvar-local.
12621 (dired-buffers-for-dir): Use `zerop'.
12622 (dired-safe-switches-p, dired-switches-escape-p)
12623 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
12624 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
12625 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
12626 (dired-goto-next-nontrivial-file): Use `string-match-p'.
12627 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
12628 (dired-toggle-marks, dired-mark-files-containing-regexp)
12629 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
12630 (dired-flag-auto-save-files, dired-flag-backup-files):
12631 Use `looking-at-p'.
12632 (dired-mark-files-regexp, dired-build-subdir-alist):
12633 Use `string-match-p', `looking-at-p'.
12634
12635 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
12636 (direct-print-region-helper): Use `string-match-p'.
12637
12638 2013-06-21 Leo Liu <sdl.web@gmail.com>
12639
12640 * comint.el (comint-redirect-results-list-from-process):
12641 Fix infinite loop.
12642
12643 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12644
12645 * net/eww.el (eww-update-header-line-format): Quote % characters.
12646
12647 2013-06-21 Glenn Morris <rgm@gnu.org>
12648
12649 * play/cookie1.el (cookie): New custom group.
12650 (cookie-file): New option.
12651 (cookie-check-file): New function.
12652 (cookie): Make it interactive. Make start and end messages optional.
12653 Interactively, display the result. Default to cookie-file.
12654 (cookie-insert): Default to cookie-file.
12655 (cookie-snarf): Make start and end messages optional.
12656 Default to cookie-file. Use with-temp-buffer.
12657 (cookie-read): Rename from read-cookie.
12658 Make start and end messages optional. Default to cookie-file.
12659 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
12660 Do not autoload it.
12661 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
12662 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
12663
12664 2013-06-21 Leo Liu <sdl.web@gmail.com>
12665
12666 * progmodes/octave.el (octave-mode): Backward compatibility fix.
12667
12668 2013-06-21 Glenn Morris <rgm@gnu.org>
12669
12670 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
12671
12672 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12673 Daniel Hackney <dan@haxney.org>
12674
12675 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
12676 Consolidate the single-file vs tarball code.
12677 (package-desc-suffix): New function.
12678 (package-desc-full-name): Don't bother inlining it.
12679 (package-load-descriptor): Return the new package-desc.
12680 (package-mark-obsolete): Remove unused arg `package'.
12681 (package-unpack): Make it work for single files as well.
12682 Make it update package-alist.
12683 (package--make-autoloads-and-stuff): Rename from
12684 package--make-autoloads-and-compile. Don't compile any more.
12685 (package--compile): New function.
12686 (package-generate-description-file): New function, extracted from
12687 package-unpack-single.
12688 (package-unpack-single): Remove.
12689 (package--with-work-buffer): Add indentation and debugging info.
12690 (package-download-single): Remove.
12691 (package-install-from-archive): Rename from package-download-tar, make
12692 it take a pkg-desc, and make it work for single files as well.
12693 (package-download-transaction): Simplify.
12694 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
12695 external tar program.
12696 (package-install-from-buffer): Remove `pkg-desc' argument.
12697 Use package-tar-file-info for tar-mode buffers.
12698 (package-install-file): Simplify accordingly.
12699 (package-archive-base): Change to take a pkg-desc.
12700 * tar-mode.el (tar--check-descriptor): New function, extracted from
12701 tar-get-descriptor.
12702 (tar-get-descriptor): Use it.
12703 (tar-get-file-descriptor): New function.
12704 (tar--extract): New function, extracted from tar-extract.
12705 (tar--extract): Use it.
12706 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
12707 case the summary uses non-ascii. Adjust to new calling convention of
12708 package-tar-file-info.
12709
12710 2013-06-21 Leo Liu <sdl.web@gmail.com>
12711
12712 * comint.el (comint-redirect-results-list-from-process):
12713 Fix random delay. (Bug#14681)
12714
12715 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
12716
12717 * profiler.el (profiler-format-number): Use log, not log10.
12718
12719 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
12720
12721 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
12722
12723 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
12724
12725 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
12726 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
12727 yet available.
12728 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
12729 (AUTOGENEL): ... here.
12730 * emacs-lisp/cl-macs.el (cl--sublis): New function.
12731 (cl--defsubst-expand): Use it.
12732
12733 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
12734
12735 * subr.el (log10): Move here from C code, and declare as obsolete.
12736 All uses of (log10 X) replaced with (log X 10).
12737
12738 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
12739
12740 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
12741 Declare with `defvar-local'.
12742 (tabulated-list-use-header-line, tabulated-list-entries)
12743 (tabulated-list-padding, tabulated-list-printer)
12744 (tabulated-list-sort-key): Declare with `defvar-local'.
12745 (tabulated-list-init-header, tabulated-list-print-fake-header):
12746 Use `setq-local'.
12747
12748 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
12749
12750 * arc-mode.el (archive-mode): Add `archive-write-file' to
12751 `write-contents-functions' also for remote files. (Bug#14652)
12752
12753 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
12754
12755 * cus-edit.el (custom-commands): Fix typos.
12756 (custom-display): Fix tooltip text.
12757 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
12758 Fix typos in docstrings.
12759 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
12760 (custom-unlispify-menu-entry, custom-magic-value-create)
12761 (custom-add-see-also, custom-group-value-create): Use ?\s.
12762 (custom-guess-type, customize-apropos, editable-field)
12763 (custom-face-value-create): Use `string-match-p'.
12764 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
12765
12766 * custom.el (custom-load-symbol): Use `string-match-p'.
12767
12768 * ansi-color.el: Convert to lexical binding.
12769 (ansi-colors): Fix URL.
12770 (ansi-color-context, ansi-color-context-region): Use defvar-local.
12771 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
12772 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
12773
12774 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12775
12776 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
12777
12778 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
12779
12780 2013-06-19 Tom Tromey <tromey@redhat.com>
12781
12782 * net/eww.el (eww-top-url): Remove.
12783 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
12784 (eww-render): Set new variables. Don't set eww-top-url.
12785 (eww-handle-link): Handle "prev", "home", and "contents".
12786 Downcase the rel text.
12787 (eww-top-url): Choose best top URL.
12788
12789 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12790
12791 * net/eww.el: Rewrite to implement form elements "by hand" instead of
12792 relying in widget.el. Using widget.el leads to too many
12793 user interface inconsistencies.
12794 (eww-self-insert): Implement entering commands in text fields.
12795 (eww-process-text-input): New function to make text input field editing
12796 work.
12797 (eww-submit): Rewrite to use the new-style form methods.
12798 (eww-select-display): Display the correct selected item.
12799 (eww-change-select): Implement changing the select value.
12800 (eww-toggle-checkbox): Implement radio/checkboxes.
12801 (eww-update-field): Fix compilation error.
12802 (eww-tag-textarea): Implement <textarea>.
12803
12804 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
12805 we don't shadow mode-specific bindings.
12806
12807 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
12808 nothing to push.
12809
12810 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
12811
12812 2013-06-19 Glenn Morris <rgm@gnu.org>
12813
12814 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
12815
12816 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
12817
12818 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
12819 not needed.
12820
12821 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
12822
12823 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12824
12825 * net/browse-url.el (browse-url-browser-function):
12826 `eww-browse-url' has the right calling signature, `eww' does not.
12827
12828 2013-06-19 Glenn Morris <rgm@gnu.org>
12829
12830 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
12831 Only eval autoloaded macros.
12832 (byte-compile-autoload): Only give the macro warning for macros.
12833
12834 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
12835 (ps-underlined-faces): Declare.
12836
12837 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
12838 (speedbar-add-supported-extension): Declare.
12839
12840 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
12841 Don't include a date stamp in the header of the generated file;
12842 it leads to needless differences between output files.
12843
12844 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
12845
12846 * net/secrets.el (secrets-struct-secret-content-type):
12847 Replace check of introspection data by a test call of "CreateItem".
12848 Some servers do not offer introspection.
12849
12850 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
12851
12852 * electric.el (electric-pair-mode): Improve interaction with
12853 electric-layout-mode.
12854 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
12855 (electric-pair-syntax): Use text-mode-syntax-table in comments
12856 and strings.
12857 (electric-pair--insert): New function.
12858 (electric-pair-post-self-insert-function): Use it and
12859 electric--after-char-pos.
12860
12861 2013-06-19 Leo Liu <sdl.web@gmail.com>
12862
12863 * progmodes/octave.el (octave-help): Fix regexp.
12864
12865 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
12866
12867 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
12868 (shr-table-horizontal-line): Allow nil as a value, and change the
12869 default.
12870 (shr-insert-table-ruler): Respect the nil value.
12871
12872 2013-06-18 Tom Tromey <tromey@barimba>
12873
12874 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
12875 New defvars.
12876 (eww-open-file): New defun.
12877 (eww-render): Initialize new variables.
12878 (eww-display-html): Handle "link" and "a".
12879 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
12880 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
12881 (eww-back-url): Rename from eww-previous-url.
12882 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
12883 New defuns.
12884
12885 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
12886
12887 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
12888 Distinguish ternary operator tokens from slash symbol and slash
12889 char literal.
12890
12891 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
12892
12893 Convert symbol prettification into minor mode and global minor mode.
12894
12895 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
12896 `prog-prettify-symbols', and make a local defvar instead of defcustom.
12897 (prettify-symbols--keywords): Rename from
12898 `prog-prettify-symbols-alist' and make a local defvar.
12899 (prettify-symbols--compose-symbol): Rename from
12900 `prog--prettify-font-lock-compose-symbol'.
12901 (prettify-symbols--make-keywords): Rename from
12902 `prog-prettify-font-lock-symbols-keywords' and simplify.
12903 (prog-prettify-install): Remove.
12904 (prettify-symbols-mode): New minor mode, based on
12905 `prog-prettify-install'.
12906 (turn-on-prettify-symbols-mode): New function.
12907 (global-prettify-symbols-mode): New globalized minor mode.
12908
12909 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
12910 * progmodes/cfengine.el (cfengine3-mode):
12911 * progmodes/perl-mode.el (perl-mode): Don't call
12912 `prog-prettify-install'; set `prettify-symbols-alist' instead.
12913
12914 2013-06-18 Juri Linkov <juri@jurta.org>
12915
12916 * files-x.el (modify-file-local-variable-message): New function.
12917 (modify-file-local-variable)
12918 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
12919 and call `modify-file-local-variable-message' when it's non-nil.
12920 (add-file-local-variable, delete-file-local-variable)
12921 (add-file-local-variable-prop-line)
12922 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
12923 and use it. (Bug#9820)
12924
12925 2013-06-18 Juri Linkov <juri@jurta.org>
12926
12927 * emulation/vi.el (vi-shell-op):
12928 * emulation/vip.el (vip-execute-com, ex-command):
12929 * emulation/viper-cmd.el (viper-exec-bang):
12930 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
12931 the call of `shell-command-on-region'. (Bug#14637)
12932
12933 * simple.el (shell-command-on-region): Doc fix.
12934
12935 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
12936
12937 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
12938 (bug#14633).
12939
12940 2013-06-18 Glenn Morris <rgm@gnu.org>
12941
12942 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
12943
12944 * newcomment.el (comment-search-forward, comment-search-backward):
12945 Doc fix. (Bug#14376)
12946
12947 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
12948
12949 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
12950 (buffer-face-mode-invoke): Doc fix.
12951
12952 2013-06-18 Matthias Meulien <orontee@gmail.com>
12953
12954 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
12955 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
12956
12957 2013-06-18 Glenn Morris <rgm@gnu.org>
12958
12959 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
12960 Replace obsolete function generic-make-keywords with its expansion.
12961
12962 * progmodes/python.el (ffap-alist): Declare.
12963
12964 * textmodes/reftex.el (bibtex-mode-map): Declare.
12965
12966 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
12967
12968 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
12969 (package-unpack, package-unpack-single): Return the pkg-dir.
12970 (package-download-transaction): Use it to update package-alist.
12971
12972 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
12973
12974 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
12975 possible choice.
12976
12977 2013-06-17 Juri Linkov <juri@jurta.org>
12978
12979 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
12980
12981 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
12982
12983 * emacs-lisp/package.el (package-load-descriptor):
12984 Remove `with-syntax-table' call, `read' doesn't need it.
12985 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
12986
12987 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
12988
12989 * startup.el (command-line): Expand package name returned by
12990 `package--description-file' (bug#14639).
12991
12992 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
12993
12994 * emacs-lisp/package.el (package-load-descriptor): Do not call
12995 `emacs-lisp-mode', just use its syntax table.
12996
12997 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
12998
12999 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
13000 `font-lock-extra-managed-props' if any prettifying keyword is added.
13001 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
13002 (prog-mode): Use `setq-local'.
13003
13004 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
13005
13006 * international/characters.el (standard-case-table): Set syntax of ?»
13007 and ?« to punctuation.
13008
13009 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
13010
13011 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
13012 Save relevant match data before calling `syntax-ppss' (bug#14595).
13013
13014 2013-06-15 Juri Linkov <juri@jurta.org>
13015
13016 * files-x.el (modify-file-local-variable-prop-line): Add local
13017 variables to the end of the existing comment on the first line.
13018 Use `file-auto-mode-skip' to skip interpreter magic line,
13019 and also skip XML declaration.
13020
13021 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13022
13023 * startup.el (package--builtin-versions): New var.
13024 (package-subdirectory-regexp): Remove.
13025 (package--description-file): Hard code its value instead.
13026
13027 * emacs-lisp/package.el: Don't activate packages older than builtin.
13028 (package-obsolete-list): Rename from package-obsolete-alist, and make
13029 it into a simple list of package-desc.
13030 (package-strip-version): Remove.
13031 (package-built-in-p): Use package--builtin-versions.
13032 (package-mark-obsolete): Simplify.
13033 (package-process-define-package): Mark it obsolete if older than the
13034 builtin version.
13035 (package-handle-response): Use line-end-position.
13036 (package-read-archive-contents, package--download-one-archive):
13037 Simplify.
13038 (package--add-to-archive-contents): Skip if older than the builtin or
13039 installed version.
13040 (package-menu-describe-package): Fix last change.
13041 (package-list-unversioned): New var.
13042 (package-menu--generate): Use it.
13043
13044 * emacs-lisp/autoload.el: Manage package--builtin-versions.
13045 (autoload--insert-text, autoload--insert-cookie-text): New functions.
13046 (autoload-builtin-package-versions): New variable.
13047 (autoload-generate-file-autoloads): Use them.
13048 Remove the list of autoloaded functions/macros from the
13049 (autoload...) comments.
13050
13051 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
13052
13053 2013-06-15 Eli Zaretskii <eliz@gnu.org>
13054
13055 * simple.el (line-move-partial): Don't jump to the next screen
13056 line as soon as it becomes visible. Instead, continue enlarging
13057 the vscroll until the portion of a tall screen line that's left on
13058 display is about the height of the frame's default font.
13059 (Bug#14567)
13060
13061 2013-06-15 Glenn Morris <rgm@gnu.org>
13062
13063 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
13064 compilation-error-regexp-alist void, or local while let-bound.
13065
13066 * progmodes/make-mode.el (makefile-mode-syntax-table):
13067 Treat "=" as punctuation. (Bug#14614)
13068
13069 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
13070
13071 * help-fns.el (describe-variable):
13072 Add extra line for permanent-local variables.
13073
13074 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
13075
13076 * progmodes/scheme.el (scheme-font-lock-keywords-2):
13077 Add export, import, library. (Bug#9164)
13078 (library): Set indent function.
13079
13080 2013-06-14 Glenn Morris <rgm@gnu.org>
13081
13082 * term/xterm.el (xterm--query):
13083 Stop after first matching handler. (Bug#14615)
13084
13085 2013-06-14 Ivan Kanis <ivan@kanis.fr>
13086
13087 Add support for dired in saveplace.
13088 * dired.el (dired-initial-position-hook): New variable.
13089 (dired-initial-position): Call hook to place cursor position.
13090 * saveplace.el (save-place-to-alist): Add dired position.
13091 (save-place-dired-hook): New function.
13092
13093 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
13094
13095 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
13096 through a symbol rather than letrec.
13097
13098 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
13099 (package-desc): Add `dir' field.
13100 (package-desc-full-name): New function.
13101 (package-load-descriptor): Combine the two arguments. Don't use `load'.
13102 (package-maybe-load-descriptor): Remove.
13103 (package-load-all-descriptors): Just call package-load-descriptor.
13104 (package--disabled-p): New function.
13105 (package-desc-vers, package-desc-doc): Remove aliases.
13106 (package--dir): Remove function.
13107 (package-activate): Check if a package is disabled.
13108 (package-process-define-package): New function, extracted from
13109 define-package.
13110 (define-package): Turn into a place holder.
13111 (package-unpack-single, package-tar-file-info):
13112 Use package--description-file.
13113 (package-compute-transaction): Use package--disabled-p.
13114 (package-download-transaction): Don't call
13115 package-maybe-load-descriptor since they're all loaded anyway.
13116 (package-install): Change argument to be a pkg-desc.
13117 (package-delete): Use a single pkg-desc argument.
13118 (describe-package-1): Use package-desc-dir instead of package--dir.
13119 Use package-desc property instead of package-symbol.
13120 (package-install-button-action): Adjust accordingly.
13121 (package--push): Rewrite.
13122 (package-menu--print-info): Adjust accordingly. Change the ID format
13123 to be a pkg-desc.
13124 (package-menu-describe-package, package-menu-get-status)
13125 (package-menu--find-upgrades, package-menu-mark-upgrades)
13126 (package-menu-execute, package-menu--name-predicate):
13127 Adjust accordingly.
13128 * startup.el (package--description-file): New function.
13129 (command-line): Use it.
13130 * emacs-lisp/package-x.el (package-upload-buffer-internal):
13131 Use package-desc-version.
13132
13133 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
13134 (byte-compile-preprocess): Use it.
13135 (byte-compile-file-form-defalias): Try a bit harder to use macros we
13136 can't quite recognize.
13137 (byte-compile-add-to-list): Remove.
13138 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
13139 (cconv-closure-convert): Add assertion.
13140
13141 * emacs-lisp/map-ynp.el: Use lexical-binding.
13142 (map-y-or-n-p): Remove unused vars `tail' and `object'.
13143 Factor out some repeated code.
13144
13145 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13146
13147 * subr.el (with-eval-after-load): New macro.
13148 (eval-after-load): Allow form to be a function.
13149 take advantage of lexical-binding.
13150 (do-after-load-evaluation): Use dolist and adjust to new format.
13151 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
13152
13153 2013-06-13 Juri Linkov <juri@jurta.org>
13154
13155 * replace.el (perform-replace): Display "symbol " and other search
13156 modes from `isearch-message-prefix' in the *Help* buffer.
13157
13158 * isearch.el (isearch-query-replace): Add " symbol" and other
13159 possible search modes from `isearch-message-prefix' to the prompt.
13160 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
13161 when reading a regexp to collect.
13162
13163 2013-06-13 Juri Linkov <juri@jurta.org>
13164
13165 * isearch.el (word-search-regexp): Match whitespace if the search
13166 string begins or ends in whitespace. The LAX arg is applied to
13167 both ends of the search string. Use `regexp-quote' and explicit
13168 \< and \> instead of \b. Use \` and \' instead of ^ and $.
13169 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
13170 boundaries are replaced with symbol boundaries, and characters
13171 between symbols match non-word non-symbol syntax. (Bug#14602)
13172
13173 2013-06-13 Juri Linkov <juri@jurta.org>
13174
13175 * isearch.el (isearch-del-char): Don't exceed the length of
13176 `isearch-string' by the prefix arg. (Bug#14563)
13177
13178 2013-06-13 Juri Linkov <juri@jurta.org>
13179
13180 * isearch.el (isearch-yank-word, isearch-yank-line)
13181 (isearch-char-by-name, isearch-quote-char)
13182 (isearch-printing-char, isearch-process-search-char):
13183 Add optional count prefix arg. (Bug#14563)
13184
13185 * international/isearch-x.el
13186 (isearch-process-search-multibyte-characters):
13187 Add optional count prefix arg.
13188
13189 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13190
13191 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
13192 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
13193 lexical-binding.
13194
13195 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
13196
13197 * subr.el (set-temporary-overlay-map): Add on-exit argument.
13198
13199 2013-06-13 Glenn Morris <rgm@gnu.org>
13200
13201 * startup.el (tty-handle-args):
13202 Don't just discard "--" and anything after. (Bug#14608)
13203
13204 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
13205
13206 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
13207
13208 Implement changes in Secret Service API. Make it backward compatible.
13209 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
13210 (secrets-create-item): Use it. Prefix properties with interface.
13211
13212 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
13213
13214 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
13215 (term-emulate-terminal): Respect term-suppress-hard-newline.
13216
13217 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
13218
13219 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
13220 Only remove a `thumb-file' overlay. (Bug#14548)
13221
13222 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
13223
13224 * mail/reporter.el (reporter-submit-bug-report):
13225 Handle missing package-name. (Bug#14600)
13226
13227 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13228
13229 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
13230 (reftex-citation-prompt, reftex-default-bibliography)
13231 (reftex-bib-or-thebib, reftex-get-bibfile-list)
13232 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
13233 (reftex-bib-sort-author, reftex-bib-sort-year)
13234 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
13235 (reftex-extract-bib-entries-from-thebibliography)
13236 (reftex-get-bibkey-default, reftex-get-bib-names)
13237 (reftex-parse-bibtex-entry, reftex-get-bib-field)
13238 (reftex-format-bib-entry, reftex-parse-bibitem)
13239 (reftex-format-bibitem, reftex-do-citation)
13240 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
13241 (reftex-restrict-bib-matches, reftex-extract-bib-file)
13242 (reftex-insert-bib-matches, reftex-format-citation)
13243 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
13244 (reftex-create-bibtex-file): Add docstrings, mostly by converting
13245 existing comments into docstrings.
13246
13247 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
13248
13249 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
13250
13251 2013-06-12 Andreas Schwab <schwab@suse.de>
13252
13253 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
13254 for auto-save files.
13255
13256 2013-06-12 Glenn Morris <rgm@gnu.org>
13257
13258 * ido.el (ido-delete-ignored-files): Remove.
13259 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
13260 Go back to calling ido-ignore-item-p directly.
13261
13262 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
13263
13264 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
13265
13266 * ido.el (ido-delete-ignored-files): New function,
13267 split from ido-make-file-list-1.
13268 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
13269 (ido-make-file-list-1): Use ido-delete-ignored-files.
13270
13271 2013-06-12 Leo Liu <sdl.web@gmail.com>
13272
13273 * progmodes/octave.el (inferior-octave-startup)
13274 (inferior-octave-completion-table)
13275 (inferior-octave-track-window-width-change)
13276 (octave-eldoc-function-signatures, octave-help)
13277 (octave-find-definition): Use single quoted strings.
13278 (inferior-octave-startup-args): Change default value.
13279 (inferior-octave-startup): Do not hard code "-i" and
13280 "--no-line-editing".
13281 (inferior-octave-resync-dirs): Add optional arg NOERROR.
13282 (inferior-octave-directory-tracker): Use it.
13283 (octave-goto-function-definition): Robustify.
13284 (octave-help): Support highlighting operators in 'See also'.
13285 (octave-find-definition): Find subfunctions only in Octave mode.
13286
13287 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
13288
13289 * help-fns.el (help-fns--compiler-macro): If the handler function is
13290 named, then put a link to it.
13291 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
13292 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
13293 (cl-typep): Use it.
13294 (cl-eval-when): Simplify debug spec.
13295 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
13296 compiler-macro function instead of setting `compiler-macro-file'.
13297
13298 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
13299
13300 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
13301 * vc/vc-hooks.el (vc-stay-local): Doc fix.
13302
13303 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
13304 Daniel Hackney <dan@haxney.org>
13305
13306 First part of Daniel Hackney's patch to package.el.
13307 * emacs-lisp/package.el: Use defstruct.
13308 (package-desc): New, main struct.
13309 (package--bi-desc, package--ac-desc): New structs, used to describe the
13310 format in external files.
13311 (package-desc-vers): Replace with package-desc-version accessor.
13312 (package-desc-doc): Replace with package-desc-summary accessor.
13313 (package-activate-1): Remove `package' arg since the pkg-vec now
13314 includes the name.
13315 (define-package): Use package-desc-from-define.
13316 (package-unpack-single): Change file-name arg to be a symbol.
13317 (package--add-to-archive-contents): Use package-desc-create and new
13318 accessor functions to package--ac-desc.
13319 (package-buffer-info, package-tar-file-info): Return a package-desc.
13320 (package-install-from-buffer): Remove `type' argument. Change pkg-info
13321 arg to be a package-desc.
13322 (package-install-file): Adjust accordingly. Use \' to match EOS.
13323 (package--from-builtin): New function.
13324 (describe-package-1, package-menu--generate): Use it.
13325 (package--make-autoloads-and-compile): Change name arg to be a symbol.
13326 (package-generate-autoloads): Idem and return the name of the file.
13327 * emacs-lisp/package-x.el (package-upload-buffer-internal):
13328 Change pkg-info arg to be a package-desc.
13329 Use package-make-ac-desc.
13330 (package-upload-file): Use \' to match EOS.
13331 * finder.el (finder-compile-keywords): Use package-make-builtin.
13332
13333 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13334
13335 * vc/vc.el (vc-deduce-fileset): Change error message.
13336 (vc-read-backend): New function.
13337 (vc-next-action): Use it.
13338
13339 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
13340
13341 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
13342 (prolog-font-lock-keywords): Use regexp-opt instead.
13343 Don't manually highlight strings.
13344 (prolog-mode-variables): Simplify comment-start-skip.
13345 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
13346
13347 * emacs-lisp/generic.el (generic--normalise-comments)
13348 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
13349 (generic-mode-set-comments): Use them.
13350 (generic-bracket-support): Use setq-local.
13351 (generic-make-keywords-list): Declare obsolete.
13352
13353 2013-06-11 Glenn Morris <rgm@gnu.org>
13354
13355 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13356 Prettify after setting font-lock-defaults. (Bug#14574)
13357
13358 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
13359
13360 * replace.el (query-replace, occur-read-regexp-defaults-function)
13361 (replace-search):
13362 * subr.el (declare-function, number-sequence, local-set-key)
13363 (substitute-key-definition, locate-user-emacs-file)
13364 (with-silent-modifications, split-string, eval-after-load):
13365 Fix typos, remove unneeded backslashes and reflow some docstrings.
13366
13367 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13368
13369 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
13370 default for Elisp files.
13371
13372 2013-06-11 Glenn Morris <rgm@gnu.org>
13373
13374 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
13375 although define-derived-mode was doing this anyway. (Bug#14583)
13376
13377 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
13378
13379 * allout.el (allout-encryption-plaintext-sanitization-regexps):
13380 Fix make-variable-buffer-local call to refer to the correct variable.
13381
13382 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
13383
13384 * eshell/em-term.el (eshell-visual-commands)
13385 (eshell-visual-subcommands, eshell-visual-options):
13386 Add summary line to docstrings. Add cross-references.
13387
13388 2013-06-10 Glenn Morris <rgm@gnu.org>
13389
13390 * epa.el (epa-read-file-name): New function. (Bug#14510)
13391 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
13392
13393 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
13394
13395 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
13396 output redirection to be ignored with visual commands.
13397
13398 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
13399
13400 * eshell/em-term.el (eshell-visual-command-p): New function.
13401 (eshell-term-initialize): Move long lambda to separate function
13402 eshell-visual-command-p.
13403 * eshell/em-dirs.el (eshell-dirs-initialize):
13404 * eshell/em-script.el (eshell-script-initialize):
13405 Add missing #' to lambda.
13406
13407 2013-06-08 Leo Liu <sdl.web@gmail.com>
13408
13409 * progmodes/octave.el (octave-add-log-current-defun): New function.
13410 (octave-mode): Set add-log-current-defun-function.
13411 (octave-goto-function-definition): Do not move point if not found.
13412 (octave-find-definition): Enhance to try subfunctions first.
13413
13414 2013-06-08 Glenn Morris <rgm@gnu.org>
13415
13416 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13417 (byte-compile-backward-char, byte-compile-backward-word):
13418 Improve previous change, to handle non-explicit nil.
13419
13420 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
13421
13422 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
13423 (smie--opener/closer-at-point): New function.
13424 (smie--matching-block-data): Use it. Don't match from right after an
13425 opener or right before a closer. Obey smie-blink-matching-inners.
13426 Don't signal a mismatch for repeated inners like "switch..case..case".
13427
13428 2013-06-07 Leo Liu <sdl.web@gmail.com>
13429
13430 * progmodes/octave.el (octave-mode): Set comment-use-global-state
13431 to t. (Bug#14303)
13432 (octave-function-header-regexp): Fix. (Bug#14570)
13433 (octave-help-mode-finish-hook, octave-help-mode-finish):
13434 Remove. Just use temp-buffer-show-hook.
13435
13436 * newcomment.el (comment-search-backward): Revert last change.
13437 (Bug#14434)
13438
13439 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
13440
13441 2013-06-07 Eli Zaretskii <eliz@gnu.org>
13442
13443 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
13444 through xargs, to avoid failure due to MS-Windows limitations on
13445 command-line length.
13446
13447 2013-06-06 Glenn Morris <rgm@gnu.org>
13448
13449 * font-lock.el (lisp-font-lock-keywords-2):
13450 Treat user-error like error.
13451
13452 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13453 (byte-compile-backward-char, byte-compile-backward-word):
13454 Handle explicit nil arguments. (Bug#14565)
13455
13456 2013-06-05 Alan Mackenzie <acm@muc.de>
13457
13458 * isearch.el (isearch-allow-prefix): New user option.
13459 (isearch-other-meta-char): Don't exit isearch when a prefix
13460 argument is typed whilst `isearch-allow-prefix' is non-nil.
13461 (Bug#9706)
13462
13463 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13464
13465 * autorevert.el (auto-revert-notify-handler): Use memq.
13466 Hide assertion failure.
13467
13468 * skeleton.el: Use cl-lib.
13469 (skeleton-further-elements): Use defvar-local.
13470 (skeleton-insert): Use cl-progv.
13471
13472 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13473
13474 * progmodes/prog-mode.el (prog-prettify-symbols)
13475 (prog-prettify-install): Update docstrings.
13476
13477 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13478
13479 * simple.el: Move all the prog-mode code to prog-mode.el.
13480 * progmodes/prog-mode.el: New file.
13481 * loadup.el: Add prog-mode.el.
13482
13483 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13484
13485 * simple.el (prog-prettify-symbols): Add version.
13486 (prog-prettify-install): Add convenience function to prettify symbols.
13487
13488 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
13489 (perl--augmented-font-lock-keywords-1)
13490 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
13491 variables and use it.
13492
13493 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
13494 (cfengine3-mode): Remove unneeded variable and use it.
13495
13496 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
13497 (lisp--augmented-font-lock-keywords-1)
13498 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
13499 Remove unneeded variables and use it.
13500
13501 2013-06-05 João Távora <joaotavora@gmail.com>
13502
13503 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
13504 to point when opening the connection. (Bug#14380)
13505
13506 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13507
13508 * subr.el (load-history-regexp, load-history-filename-element)
13509 (eval-after-load, after-load-functions, do-after-load-evaluation)
13510 (eval-next-after-load, display-delayed-warnings)
13511 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
13512 definition of save-match-data.
13513 (overriding-local-map): Remove accidental obsolescence declaration.
13514
13515 * emacs-lisp/edebug.el (edebug-result): Move before first use.
13516
13517 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13518
13519 Generalize symbol prettify support to prog-mode and implement it
13520 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
13521 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
13522 (prog--prettify-font-lock-compose-symbol)
13523 (prog-prettify-font-lock-symbols-keywords): New variables and
13524 functions to support symbol prettification.
13525 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
13526 (lisp--augmented-font-lock-keywords-1)
13527 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
13528 (lisp--prettify-symbols-alist): Implement prettify of lambda.
13529 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
13530 (cfengine3--prettify-symbols-alist, cfengine3-mode):
13531 Implement prettify of -> => :: strings.
13532 * progmodes/perl-mode.el (perl-prettify-symbols)
13533 (perl--font-lock-compose-symbol)
13534 (perl--font-lock-symbols-keywords): Move to prog-mode.
13535 (perl--prettify-symbols-alist): Prettify -> => :: strings.
13536 (perl-font-lock-keywords-1)
13537 (perl-font-lock-keywords-2): Remove explicit prettify support.
13538 (perl--augmented-font-lock-keywords)
13539 (perl--augmented-font-lock-keywords-1)
13540 (perl--augmented-font-lock-keywords-2, perl-mode):
13541 Implement prettify support.
13542
13543 2013-06-05 Leo Liu <sdl.web@gmail.com>
13544
13545 Re-implement SMIE matching block highlight using
13546 show-paren-data-function. (Bug#14395)
13547 * emacs-lisp/smie.el (smie-matching-block-highlight)
13548 (smie--highlight-matching-block-overlay)
13549 (smie--highlight-matching-block-lastpos)
13550 (smie-highlight-matching-block)
13551 (smie-highlight-matching-block-mode): Remove.
13552 (smie--matching-block-data-cache): New variable.
13553 (smie--matching-block-data): New function.
13554 (smie-setup): Use smie--matching-block-data for
13555 show-paren-data-function.
13556
13557 * progmodes/octave.el (octave-mode-menu): Fix.
13558 (octave-find-definition): Skip garbage lines.
13559
13560 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13561
13562 Fix compilation error with simultaneous dynamic+lexical scoping.
13563 Add warning when a defvar appears after the first let-binding.
13564 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
13565 (byte-compile-close-variables): Initialize it.
13566 (byte-compile--declare-var): New function.
13567 (byte-compile-file-form-defvar)
13568 (byte-compile-file-form-define-abbrev-table)
13569 (byte-compile-file-form-custom-declare-variable): Use it.
13570 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
13571 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
13572 (byte-compile-bind): Handle dynamic bindings that shadow
13573 lexical bindings.
13574 (byte-compile-unbind): Make arg non-optional.
13575 (byte-compile-let): Simplify.
13576 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
13577 (cconv--analyse-function, cconv-analyse-form): Populate it.
13578 Protect byte-compile-bound-variables to limit the scope of defvars.
13579 (cconv-analyse-form): Add missing rule for (defvar <foo>).
13580 Remove unneeded rule for `declare'.
13581
13582 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
13583 so as to avoid depending on cl-adjoin at run-time.
13584 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
13585
13586 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
13587 (macroexp--warn-and-return): Use it.
13588
13589 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13590
13591 * subr.el: Convert to lexical binding.
13592 (overriding-local-map): Make obsolete.
13593 (add-to-list): Doc fix. Add compiler macro.
13594 (read-key): Swap values of local maps.
13595
13596 2013-06-05 Leo Liu <sdl.web@gmail.com>
13597
13598 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
13599
13600 2013-06-04 Leo Liu <sdl.web@gmail.com>
13601
13602 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
13603 (compilation-auto-jump): Suppress the "Mark set" message to give
13604 way to exit message.
13605
13606 2013-06-04 Alan Mackenzie <acm@muc.de>
13607
13608 Remove faulty optimisation from indentation calculation.
13609 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
13610 search limit based on 2000 characters back from indent-point.
13611
13612 2013-06-03 Tassilo Horn <tsdh@gnu.org>
13613
13614 * eshell/em-term.el (cl-lib): Require `cl-lib'.
13615
13616 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
13617
13618 * emacs-lisp/lisp.el: Use lexical-binding.
13619 (lisp--local-variables-1, lisp--local-variables): New functions.
13620 (lisp--local-variables-completion-table): New var.
13621 (lisp-completion-at-point): Use it complete let-bound vars.
13622
13623 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
13624 eagerly (bug#14422).
13625
13626 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
13627
13628 * autorevert.el (auto-revert-notify-enabled)
13629 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
13630 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
13631 (auto-revert-notify-handler): Handle also gfilenotify.
13632
13633 * subr.el (file-notify-handle-event): New defun. Replacing ...
13634 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
13635 Remove.
13636
13637 2013-06-03 Juri Linkov <juri@jurta.org>
13638
13639 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
13640 `M-s h .'. (Bug#14427)
13641
13642 * hi-lock.el (highlight-symbol-at-point): New alias for the new
13643 command `hi-lock-face-symbol-at-point'.
13644 (hi-lock-face-symbol-at-point): New command.
13645 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
13646 (hi-lock-menu): Add `highlight-symbol-at-point'.
13647 (hi-lock-mode): Doc fix.
13648
13649 * isearch.el (isearch-forward-symbol-at-point): New command.
13650 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
13651 (isearch-highlight-regexp): Add a regexp which matches
13652 words/symbols for word/symbol mode.
13653
13654 * subr.el (find-tag-default-bounds): New function with the body
13655 mostly moved from `find-tag-default'.
13656 (find-tag-default): Move most code to `find-tag-default-bounds',
13657 call it and apply `buffer-substring-no-properties' afterwards.
13658
13659 2013-06-03 Tassilo Horn <tsdh@gnu.org>
13660
13661 * eshell/em-term.el (eshell-term-initialize):
13662 Use `cl-intersection' rather than `intersection'.
13663
13664 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
13665
13666 * vc/log-view.el: Doc fix.
13667 (log-view-mode-map): Copy keymap from `special-mode-map'.
13668
13669 2013-06-02 Eric Ludlam <zappo@gnu.org>
13670
13671 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
13672 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
13673 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
13674 (eieio-unbound, eieio-default-superclass)
13675 (eieio--define-field-accessors, method-static, method-before)
13676 (method-primary, method-after, method-num-lists)
13677 (method-generic-before, method-generic-primary)
13678 (method-generic-after, method-num-slots)
13679 (eieio-specialized-key-to-generic-key)
13680 (eieio--check-type, class-v, class-p)
13681 (eieio-class-name, define-obsolete-function-alias)
13682 (eieio-class-parents-fast, eieio-class-children-fast)
13683 (same-class-fast-p, class-constructor, generic-p)
13684 (generic-primary-only-p, generic-primary-only-one-p)
13685 (class-option-assoc, class-option, eieio-object-p)
13686 (class-abstract-p, class-method-invocation-order)
13687 (eieio-defclass-autoload-map, eieio-defclass-autoload)
13688 (eieio-class-un-autoload, eieio-defclass)
13689 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
13690 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
13691 (eieio--defgeneric-init-form, eieio-defgeneric-form)
13692 (eieio-defgeneric-reset-generic-form)
13693 (eieio-defgeneric-form-primary-only)
13694 (eieio-defgeneric-reset-generic-form-primary-only)
13695 (eieio-defgeneric-form-primary-only-one)
13696 (eieio-defgeneric-reset-generic-form-primary-only-one)
13697 (eieio-unbind-method-implementations)
13698 (eieio--defmethod, eieio--typep)
13699 (eieio-perform-slot-validation, eieio-validate-slot-value)
13700 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
13701 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
13702 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
13703 (eieio-slot-name-index, eieio-class-slot-name-index)
13704 (eieio-set-defaults, eieio-initarg-to-attribute)
13705 (eieio-attribute-to-initarg, eieio-c3-candidate)
13706 (eieio-c3-merge-lists, eieio-class-precedence-c3)
13707 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
13708 (eieio-class-precedence-list, eieio-generic-call-methodname)
13709 (eieio-generic-call-arglst, eieio-generic-call-key)
13710 (eieio-generic-call-next-method-list)
13711 (eieio-pre-method-execution-functions, eieio-generic-call)
13712 (eieio-generic-call-primary-only, eieiomt-method-list)
13713 (eieiomt-optimizing-obarray, eieiomt-install)
13714 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
13715 (eieio-generic-form, eieio-defmethod, make-obsolete)
13716 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
13717 (defclass): Remove `eval-and-compile' from macro.
13718 (call-next-method, shared-initialize): Instead of using
13719 `scoped-class' variable, use new eieio--scoped-class, and
13720 eieio--with-scoped-class.
13721 (initialize-instance): Rename local variable 'scoped-class' to
13722 'this-class' to remove ambiguitity from old global.
13723
13724 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
13725 eieio.el.
13726 (eieio--scoped-class-stack): New variable.
13727 (eieio--scoped-class): New fcn.
13728 (eieio--with-scoped-class): New scoping macro.
13729 (eieio-defclass): Use pushnew instead of add-to-list.
13730 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
13731 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
13732 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
13733 `scoped-class' variable, use new eieio--scoped-class, and
13734 eieio--with-scoped-class.
13735
13736 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
13737
13738 2013-06-02 Tassilo Horn <tsdh@gnu.org>
13739
13740 * eshell/esh-ext.el (eshell-external-command): Pass args to
13741 `eshell-find-interpreter'.
13742 (eshell-find-interpreter): Add new second parameter ARGS.
13743
13744 * eshell/em-script.el (eshell-script-initialize): Add second arg
13745 to the function added as MATCH to `eshell-interpreter-alist'.
13746
13747 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
13748 the function added as MATCH to `eshell-interpreter-alist'.
13749
13750 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
13751 (eshell-visual-options): New defcustom.
13752 (eshell-escape-control-x): Adapt docstring.
13753 (eshell-term-initialize): Test `eshell-visual-subcommands' and
13754 `eshell-visual-options' in addition to `eshell-visual-commands'.
13755 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
13756
13757 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
13758
13759 * progmodes/python.el (python-indent-block-enders): Add break,
13760 continue and raise keywords.
13761
13762 2013-06-01 Glenn Morris <rgm@gnu.org>
13763
13764 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
13765
13766 Plain (f)boundp silences compilation warnings since Emacs 22.1.
13767 * progmodes/cc-cmds.el (delete-forward-p):
13768 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
13769 * progmodes/cc-engine.el (buffer-syntactic-context):
13770 * progmodes/cc-fonts.el (face-property-instance):
13771 * progmodes/cc-mode.el (set-keymap-parents):
13772 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
13773 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
13774 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
13775 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
13776 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
13777
13778 * progmodes/cc-vars.el (other): Emacs has this widget since
13779 at least 21.1, so don't (re)define it.
13780
13781 * eshell/em-cmpl.el (eshell-cmpl-initialize):
13782 Replace the obsolete alias pcomplete-arg-quote-list.
13783
13784 2013-06-01 Leo Liu <sdl.web@gmail.com>
13785
13786 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
13787 punctuation syntax.
13788 (inferior-octave-minimal-columns)
13789 (inferior-octave-last-column-width): New variables.
13790 (inferior-octave-track-window-width-change): New function.
13791 (inferior-octave-mode): Adjust column width so that Octave output,
13792 for example from 'ls', can fit into the window nicely.
13793
13794 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
13795
13796 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
13797 Highlight expansions inside regexp literals.
13798
13799 2013-05-31 Glenn Morris <rgm@gnu.org>
13800
13801 * obsolete/sym-comp.el (symbol-complete):
13802 Replace obsolete completion-annotate-function.
13803
13804 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
13805
13806 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
13807
13808 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
13809 New function, checks if point is inside a literal that allows
13810 expression expansion.
13811 (ruby-syntax-propertize-expansion): Use it.
13812 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
13813 around the body.
13814
13815 2013-05-30 Juri Linkov <juri@jurta.org>
13816
13817 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
13818 to "\M-si".
13819 (isearch-invisible): New variable.
13820 (isearch-forward): Doc fix.
13821 (isearch-mode): Set `isearch-invisible'
13822 to the value of `search-invisible'.
13823 (isearch-toggle-case-fold): Doc fix.
13824 (isearch-toggle-invisible): New command.
13825 (isearch-query-replace): Let-bind `search-invisible'
13826 to the value of `isearch-invisible'.
13827 (isearch-search): Use `isearch-invisible' instead of
13828 `search-invisible'. Let-bind `search-invisible'
13829 to the value of `isearch-invisible'. (Bug#11378)
13830
13831 2013-05-30 Juri Linkov <juri@jurta.org>
13832
13833 * replace.el (perform-replace): Avoid `isearch-range-invisible'
13834 call when `query-flag' is nil and `search-invisible' is non-nil.
13835 (Bug#11746)
13836
13837 2013-05-30 Glenn Morris <rgm@gnu.org>
13838
13839 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
13840
13841 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
13842 (cc-require): Suppress spurious "noruntime" warnings.
13843 (cc-require-when-compile): Use fboundp, for sake of compiler.
13844
13845 * progmodes/cc-mode.el: Move load of cc-vars before that of
13846 cc-langs (which in turn loads cc-vars), to quieten compiler.
13847
13848 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13849
13850 * paren.el: Simplify the code.
13851 (show-paren-mode): Always start the timer.
13852 (show-paren--idle-timer): Rename from show-paren-idle-timer.
13853 (show-paren--overlay, show-paren--overlay-1): Rename from
13854 show-paren-overlay and show-paren-overlay-1, and initialize to an
13855 overlay rather than to nil.
13856 (show-paren-function): Misc cleanup and simplifications.
13857
13858 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13859
13860 * paren.el (show-paren-data-function): New hook.
13861 (show-paren--default): New function, extracted from show-paren-function.
13862 (show-paren-function): Use show-paren-data-function.
13863
13864 2013-05-30 Glenn Morris <rgm@gnu.org>
13865
13866 * ielm.el (ielm-map, ielm-complete-symbol):
13867 Use completion-at-point rather than obsolete functions.
13868 (inferior-emacs-lisp-mode): Doc fix.
13869 Set completion-at-point-functions, rather than
13870 comint-dynamic-complete-functions.
13871
13872 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
13873 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
13874 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
13875
13876 * image.el (image-animated-p): Tweak definition.
13877
13878 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
13879 (rlogin-process-connection-type): Tweak default. Add set-after.
13880 (rlogin-host): Doc fix.
13881 (rlogin): Tweak prompt.
13882 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
13883
13884 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
13885 * progmodes/tcl.el (inferior-tcl-mode-map):
13886 Use completion-at-point rather than obsolete alias.
13887
13888 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
13889
13890 * minibuffer.el (read-file-name-completion-ignore-case):
13891 Move before completion--in-region, for eager macro expansion.
13892
13893 2013-05-29 Juri Linkov <juri@jurta.org>
13894
13895 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
13896 for total count of matching lines. Add `global-matches' for total
13897 count of matches. Rename `matches' to `lines' for count of
13898 matching lines. Add `matches' for count of matches.
13899 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
13900 to `prev-line' for line number of prev match endpt.
13901 Increment `matches' for every match. Print the number of
13902 matching lines in the header.
13903 (occur-context-lines): Rename `lines' to `curr-line'.
13904 Rename `prev-lines' to `prev-line'. (Bug#14017)
13905
13906 2013-05-29 Juri Linkov <juri@jurta.org>
13907
13908 * replace.el (perform-replace): Add `skip-read-only-count',
13909 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
13910 Increment them for corresponding conditions and report the number
13911 of skipped occurrences in the final message. (Bug#11746)
13912 (query-replace, query-replace-regexp, query-replace-regexp-eval)
13913 (replace-string, replace-regexp): Doc fix.
13914
13915 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
13916
13917 * emacs-lisp/trace.el (trace--read-args): Provide a default.
13918
13919 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
13920 prog-mode-map (bug#14504).
13921
13922 2013-05-29 Leo Liu <sdl.web@gmail.com>
13923
13924 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
13925 (octave-help): Small simplification.
13926
13927 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
13928 off the highlight first.
13929
13930 2013-05-29 Glenn Morris <rgm@gnu.org>
13931
13932 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
13933 Handle idlwave-last-system-routine-info-cons-cell being nil.
13934
13935 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
13936 (idlwave-write-paths): Simplify via with-temp-buffer.
13937
13938 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
13939 * emulation/cua-rect.el: Also load cua-base at run time.
13940
13941 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
13942 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
13943 (cperl-imenu-on-info): Require imenu.
13944
13945 2013-05-28 Alan Mackenzie <acm@muc.de>
13946
13947 Handle "capitalised keywords" correctly.
13948 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
13949
13950 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
13951
13952 * eshell/em-unix.el: Add -r option to cp.
13953
13954 2013-05-28 Glenn Morris <rgm@gnu.org>
13955
13956 * vc/vc-arch.el (vc-exec-after): Declare.
13957 (vc-switches): Autoload.
13958 * vc/vc-bzr.el: No need to require vc when compiling.
13959 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
13960 (vc-resynch-buffer, vc-dir-refresh): Declare.
13961 (vc-setup-buffer, vc-switches): Autoload.
13962 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
13963 (vc-resynch-buffer): Declare.
13964 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
13965 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
13966 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
13967 (grep-read-regexp, grep-read-files, grep-expand-template)
13968 (vc-dir-refresh): Declare.
13969 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
13970 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
13971 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
13972 * vc/vc-mtn.el (vc-exec-after): Declare.
13973 (vc-switches): Autoload.
13974 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
13975 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
13976 (vc-file-tree-walk): Declare.
13977 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
13978 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
13979 (vc-tag-precondition, vc-rename-master): Autoload.
13980 * vc/vc-svn.el (vc-exec-after): Declare.
13981 (vc-switches, vc-setup-buffer): Autoload.
13982 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
13983 Autoload.
13984 (vc-resynch-buffer): Declare.
13985
13986 * obsolete/fast-lock.el (byte-compile-warnings):
13987 Don't warn about obsolete features in this obsolete file.
13988
13989 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
13990 Move definition before use.
13991
13992 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
13993 (dun-unix-verbs): Remove dun-zippy.
13994 (dun-zippy): Remove function.
13995
13996 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
13997
13998 2013-05-27 Juri Linkov <juri@jurta.org>
13999
14000 * replace.el (replace-search): New function with code moved out
14001 from `perform-replace'.
14002 (replace-highlight, replace-dehighlight): Move function definitions
14003 up closer to `replace-search'. (Bug#11746)
14004
14005 2013-05-27 Juri Linkov <juri@jurta.org>
14006
14007 * replace.el (perform-replace): Ignore invisible matches.
14008 In addition to checking `query-replace-skip-read-only', also
14009 filter out matches by calling `run-hook-with-args-until-failure'
14010 on `isearch-filter-predicates', and also check `search-invisible'
14011 for t or call `isearch-range-invisible'.
14012 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
14013
14014 2013-05-27 Juri Linkov <juri@jurta.org>
14015
14016 * isearch.el (isearch-filter-predicates): Rename from
14017 `isearch-filter-predicate'. Doc fix. (Bug#11378)
14018 (isearch-message-prefix): Display text from the property
14019 `isearch-message-prefix' of the currently active filters.
14020 (isearch-search): Don't compare `isearch-filter-predicate' with
14021 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
14022 on `isearch-filter-predicates'. Also check `search-invisible' for t
14023 or call `isearch-range-invisible'.
14024 (isearch-filter-visible): Make obsolete.
14025 (isearch-lazy-highlight-search):
14026 Call `run-hook-with-args-until-failure' on
14027 `isearch-filter-predicates' and use `isearch-range-invisible'.
14028
14029 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
14030 `isearch-filter-predicates' instead of `funcall'ing
14031 `isearch-filter-predicate'.
14032 (Info-mode): Set `Info-isearch-filter' to
14033 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
14034
14035 * dired-aux.el (dired-isearch-filter-predicate-orig):
14036 Remove variable.
14037 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
14038 (dired-isearch-filenames-end): Add and remove
14039 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
14040 instead of changing the value of `isearch-filter-predicate'.
14041 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
14042 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
14043 Put property `isearch-message-prefix' to "filename " on
14044 `dired-isearch-filter-filenames'.
14045
14046 * wdired.el (wdired-change-to-wdired-mode):
14047 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
14048 locally instead of changing `isearch-filter-predicate'.
14049 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
14050
14051 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
14052
14053 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
14054 return the commit hash (Bug#14459). Also set the
14055 `vc-git-detached' property.
14056 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
14057 (vc-git-mode-line-string): Use the same help-echo format whether
14058 in detached mode or not, because we know the actual revision now.
14059 When in detached mode, shorten the revision to 7 chars.
14060
14061 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14062
14063 * emacs-lisp/easy-mmode.el (define-minor-mode):
14064 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
14065 mode hook and provide a docstring.
14066
14067 2013-05-27 Alan Mackenzie <acm@muc.de>
14068
14069 Remove spurious syntax-table text properties inserted by C-y.
14070 * progmodes/cc-mode.el (c-after-change): Also clear hard
14071 syntax-table property with value nil.
14072
14073 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
14074
14075 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
14076 when reading the events; the buffer layout shall not be changed.
14077
14078 2013-05-27 Leo Liu <sdl.web@gmail.com>
14079
14080 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
14081 New variable.
14082 (inferior-octave-directory-tracker): Automatically re-sync
14083 default-directory.
14084 (octave-help): Improve handling of 'See also'.
14085
14086 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14087
14088 * doc-view.el: Minor naming convention tweaks.
14089 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
14090
14091 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
14092 even if there's no `display' property yet (bug#14435).
14093
14094 2013-05-25 Eli Zaretskii <eliz@gnu.org>
14095
14096 * subr.el (unmsys--file-name): Rename from reveal-filename.
14097
14098 * Makefile.in (custom-deps, finder-data, autoloads)
14099 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
14100 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
14101 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
14102
14103 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
14104
14105 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
14106 error-completion on the first 2 args of condition-case (bug#14446).
14107 Don't burp at EOB.
14108
14109 2013-05-25 Leo Liu <sdl.web@gmail.com>
14110
14111 * comint.el (comint-previous-matching-input): Do not flood the
14112 *Messages* buffer with trivial messages.
14113
14114 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
14115
14116 * progmodes/flymake.el (flymake-nop): Don't return a string.
14117 (flymake-set-at): Fix typo.
14118
14119 * simple.el (read--expression): New function, extracted from
14120 eval-expression. Set completion-at-point-functions (bug#14465).
14121 (eval-expression, eval-minibuffer): Use it.
14122
14123 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
14124
14125 * progmodes/flymake.el (flymake-save-buffer-in-file)
14126 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
14127 (flymake-selected-frame, flymake-log, flymake-ins-after)
14128 (flymake-set-at, flymake-get-buildfile-from-cache)
14129 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
14130 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
14131 Refine the doc string.
14132 (flymake-get-file-name-mode-and-masks): Reformat.
14133 (flymake-get-real-file-name-function): Fix a minor bug.
14134
14135 2013-05-24 Juri Linkov <juri@jurta.org>
14136
14137 * progmodes/grep.el (grep-mode-font-lock-keywords):
14138 Support =linenumber= format used by git-grep for lines with
14139 function names. (Bug#13549)
14140
14141 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
14142
14143 * progmodes/octave.el (octave-smie-rules): Return nil rather than
14144 0 after a semi-colon; it works better for smie-auto-fill.
14145 (octave--indent-new-comment-line): New function.
14146 (octave-indent-new-comment-line): Use it (indirectly).
14147 (octave-mode): Don't disable smie-auto-fill. Use add-function to
14148 modify comment-line-break-function.
14149
14150 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
14151 (smie-setup): Use add-function to set it.
14152
14153 2013-05-24 Sam Steingold <sds@gnu.org>
14154
14155 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
14156 argument (before the `interactive' argument).
14157
14158 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
14159
14160 * image-mode.el (image-mode-winprops): Add winprops to
14161 image-mode-winprops-alist before running
14162 image-mode-new-window-functions.
14163 * doc-view.el (doc-view-new-window-function): Don't delay
14164 doc-view-goto-page via timers (bug#14435).
14165
14166 2013-05-24 Tassilo Horn <tsdh@gnu.org>
14167
14168 * doc-view.el: Integrate with desktop.el. (Bug#14435)
14169 (doc-view-desktop-save-buffer): New function.
14170 (doc-view-restore-desktop-buffer): New function.
14171 (desktop-buffer-mode-handlers):
14172 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
14173 handler.
14174 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
14175 `desktop-save-buffer' function.
14176
14177 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
14178
14179 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
14180 (tramp-gvfs-file-name-handler): Raise a user error when
14181 `tramp-gvfs-enabled' is nil.
14182 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
14183 Do not raise a user error when loading package. (Bug#14447)
14184
14185 * net/xesam.el: Move to obsolete/.
14186
14187 2013-05-24 Glenn Morris <rgm@gnu.org>
14188
14189 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
14190
14191 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
14192
14193 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
14194 (Info-find-node, Man-getpage-in-background): Declare.
14195
14196 * mail/unrmail.el (unrmail):
14197 Replace obsolete detect-coding-with-priority.
14198
14199 * net/socks.el (socks-split-string): Use this rather than split-string.
14200 (socks-nslookup-host): Update for above change.
14201 (dynamic-choice, s5-dynamic-choice-match)
14202 (s5-dynamic-choice-match-inline, s5-widget-value-create):
14203 Comment out unused code.
14204
14205 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
14206 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
14207 (gud-tooltip-echo-area): Make obsolete.
14208 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
14209
14210 * progmodes/js.el (js--optimize-arglist): Declare.
14211
14212 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
14213
14214 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
14215 (ediff-window-C): Declare.
14216
14217 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
14218 Tweak requires to silence compiler.
14219
14220 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
14221 (he-search-string, he-tried-table, he-expand-list)
14222 (he-init-string, he-string-member, he-substitute-string)
14223 (he-reset-string): Declare.
14224
14225 * obsolete/options.el (list-options): Use custom-variable-p,
14226 rather than obsolete alias.
14227
14228 2013-05-23 Sam Steingold <sds@gnu.org>
14229
14230 * simple.el (shell-command-on-region): Pass the `replace' argument
14231 down to `call-process-region' to comply with the doc as reported on
14232 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
14233
14234 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
14235
14236 * emacs-lisp/smie.el (smie-indent-forward-token)
14237 (smie-indent-backward-token): Handle string tokens (bug#14381).
14238
14239 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14240
14241 * ielm.el (ielm-menu): New menu.
14242 (inferior-emacs-lisp-mode): Set comment-start.
14243
14244 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14245
14246 * textmodes/reftex.el (reftex-ref-style-toggle):
14247 Fix deactivate action.
14248
14249 * textmodes/reftex-vars.el (reftex-ref-style-alist):
14250 Add cleveref macros.
14251
14252 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
14253 Accept options for bibliography commands.
14254 * textmodes/reftex-vars.el (reftex-bibliography-commands):
14255 Add addbibresource. Basic Biblatex support.
14256
14257 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
14258
14259 * net/tramp-gvfs.el (top):
14260 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
14261 when loading package. (Bug#14447)
14262
14263 2013-05-23 Glenn Morris <rgm@gnu.org>
14264
14265 * progmodes/js.el: No need to load comint when compiling.
14266 (ring-insert, comint-send-string, comint-send-input)
14267 (comint-last-input-end, ido-chop): Declare.
14268
14269 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
14270 * vc/ediff-mult.el: Adjust requires.
14271 (ediff-directories-internal, ediff-directory-revisions-internal)
14272 (ediff-patch-file-internal): Declare.
14273 * vc/ediff-ptch.el: Adjust requires.
14274 (ediff-use-last-dir, ediff-buffers-internal): Declare.
14275 (ediff-find-file): Autoload.
14276 * vc/ediff-util.el: No need to load ediff when compiling.
14277 (ediff-regions-internal): Declare.
14278 * vc/ediff-wind.el: Adjust requires.
14279 (ediff-compute-toolbar-width): Define when compiling.
14280 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
14281 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
14282 (dired-get-filename, dired-get-marked-files)
14283 (ediff-last-dir-patch, ediff-patch-default-directory)
14284 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
14285 (ediff-patch-buffer-internal): Declare.
14286
14287 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
14288 (ispell-process, ispell-buffer-local-words, lm-summary)
14289 (lm-section-start, lm-section-end): Declare.
14290 (checkdoc-ispell-init): Simplify.
14291
14292 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
14293 (he-string-member, he-reset-string, he-substitute-string): Declare.
14294
14295 * eshell/em-ls.el: Adjust requires.
14296 (eshell-glob-regexp): Declare.
14297 * eshell/em-tramp.el: Adjust requires.
14298 (eshell-parse-command): Autoload.
14299 * eshell/em-xtra.el: Adjust requires.
14300 (eshell-parse-command): Autoload.
14301 * eshell/esh-ext.el: Adjust requires.
14302 (eshell-parse-command, eshell-close-handles): Autoload.
14303 * eshell/esh-io.el: Adjust requires.
14304 (eshell-output-filter): Autoload.
14305 * eshell/esh-util.el: No need to load tramp when compiling.
14306 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
14307 Declare.
14308 (eshell-parse-ange-ls): Require ange-ftp and tramp.
14309 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
14310 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
14311 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
14312 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
14313 * eshell/esh-opt.el, eshell/esh-proc.el:
14314 * eshell/esh-var.el: Adjust requires.
14315 * eshell/eshell.el: Do not require esh-util twice.
14316 (eshell-add-input-to-history): Declare.
14317 (eshell-command): Check history module is active before using it.
14318
14319 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
14320
14321 2013-05-22 Leo Liu <sdl.web@gmail.com>
14322
14323 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
14324
14325 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
14326
14327 * autorevert.el (auto-revert-notify-add-watch)
14328 (auto-revert-notify-handler): Add `attrib' for the inotify case,
14329 it indicates changes in file modification time.
14330
14331 2013-05-22 Glenn Morris <rgm@gnu.org>
14332
14333 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
14334 Always delete the autoloaded function from the noruntime and
14335 unresolved functions lists.
14336
14337 * allout.el: No need to load epa, epg, overlay when compiling.
14338 (epg-context-set-passphrase-callback, epg-list-keys)
14339 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
14340 (epg-key-user-id-list): Declare.
14341
14342 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
14343 (viper-set-parsing-style-toggling-macro)
14344 (viper-set-emacs-state-searchstyle-macros):
14345 Use called-interactively-p on Emacs.
14346 (viper-looking-back): Make it an obsolete alias. Update callers.
14347 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
14348 Use looking-back rather than viper-looking-back.
14349 (viper-tmp-insert-at-eob, viper-enlarge-region)
14350 (viper-read-string-with-history, viper-register-to-point)
14351 (viper-append-to-register, viper-change-state-to-vi)
14352 (viper-backward-char-carefully, viper-forward-char-carefully)
14353 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
14354 (viper-change-state-to-emacs): Declare.
14355 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
14356 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
14357 * emulation/viper-mous.el: Do not load viper-cmd.
14358 (viper-backward-char-carefully, viper-forward-char-carefully)
14359 (viper-forward-word, viper-adjust-window): Declare.
14360
14361 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
14362
14363 * progmodes/idlw-help.el (idlwave-help-fontify):
14364 Use called-interactively-p.
14365
14366 * term/w32console.el (w32-get-console-codepage)
14367 (w32-get-console-output-codepage): Declare.
14368
14369 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
14370 Remove unnecessary declarations.
14371 (dframe-message): Doc fix.
14372
14373 * info.el (dframe-select-attached-frame, dframe-current-frame):
14374 Declare.
14375
14376 * speedbar.el (speedbar-message): Make it an obsolete alias.
14377 Update all callers.
14378 (speedbar-with-attached-buffer)
14379 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
14380 (speedbar-with-writable): Use backquote.
14381 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
14382 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
14383 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
14384 rather than speedbar- aliases.
14385 * mail/rmail.el: Load dframe rather than speedbar when compiling.
14386 (speedbar-make-specialized-keymap, speedbar-insert-button)
14387 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
14388 (speedbar-do-function-pointer): Declare.
14389 (rmail-speedbar-button, rmail-speedbar-find-file)
14390 (rmail-speedbar-move-message):
14391 Use dframe-with-attached-buffer rather than speedbar- alias.
14392 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
14393 (dframe-message, speedbar-make-specialized-keymap)
14394 (speedbar-add-expansion-list, speedbar-mode-functions-list)
14395 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
14396 (speedbar-insert-button, dframe-select-attached-frame)
14397 (dframe-maybee-jump-to-attached-frame)
14398 (speedbar-change-initial-expansion-list)
14399 (speedbar-previously-used-expansion-list-name): Declare.
14400 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
14401 Use dframe-message, dframe-with-attached-buffer rather than
14402 speedbar- aliases.
14403 (gud-sentinel): Silence compiler.
14404 * progmodes/vhdl-mode.el (speedbar-refresh)
14405 (speedbar-do-function-pointer, speedbar-add-supported-extension)
14406 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
14407 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
14408 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
14409 (speedbar-file-lists, speedbar-make-tag-line)
14410 (speedbar-line-directory, speedbar-goto-this-file)
14411 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
14412 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
14413 (speedbar-make-button, speedbar-reset-scanners)
14414 (speedbar-files-item-info, speedbar-line-text)
14415 (speedbar-find-file-in-frame, speedbar-set-timer)
14416 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
14417 (speedbar-with-writable): Do not (re)define it.
14418 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
14419 rather than speedbar- alias.
14420
14421 2013-05-21 Leo Liu <sdl.web@gmail.com>
14422
14423 * progmodes/octave.el (octave-mode-menu): Update and re-organize
14424 menu items.
14425 (octave-mode): Tweak fill-nobreak-predicate.
14426 (inferior-octave-startup): Check process to avoid infinite loop.
14427 (inferior-octave): Pop to buffer first to show abornmal process
14428 exit information.
14429
14430 2013-05-21 Glenn Morris <rgm@gnu.org>
14431
14432 * printing.el (pr-menu-bar): Define when compiling.
14433
14434 2013-05-21 Leo Liu <sdl.web@gmail.com>
14435
14436 * progmodes/octave.el (octave-auto-fill): Remove.
14437 (octave-indent-new-comment-line): Improve.
14438 (octave-mode): Use auto fill mode through
14439 comment-line-break-function and fill-nobreak-predicate.
14440 (octave-goto-function-definition): Support DEFUN_DLD.
14441 (octave-beginning-of-defun): Small tweak.
14442 (octave-help): Show parent directory.
14443
14444 2013-05-21 Glenn Morris <rgm@gnu.org>
14445
14446 * files.el (dired-unmark):
14447 * progmodes/gud.el (gdb-input): Update declarations.
14448
14449 * calculator.el (electric, ehelp): No need to load when compiling.
14450 (Electric-command-loop, electric-describe-mode): Declare.
14451
14452 * doc-view.el (doc-view-current-converter-processes): Move before use.
14453
14454 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14455 Move MODE-set-explicitly definition before use.
14456
14457 * international/mule-diag.el (mule-diag):
14458 Don't use obsolete window-system-version.
14459
14460 * mail/feedmail.el (smtpmail): No need to load when compiling.
14461 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
14462
14463 * mail/mail-utils.el (rfc822): No need to load when compiling.
14464 (rfc822-addresses): Autoload it.
14465 (mail-strip-quoted-names): Trivial simplification.
14466
14467 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
14468 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
14469
14470 * net/snmp-mode.el (tempo): Don't duplicate requires.
14471
14472 * progmodes/prolog.el (info): No need to load when compiling.
14473 (comint): Require before shell requires it.
14474 (Info-goto-node): Autoload it.
14475 (Info-follow-nearest-node): Declare.
14476 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
14477
14478 * textmodes/artist.el (picture-mode-exit): Declare.
14479
14480 * textmodes/reftex-parse.el (reftex-parse-from-file):
14481 Trivial rewrite so the compiler can parse it better.
14482
14483 2013-05-20 Leo Liu <sdl.web@gmail.com>
14484
14485 * progmodes/octave.el (octave-help-mode-map)
14486 (octave-help-mode-finish-hook): New variables.
14487 (octave-help-mode, octave-help-mode-finish): New functions.
14488 (octave-help): Use octave-help-mode.
14489
14490 2013-05-20 Glenn Morris <rgm@gnu.org>
14491
14492 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
14493
14494 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
14495
14496 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
14497 start at point, so that expansion starting right after opening
14498 slash in a regexp is recognized.
14499 (ruby-syntax-before-regexp-re): New defvar, extracted from
14500 ruby-syntax-propertize-function. Since the value of this regexp
14501 is looked up at runtime now, we should be able to turn
14502 `ruby-syntax-methods-before-regexp' into a defcustom later.
14503 (ruby-syntax-propertize-function): Split regexp matching into two
14504 parts, for opening and closing slashes. That allows us to skip
14505 over string interpolations and support multiline regexps.
14506 Don't call `ruby-syntax-propertize-expansions', instead use another rule
14507 for them, which calls `ruby-syntax-propertize-expansion'.
14508 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
14509 call to `ruby-syntax-propertize-function'.
14510 (ruby-syntax-propertize-expansion): Extracted from
14511 `ruby-syntax-propertize-expansions'. Handles one expansion.
14512 (ruby-syntax-propertize-percent-literal): Leave point right after
14513 the percent symbol, so that the expression expansion rule can
14514 propertize the contents.
14515 (ruby-syntax-propertize-heredoc): Leave point at bol following the
14516 heredoc openers.
14517 (ruby-syntax-propertize-expansions): Remove.
14518
14519 2013-05-18 Juri Linkov <juri@jurta.org>
14520
14521 * man.el (Man-default-man-entry): Remove `-' from the end
14522 of the default value. (Bug#14400)
14523
14524 2013-05-18 Glenn Morris <rgm@gnu.org>
14525
14526 * comint.el (comint-password-prompt-regexp):
14527 Allow "password for XXX" where XXX contains colons (eg https://...).
14528
14529 2013-05-18 Leo Liu <sdl.web@gmail.com>
14530
14531 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
14532 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
14533 (octave-source-directories): Don't check process.
14534 (octave-source-directories, octave-find-definition): Doc fix.
14535
14536 2013-05-18 Glenn Morris <rgm@gnu.org>
14537
14538 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
14539 Remove backspace/delete bindings. (Bug#14392)
14540
14541 * cus-dep.el (custom-make-dependencies): Sort the output.
14542 (custom-versions-load-alist): Convert comment to doc.
14543
14544 2013-05-17 Leo Liu <sdl.web@gmail.com>
14545
14546 * newcomment.el (comment-search-backward): Stricter in finding
14547 comment start. (Bug#14303)
14548
14549 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
14550 (octave-comment-start-skip): Properly anchored.
14551
14552 2013-05-17 Leo Liu <sdl.web@gmail.com>
14553
14554 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
14555 Clean up when turned off. (Bug#14395)
14556 (smie--highlight-matching-block-overlay): No longer buffer-local.
14557 (smie-highlight-matching-block): Adjust.
14558
14559 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
14560
14561 Doc string fix for "nanoseconds" (Bug#14406).
14562 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
14563 Fix doc string typo that had "nanoseconds" instead of "microseconds".
14564
14565 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
14566
14567 * calc/calc-units.el (math-extract-units): Preserve powers
14568 of units.
14569
14570 2013-05-17 Leo Liu <sdl.web@gmail.com>
14571
14572 * subr.el (delete-consecutive-dups): New function.
14573 * ido.el (ido-set-matches-1): Use it.
14574 * progmodes/octave.el (inferior-octave-completion-table): Use it.
14575 * ido.el (ido-remove-consecutive-dups): Remove.
14576
14577 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14578
14579 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
14580 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
14581 regexp-opt's `words'.
14582
14583 2013-05-16 Leo Liu <sdl.web@gmail.com>
14584
14585 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
14586 (smie--highlight-matching-block-overlay)
14587 (smie--highlight-matching-block-lastpos)
14588 (smie--highlight-matching-block-timer): New variables.
14589 (smie-highlight-matching-block): New function.
14590 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
14591 (smie-setup): Conditionally enable smie-blink-matching-open.
14592
14593 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
14594
14595 Sync with upstream verilog-mode r840.
14596 * progmodes/verilog-mode.el (verilog-mode-version)
14597 (verilog-mode-release-date): Update.
14598 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
14599 (verilog-sig-tieoff): Fix string error on
14600 AUTORESET with colon define, bug594. Reported by Andrew Hou.
14601 (verilog-read-decls): Fix parameters confusing
14602 AUTOINST interfaces, bug565. Reported by Leith Johnson.
14603
14604 2013-05-16 Eli Zaretskii <eliz@gnu.org>
14605
14606 * subr.el (reveal-filename): New function.
14607
14608 * loadup.el: Compute Emacs executable versions on MS-Windows,
14609 where executables have the .exe extension. Add a hard link
14610 emacs-XX.YY.ZZ.exe on MS-Windows.
14611
14612 * Makefile.in (XARGS_LIMIT): New variable.
14613 (custom-deps, finder-data, autoloads)
14614 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
14615 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
14616 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
14617 (compile-main): Limit xargs according to $(XARGS_LIMIT).
14618
14619 2013-05-16 Leo Liu <sdl.web@gmail.com>
14620
14621 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
14622 (octave-mode-menu, octave-mode-map): Remove its uses.
14623
14624 2013-05-16 Reto Zimmermann <reto@gnu.org>
14625
14626 Sync with upstream vhdl mode v3.34.2.
14627 * progmodes/vhdl-mode.el: Use `push' throughout.
14628 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
14629 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
14630 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
14631 (vhdl-actual-generic-name): New option to derive actual generic name.
14632 (vhdl-port-paste-signals): Replace formal by actual generics.
14633 (vhdl-beautify): New name for old group vhdl-align. Update users.
14634 (vhdl-beautify-options): New option.
14635 (vhdl-last-input-event): New compat alias. Use throughout.
14636 (vhdl-goto-line): Replace user level function `goto-line'.
14637 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
14638 vhdl-fix-statement-buffer.
14639 (vhdl-create-mode-menu): Add some entries.
14640 (vhdl-align-region-groups): Respect vhdl-beautify-options.
14641 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
14642 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
14643 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
14644 to force statements on one line.
14645 (vhdl-remove-trailing-spaces-region):
14646 New, split from vhdl-remove-trailing-spaces.
14647 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
14648 Respect vhdl-beautify-options.
14649 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
14650 (vhdl-update-sensitivity-list): Not add with index if exists without.
14651 Not include array index with signal. Ignore keywords in comments.
14652 (vhdl-get-visible-signals): Regexp tweaks.
14653 (vhdl-template-component-inst): Handle empty library.
14654 (vhdl-template-type): Add template for 'enum' type.
14655 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
14656 Use vhdl-replace-string.
14657 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
14658 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
14659 (vhdl-speedbar-initialize): Update for above name change.
14660 (vhdl-compose-wire-components): Fix in handling of constants.
14661 (vhdl-error-regexp-emacs-alist): New variable.
14662 (vhdl-error-regexp-add-emacs): New function;
14663 adds support for new compile.el (Emacs 22+)
14664 (vhdl-generate-makefile-1): Change target order for single lib. units.
14665 Allow use of absolute file names.
14666
14667 2013-05-16 Leo Liu <sdl.web@gmail.com>
14668
14669 * simple.el (prog-indent-sexp): Indent enclosing defun.
14670
14671 2013-05-15 Glenn Morris <rgm@gnu.org>
14672
14673 * cus-start.el (show-trailing-whitespace): Move to editing basics.
14674 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
14675 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
14676 (whitespace-highlight): Move to whitespace group.
14677
14678 * comint.el (comint-source):
14679 * pcmpl-linux.el (pcmpl-linux):
14680 * shell.el (shell-faces):
14681 * eshell/esh-opt.el (eshell-opt):
14682 * international/ccl.el (ccl): Remove empty custom groups.
14683
14684 * completion.el (dynamic-completion-mode):
14685 * jit-lock.el (jit-lock-debug-mode):
14686 * minibuffer.el (completion-in-region-mode):
14687 * type-break.el (type-break-mode-line-message-mode)
14688 (type-break-query-mode):
14689 * emulation/tpu-edt.el (tpu-edt-mode):
14690 * progmodes/subword.el (global-subword-mode, global-superword-mode):
14691 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
14692 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
14693
14694 * term/xterm.el (xterm): Change parent group to terminals.
14695
14696 * master.el (master): Remove empty custom group.
14697 (master-mode): Remove unused :group argument.
14698 * textmodes/refill.el (refill): Remove empty custom group.
14699 (refill-mode): Remove unused :group argument.
14700
14701 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
14702
14703 * cus-dep.el: Provide a feature.
14704 (custom-make-dependencies): Ignore dotfiles (dir-locals).
14705 Don't mistakenly ignore files whose basenames match a basename
14706 from preloaded-file-list (eg cedet/ede/simple.el).
14707 Add a fallback method for getting :group.
14708
14709 2013-05-15 Juri Linkov <juri@jurta.org>
14710
14711 * isearch.el (isearch-char-by-name): Rename from
14712 `isearch-insert-char-by-name'. Doc fix.
14713 (isearch-forward): Mention `isearch-char-by-name' in
14714 the docstring. (Bug#13348)
14715
14716 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
14717 `exit-minibuffer' instead of
14718 `isearch-nonincremental-exit-minibuffer'.
14719 (isearch-edit-string): Remove mention of
14720 `isearch-nonincremental-exit-minibuffer' from docstring.
14721 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
14722 (isearch-forward-exit-minibuffer)
14723 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
14724
14725 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
14726
14727 * loadup.el: Just use unversioned DOC.
14728
14729 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
14730 literals as extending to EOB.
14731 (nxml-last-fontify-end): Remove unused variable.
14732 (nxml-after-change1): Use with-silent-modifications.
14733 (nxml-extend-after-change-region): Simplify.
14734 (nxml-extend-after-change-region1): Remove function.
14735 (nxml-after-change1): Don't adjust for dependent regions.
14736 (nxml-fontify-matcher): Simplify.
14737 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
14738 (xmltok-add-dependent): Remove function.
14739 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
14740 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
14741 (xmltok-scan-prolog-after-processing-instruction-open): Treat
14742 unclosed <[[, <?, comment, and other literals as extending to EOB.
14743 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
14744 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
14745 Remove functions.
14746 (rng-do-some-validation-1): Don't mark dependent regions.
14747 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
14748 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
14749 (nxml-clear-dependent-regions): Remove functions.
14750 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
14751 (nxml-ensure-scan-up-to-date):
14752 Don't clear&mark dependent regions.
14753
14754 2013-05-15 Leo Liu <sdl.web@gmail.com>
14755
14756 * progmodes/octave.el (octave-goto-function-definition):
14757 Improve and fix callers.
14758
14759 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
14760
14761 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
14762 the setter (bug#14387).
14763
14764 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
14765 surrounding group (bug#14402).
14766
14767 2013-05-14 Juri Linkov <juri@jurta.org>
14768
14769 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
14770 (Bug#14390)
14771
14772 2013-05-14 Glenn Morris <rgm@gnu.org>
14773
14774 * progmodes/f90.el (f90-imenu-generic-expression):
14775 Fix typo in 2013-05-08 change. (Bug#14402)
14776
14777 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
14778
14779 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
14780 Remove signals for which replies are never received.
14781
14782 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
14783
14784 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
14785 (gdb-handler-alist, gdb-handler-number): Remove variables.
14786 (gdb-handler-list): New variable.
14787 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
14788 (gdb-pending-handler-p, gdb-handle-reply)
14789 (gdb-remove-all-pending-triggers): New functions.
14790 (gdb-discard-unordered-replies): New defcustom.
14791 (gdb-handler): New defstruct.
14792 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
14793 instead of gdb-pending-triggers. Update docstring.
14794 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
14795 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
14796 (gdb-var-update-handler, def-gdb-auto-update-trigger)
14797 (def-gdb-auto-update-handler, gdb-get-changed-registers)
14798 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
14799 (gdb-frame-handler): Pending triggers are now automatically managed.
14800 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
14801 Remove argument.
14802 (gdb-input): Automatically handles pending triggers. Update docstring.
14803 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
14804 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
14805 Update comments.
14806 (gdb-done-or-error): Now use gdb-handle-reply.
14807
14808 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
14809
14810 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
14811 gdb-debug-log.
14812
14813 2013-05-14 Glenn Morris <rgm@gnu.org>
14814
14815 * subr.el (user-emacs-directory-warning): New option.
14816 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
14817
14818 2013-05-14 Leo Liu <sdl.web@gmail.com>
14819
14820 * progmodes/octave.el (octave-font-lock-keywords): Fix error
14821 during redisplay.
14822 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
14823 (octave-font-lock-texinfo-comment): Fix invalid search bound
14824 error: wrong side of point.
14825
14826 2013-05-14 Glenn Morris <rgm@gnu.org>
14827
14828 * progmodes/flymake.el (flymake-xml-program): New option.
14829 (flymake-xml-init): Use it.
14830
14831 * term/xterm.el: Provide a feature.
14832
14833 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
14834
14835 2013-05-13 Glenn Morris <rgm@gnu.org>
14836
14837 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
14838 Add compat aliases as a hack workaround. (Bug#14384)
14839
14840 2013-05-13 Leo Liu <sdl.web@gmail.com>
14841
14842 * progmodes/octave.el (octave-indent-comment): Fix indentation for
14843 ###, and %!.
14844 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
14845 C-M-q.
14846 (octave-comment-start-skip): Include %!.
14847 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
14848
14849 2013-05-12 Leo Liu <sdl.web@gmail.com>
14850
14851 * progmodes/octave.el (inferior-octave-startup): Store the value
14852 of __octave_srcdir__ for octave-source-directories.
14853 (inferior-octave-check-process): New function refactored out of
14854 inferior-octave-send-list-and-digest.
14855 (octave-source-directories)
14856 (octave-find-definition-filename-function): New variables.
14857 (octave-source-directories)
14858 (octave-find-definition-default-filename): New functions.
14859 (octave-find-definition): Improve to find functions implemented in C++.
14860
14861 2013-05-12 Glenn Morris <rgm@gnu.org>
14862
14863 * calendar/diary-lib.el (diary-outlook-format-1):
14864 Don't include dayname in the output. (Bug#14349)
14865
14866 2013-05-11 Glenn Morris <rgm@gnu.org>
14867
14868 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
14869
14870 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
14871 Treat cc-provide like provide.
14872
14873 2013-05-11 Kevin Ryde <user42@zip.com.au>
14874
14875 * cus-dep.el (custom-make-dependencies):
14876 Use generated-autoload-load-name for the sake of files such
14877 such cedet/semantic/bovine/c.el, where the base file name
14878 is not in load-path. (Bug#5277)
14879
14880 2013-05-11 Glenn Morris <rgm@gnu.org>
14881
14882 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
14883 Provide features.
14884
14885 2013-05-11 Leo Liu <sdl.web@gmail.com>
14886
14887 * progmodes/octave.el (octave-indent-comment): Improve.
14888 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
14889 (octave-eldoc-function-signatures, octave-eldoc-function):
14890 New functions.
14891 (octave-mode, inferior-octave-mode): Add eldoc support.
14892
14893 2013-05-11 Richard Stallman <rms@gnu.org>
14894
14895 * epa.el (epa-decrypt-file): Take output file name as argument
14896 and read it using `interactive'.
14897
14898 2013-05-11 Leo Liu <sdl.web@gmail.com>
14899
14900 * progmodes/octave.el (octave-beginning-of-line)
14901 (octave-end-of-line): Check before using up-list because it jumps
14902 out of more syntactic contructs since moving to smie.
14903 (octave-indent-comment): New function.
14904 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
14905 (octave-begin-keywords, octave-end-keywords)
14906 (octave-reserved-words, octave-smie-bnf-table)
14907 (octave-smie-rules): Add new keywords from Octave 3.6.4.
14908
14909 2013-05-11 Glenn Morris <rgm@gnu.org>
14910
14911 * faces.el (internal-face-x-get-resource):
14912 * frame.el (ns-display-monitor-attributes-list):
14913 * calc/calc-aent.el (math-to-radians-2):
14914 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
14915 Fix declarations.
14916
14917 * calc/calc-menu.el: Make it loadable in isolation.
14918
14919 * net/eudcb-bbdb.el: Make it loadable without bbdb.
14920 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
14921 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
14922 (eudc-bbdb-query-internal): Require 'bbdb.
14923
14924 * lpr.el (lpr-headers-switches):
14925 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
14926
14927 * progmodes/sql.el (sql-login-params): Fix and improve :type.
14928
14929 * emulation/edt-mapper.el: In batch mode, error rather than hang.
14930
14931 * term.el (term-set-escape-char): Make it idempotent.
14932
14933 2013-05-10 Leo Liu <sdl.web@gmail.com>
14934
14935 * progmodes/octave.el (inferior-octave-completion-table):
14936 No longer a function and all uses changed. Use cache to speed up
14937 completion due to bug#11906.
14938 (octave-beginning-of-defun): Re-write to be more general.
14939
14940 2013-05-10 Glenn Morris <rgm@gnu.org>
14941
14942 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
14943
14944 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
14945
14946 * comint.el (comint-redirect-send-command-to-process): Use :around
14947 rather than :override for comint-redirect-filter.
14948 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
14949 Call it instead of comint-redirect-original-filter-function (which
14950 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
14951
14952 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
14953
14954 * frame.el (display-monitor-attributes-list): Add NS case.
14955 (ns-display-monitor-attributes-list): Declare.
14956
14957 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
14958
14959 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
14960
14961 2013-05-09 Glenn Morris <rgm@gnu.org>
14962
14963 * international/fontset.el (vertical-centering-font-regexp):
14964 Set standard-value.
14965
14966 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
14967
14968 * bookmark.el (bookmark-search-delay):
14969 * cus-start.el (vertical-centering-font-regexp):
14970 * ps-mule.el (ps-mule-font-info-database-default):
14971 * ps-print.el (ps-default-fg, ps-default-bg):
14972 * type-break.el (type-break-good-break-interval):
14973 * whitespace.el (whitespace-indentation-regexp)
14974 (whitespace-space-after-tab-regexp):
14975 * emacs-lisp/testcover.el (testcover-1value-functions)
14976 (testcover-noreturn-functions, testcover-progn-functions)
14977 (testcover-prog1-functions):
14978 * emulation/viper-init.el (viper-emacs-state-cursor-color):
14979 * eshell/em-glob.el (eshell-glob-translate-alist):
14980 * play/tetris.el (tetris-tty-colors):
14981 * progmodes/cpp.el (cpp-face-default-list):
14982 * progmodes/flymake.el (flymake-allowed-file-name-masks):
14983 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
14984 (idlwave-help-browser-generic-args):
14985 * progmodes/make-mode.el (makefile-special-targets-list):
14986 * progmodes/python.el (python-shell-virtualenv-path):
14987 * progmodes/verilog-mode.el (verilog-active-low-regexp)
14988 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
14989 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
14990 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
14991 * textmodes/reftex-vars.el (reftex-format-label-function):
14992 * textmodes/remember.el (remember-diary-file): Fix custom types.
14993
14994 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
14995 Add :version.
14996
14997 2013-05-09 Leo Liu <sdl.web@gmail.com>
14998
14999 * progmodes/octave.el (inferior-octave-completion-at-point):
15000 Restore file completion. (Bug#14300)
15001 (inferior-octave-startup): Fix incorrect highlighting for the
15002 first prompt.
15003
15004 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15005
15006 * progmodes/ruby-mode.el: First cut at SMIE support.
15007 (ruby-use-smie): New var.
15008 (ruby-smie-grammar): New constant.
15009 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
15010 (ruby-smie--forward-token, ruby-smie--backward-token)
15011 (ruby-smie-rules): New functions.
15012 (ruby-mode-variables): Setup SMIE if applicable.
15013
15014 2013-05-08 Eli Zaretskii <eliz@gnu.org>
15015
15016 * simple.el (line-move-visual): Signal beginning/end of buffer
15017 only if vertical-motion moved less than it was requested. Avoids
15018 silly incorrect error messages when there are display strings with
15019 multiple newlines at EOL.
15020
15021 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15022
15023 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
15024 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
15025 (prolog-char-quote-workaround):
15026 * progmodes/cperl-mode.el (cperl-under-as-char):
15027 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
15028 Mark as obsolete.
15029 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
15030 their declaration.
15031 (vhdl-mode-syntax-table-init): Remove.
15032
15033 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
15034 last change.
15035
15036 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
15037 syntax for "_".
15038 (ld-script-font-lock-keywords):
15039 Change regexps to use things like \_< and \_>.
15040
15041 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
15042 Change all regexps to use things like \_< and \_>.
15043
15044 * progmodes/autoconf.el (autoconf-definition-regexp)
15045 (autoconf-font-lock-keywords, autoconf-current-defun-function):
15046 Handle a _ with symbol syntax.
15047 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
15048
15049 * progmodes/ada-mode.el (ada-mode-abbrev-table):
15050 Consolidate declaration.
15051 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
15052 the declaration.
15053 (ada-create-syntax-table): Remove.
15054 (ada-capitalize-word): Don't mess with the syntax of "_" since it
15055 already has the right syntax nowadays.
15056 (ada-goto-next-word): Don't change the syntax of "_".
15057
15058 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
15059 with-wrapper-hook.
15060
15061 2013-05-08 Sam Steingold <sds@gnu.org>
15062
15063 * thingatpt.el (thing-at-point): Accept optional second argument
15064 NO-PROPERTIES to strip the text properties from the return value.
15065 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
15066 to `thing-at-point' instead of stripping the properties ourselves.
15067 Also, when `thing-at-point' fails to find a url, prepend "http://"
15068 to the filename at point on the assumption that the user is
15069 pointing at something like gnu.org/gnu.
15070
15071 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
15072
15073 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
15074 * faces.el (crm-separator):
15075 Silence byte-compiler.
15076
15077 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
15078 (tool-bar-map): Remove unneeded defvars.
15079
15080 2013-05-08 Leo Liu <sdl.web@gmail.com>
15081
15082 Re-work a fix for bug#10994 based on Le Wang's patch.
15083 * ido.el (ido-remove-consecutive-dups): New helper.
15084 (ido-completing-read): Use it.
15085 (ido-chop): Revert fix for bug#10994.
15086
15087 2013-05-08 Adam Spiers <emacs@adamspiers.org>
15088
15089 * cus-edit.el (custom-save-variables):
15090 Pretty-print long values. (Bug#14187)
15091
15092 2013-05-08 Glenn Morris <rgm@gnu.org>
15093
15094 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
15095 (m4-mode-syntax-table): Init in the defvar.
15096 (m4-mode-abbrev-table): Let define-derived-mode define it.
15097
15098 2013-05-08 Tom Tromey <tromey@redhat.com>
15099
15100 * progmodes/m4-mode.el (m4-mode-syntax-table):
15101 Do not treat "_" as word constituent. (Bug#14167)
15102
15103 2013-05-07 Glenn Morris <rgm@gnu.org>
15104
15105 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
15106 Remove explicit eshell-isearch-cancel-map.
15107
15108 * progmodes/f90.el (f90-smart-end-names): New option.
15109 (f90-smart-end): Doc fix.
15110 (f90-end-block-optional-name): New constant.
15111 (f90-block-match): Respect f90-smart-end-names.
15112
15113 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
15114
15115 * progmodes/octave.el (octave-smie-forward-token): Be more careful
15116 about implicit semi-colons (bug#14218).
15117
15118 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15119
15120 * frame.el (display-monitor-attributes-list)
15121 (frame-monitor-attributes): New functions.
15122
15123 2013-05-06 Leo Liu <sdl.web@gmail.com>
15124
15125 * progmodes/octave.el (octave-syntax-propertize-function): Change
15126 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
15127 (octave-font-lock-keywords): Use octave-operator-regexp.
15128 (octave-completion-at-point): Rename from
15129 octave-completion-at-point-function.
15130 (inferior-octave-directory-tracker): Robustify.
15131 (octave-text-functions): Remove and fix its uses. No such things
15132 any more.
15133
15134 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15135
15136 * emacs-lisp/trace.el (trace--display-buffer): New function.
15137 (trace-make-advice): Use it.
15138
15139 2013-05-06 Juri Linkov <juri@jurta.org>
15140
15141 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
15142 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
15143 Doc fix.
15144 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
15145 in the help string. (Bug#12985)
15146
15147 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
15148
15149 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
15150
15151 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15152
15153 * progmodes/perl-mode.el: Add support for here documents.
15154 (perl-syntax-propertize-function): Match here-doc markers.
15155 (perl-syntax-propertize-special-constructs): Find their end.
15156 (perl-imenu-generic-expression): Use [:alnum:].
15157
15158 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
15159 (advice--add-function): Refresh the advice if already present
15160 (bug#14317).
15161
15162 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
15163
15164 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
15165
15166 2013-05-06 Glenn Morris <rgm@gnu.org>
15167
15168 * w32-fns.el (w32-charset-info-alist): Declare.
15169
15170 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
15171 of its defcustom properties.
15172 (eshell-cmpl-initialize): No need to load pcomplete.
15173
15174 * generic-x.el: No need to require comint when compiling.
15175
15176 * net/eudc-export.el: Make it loadable without bbdb.
15177 (top-level): Use require rather than load-library.
15178 (eudc-create-bbdb-record, eudc-bbdbify-phone)
15179 (eudc-batch-export-records-to-bbdb)
15180 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
15181 Require bbdb.
15182
15183 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15184
15185 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
15186 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
15187 some tweaks, instead.
15188
15189 2013-05-05 Leo Liu <sdl.web@gmail.com>
15190
15191 * progmodes/octave.el (octave-font-lock-keywords)
15192 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
15193 (inferior-octave-send-list-and-digest): Improve error message.
15194 (octave-mode, inferior-octave-mode): Use setq-local.
15195 (octave-help): Set info-lookup-mode.
15196
15197 2013-05-05 Richard Stallman <rms@gnu.org>
15198
15199 * vc/compare-w.el (compare-windows-whitespace):
15200 Treat no-break space as whitespace.
15201
15202 * mail/rmailsum.el (rmail-summary-rmail-update):
15203 Detect empty summary and don't change selected message.
15204 (rmail-summary-goto-msg): Likewise.
15205
15206 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
15207 Doc fixes, rename args.
15208
15209 2013-05-05 Alan Mackenzie <acm@muc.de>
15210
15211 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
15212
15213 2013-05-05 Juri Linkov <juri@jurta.org>
15214
15215 * info.el (Info-read-subfile): Use (point-min) instead of (point)
15216 to not add the length of the summary segment to the return value.
15217 (Bug#14125)
15218
15219 2013-05-05 Leo Liu <sdl.web@gmail.com>
15220
15221 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
15222 (inferior-octave-output-filter): Remove.
15223 (octave-send-region, inferior-octave-startup): Fix callers.
15224 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
15225 (octave-binary-file-extensions): New user variable.
15226 (octave-find-definition): Confirm if opening binary files.
15227 (octave-help-file): Use octave-find-definition to get the binary
15228 confirmation.
15229 (octave-help): Adjust for octave-help-file change.
15230
15231 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
15232
15233 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
15234 Merge the two entries that handle function definitions.
15235 (pascal--syntax-propertize): New const.
15236 (pascal-mode): Use it. Use setq-local.
15237
15238 2013-05-04 Glenn Morris <rgm@gnu.org>
15239
15240 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
15241 (diary-from-outlook): Respect diary-from-outlook-function.
15242
15243 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
15244
15245 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
15246 Move the declaration from C.
15247 (read-minibuffer, eval-minibuffer): Move from C.
15248 (completion-setup-function): Avoid minibuffer-completion-contents.
15249
15250 2013-05-03 Leo Liu <sdl.web@gmail.com>
15251
15252 * progmodes/octave.el (octave-font-lock-keywords): Do not
15253 dehighlight 'end' in comments or strings.
15254 (octave-completing-read, octave-goto-function-definition):
15255 New helpers.
15256 (octave-help-buffer): New user variable.
15257 (octave-help-file, octave-help-function): New button types.
15258 (octave-help): New command and bind it to C-h ;.
15259 (octave-find-definition): New command and bind it to M-.
15260 (user-error): Alias to error if not defined.
15261
15262 2013-05-02 Leo Liu <sdl.web@gmail.com>
15263
15264 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
15265 for \. (bug#14332)
15266 (octave-font-lock-keywords): Include [ and {.
15267
15268 2013-05-02 Leo Liu <sdl.web@gmail.com>
15269
15270 * progmodes/octave.el (inferior-octave-startup-file): Change default.
15271 (inferior-octave): Remove calling comint-mode and return the buffer.
15272 (inferior-octave-startup): Cosmetic changes.
15273
15274 2013-05-02 Leo Liu <sdl.web@gmail.com>
15275
15276 * progmodes/octave.el (octave-syntax-propertize-function):
15277 Include the case when ' is at line beginning. (Bug#14336)
15278
15279 2013-05-02 Glenn Morris <rgm@gnu.org>
15280
15281 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
15282 * desktop.el (vc-dir-mode): Just autoload it here.
15283
15284 2013-05-02 Alan Mackenzie <acm@muc.de>
15285
15286 Eliminate variable c-standard-font-lock-fontify-region-function.
15287 * progmodes/cc-mode.el
15288 (c-standard-font-lock-fontify-region-function): Remove.
15289 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
15290
15291 2013-05-01 Leo Liu <sdl.web@gmail.com>
15292
15293 * progmodes/octave.el: Compatible with older emacs-24 releases.
15294 (inferior-octave-has-built-in-variables): Remove. Built-in
15295 variables were removed from Octave in 2007.
15296 (inferior-octave-startup): Fix uses.
15297 (comint-line-beginning-position): Remove compatibility code for
15298 emacs 21.
15299
15300 2013-05-01 Juri Linkov <juri@jurta.org>
15301
15302 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
15303
15304 2013-05-01 Juri Linkov <juri@jurta.org>
15305
15306 * comint.el (comint-previous-matching-input): Don't print message
15307 "History item: %d" when `isearch-mode' is active.
15308 (comint-history-isearch-message): Print message "History item: %d"
15309 when `comint-input-ring-index' is not empty and this function is
15310 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
15311
15312 2013-05-01 Leo Liu <sdl.web@gmail.com>
15313
15314 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
15315 definitions. Use completion-at-point to insert keywords.
15316 (octave-abbrev-start): Remove.
15317 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
15318
15319 2013-04-30 Leo Liu <sdl.web@gmail.com>
15320
15321 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
15322 change.
15323
15324 2013-04-30 Alan Mackenzie <acm@muc.de>
15325
15326 Handle arbitrarily long C++ member initialisation lists.
15327 * progmodes/cc-engine.el (c-back-over-member-initializers):
15328 new function.
15329 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
15330 (most) member init lists.
15331
15332 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15333
15334 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
15335 variable.
15336
15337 2013-04-30 Leo Liu <sdl.web@gmail.com>
15338
15339 * progmodes/octave.el (octave-variables): Remove. No builtin
15340 variables any more. All converted to functions.
15341 (octave-font-lock-keywords, octave-completion-at-point-function):
15342 Fix uses.
15343 (octave-font-lock-texinfo-comment): New user variable.
15344 (octave-texinfo-font-lock-keywords): New variable for texinfo
15345 comment block.
15346 (octave-function-comment-block): New face.
15347 (octave-font-lock-texinfo-comment): New function.
15348 (octave-mode): Font lock texinfo comment block.
15349
15350 2013-04-29 Leo Liu <sdl.web@gmail.com>
15351
15352 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
15353 indexing expression.
15354 (octave-continuation-string): Do not use \.
15355 (inferior-octave-complete-impossible): Remove.
15356 (inferior-octave-completion-table)
15357 (inferior-octave-completion-at-point): Remove its uses.
15358 (inferior-octave-startup): completion_matches was introduced to
15359 Octave in 1996 so safe to assume it.
15360 (octave-function-file-comment): Improve to follow how Octave does it.
15361 (octave-update-function-file-comment): Tweak.
15362
15363 2013-04-29 Leo Liu <sdl.web@gmail.com>
15364
15365 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
15366 (inferior-octave-startup): Remove inferior-octave-startup-hook.
15367 (octave-function-file-comment): Fix typo.
15368 (octave-sync-function-file-names): Use read-char-choice.
15369
15370 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
15371
15372 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
15373 to t for the less important warnings.
15374
15375 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
15376
15377 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
15378
15379 2013-04-27 Glenn Morris <rgm@gnu.org>
15380
15381 * vc/log-view.el (log-view-current-entry):
15382 Treat "---" separator lines as part of the following rev. (Bug#14169)
15383
15384 2013-04-27 Juri Linkov <juri@jurta.org>
15385
15386 * subr.el (read-number): Doc fix about using it by interactive
15387 code letter `n'. (Bug#14254)
15388
15389 2013-04-27 Juri Linkov <juri@jurta.org>
15390
15391 * desktop.el (desktop-auto-save-timeout): New option.
15392 (desktop-file-checksum): New variable.
15393 (desktop-save): Add optional arg `auto-save' and don't auto-save
15394 if nothing changed.
15395 (desktop-auto-save-timer): New variable.
15396 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
15397 (after-init-hook): Call `desktop-auto-save-set-timer'.
15398 Suggested by Reuben Thomas <rrt@sc3d.org> in
15399 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
15400
15401 2013-04-27 Leo Liu <sdl.web@gmail.com>
15402
15403 * progmodes/octave.el (octave-function-file-p)
15404 (octave-skip-comment-forward, octave-function-file-comment)
15405 (octave-update-function-file-comment): New functions.
15406 (octave-mode-map): Bind C-c ; to
15407 octave-update-function-file-comment.
15408 (octave-mode-menu): Add octave-update-function-file-comment.
15409 (octave-mode, inferior-octave-mode): Fix doc-string.
15410 (octave-insert-defun): Conform to Octave's coding convention.
15411 (Bug#14285)
15412
15413 * files.el (basic-save-buffer): Don't let errors in
15414 before-save-hook prevent saving buffer.
15415
15416 2013-04-20 Roland Winkler <winkler@gnu.org>
15417
15418 * faces.el (read-face-name): Use completing-read if arg multiple
15419 is nil.
15420
15421 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
15422
15423 * ls-lisp.el (ls-lisp-insert-directory): If no files are
15424 displayed, move point to after the totals line.
15425 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
15426 for the details.
15427
15428 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
15429
15430 * emacs-lisp/package.el (package-autoload-ensure-default-file):
15431 Add current dir to the load-path.
15432 (package-generate-autoloads): Don't rely on
15433 autoload-ensure-default-file.
15434
15435 2013-04-26 Reuben Thomas <rrt@sc3d.org>
15436
15437 * textmodes/remember.el (remember-store-in-files): Document that
15438 the file name format is passed to `format-time-string'.
15439
15440 2013-04-26 Leo Liu <sdl.web@gmail.com>
15441
15442 * progmodes/octave.el (octave-sync-function-file-names): New function.
15443 (octave-mode): Use it in before-save-hook.
15444
15445 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
15446
15447 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
15448 (bug#14274).
15449
15450 * progmodes/octave.el (octave-smie-forward-token): Properly skip
15451 \n and comment, even if it's not an implicit ; (bug#14218).
15452
15453 2013-04-26 Glenn Morris <rgm@gnu.org>
15454
15455 * subr.el (read-number): Once more use `read' rather than
15456 `string-to-number', to trap non-numeric input. (Bug#14254)
15457
15458 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
15459
15460 * emacs-lisp/syntax.el (syntax-propertize-multiline):
15461 Use `syntax-multiline' text property consistently instead of
15462 `font-lock-multiline'. (Bug#14237)
15463
15464 2013-04-26 Glenn Morris <rgm@gnu.org>
15465
15466 * emacs-lisp/shadow.el (list-load-path-shadows):
15467 No longer necessary to check for duplicate simple.el, since
15468 2012-07-07 change to init_lread to not include installation lisp
15469 directories in load-path when running uninstalled. (Bug#14270)
15470
15471 2013-04-26 Leo Liu <sdl.web@gmail.com>
15472
15473 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
15474 (octave-mode, inferior-octave-mode): Use setq-local.
15475 (octave-not-in-string-or-comment-p): Rename to
15476 octave-in-string-or-comment-p.
15477 (octave-in-comment-p, octave-in-string-p)
15478 (octave-in-string-or-comment-p): Replace defsubst with defun.
15479
15480 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
15481
15482 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
15483
15484 2013-04-25 Bastien Guerry <bzg@gnu.org>
15485
15486 * textmodes/remember.el (remember-data-directory)
15487 (remember-directory-file-name-format): Fix custom types.
15488
15489 2013-04-25 Leo Liu <sdl.web@gmail.com>
15490
15491 * progmodes/octave.el (octave-completion-at-point-function):
15492 Make use of inferior octave process.
15493 (octave-initialize-completions): Remove.
15494 (inferior-octave-completion-table): New function.
15495 (inferior-octave-completion-at-point): Use it.
15496 (octave-completion-alist): Remove.
15497
15498 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15499
15500 * progmodes/opascal.el: Use font-lock and syntax-propertize.
15501 (opascal-mode-syntax-table): New var.
15502 (opascal-literal-kind, opascal-is-literal-end)
15503 (opascal-literal-token-at): Rewrite.
15504 (opascal--literal-start-re, opascal-font-lock-keywords)
15505 (opascal--syntax-propertize): New constants.
15506 (opascal-font-lock-defaults): Adjust.
15507 (opascal-mode): Use them. Set comment-<foo> variables as well.
15508 (delphi-comment-face, opascal-comment-face, delphi-string-face)
15509 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
15510 (delphi-other-face, opascal-other-face): Remove face variables.
15511 (opascal-save-state): Remove macro.
15512 (opascal-fontifying-progress-step): Remove constant.
15513 (opascal--ignore-changes): Remove var.
15514 (opascal-set-token-property, opascal-parse-next-literal)
15515 (opascal-is-stable-literal, opascal-complete-literal)
15516 (opascal-is-literal-start, opascal-face-of)
15517 (opascal-parse-region, opascal-parse-region-until-stable)
15518 (opascal-fontify-region, opascal-after-change)
15519 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
15520 (opascal-debug-parse-region, opascal-debug-parse-window)
15521 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
15522 (opascal-debug-fontify-buffer): Remove.
15523 (opascal-debug-mode-map): Adjust accordingly.
15524
15525 2013-04-25 Leo Liu <sdl.web@gmail.com>
15526
15527 Merge octave-mod.el and octave-inf.el into octave.el with some
15528 cleanups.
15529 * progmodes/octave.el: New file renamed from octave-mod.el.
15530 * progmodes/octave-inf.el: Merged into octave.el.
15531 * progmodes/octave-mod.el: Renamed to octave.el.
15532
15533 2013-04-25 Tassilo Horn <tsdh@gnu.org>
15534
15535 * textmodes/reftex-vars.el
15536 (reftex-label-ignored-macros-and-environments): New defcustom.
15537
15538 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
15539
15540 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15541
15542 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
15543 (smie-indent-keyword): Improve the check to ensure that the next
15544 comment is really on the same line.
15545 (smie-indent-comment): Don't align with a subsequent closer (or eob).
15546
15547 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
15548 semi-colons if the line is not otherwise empty (bug#14218).
15549
15550 2013-04-25 Glenn Morris <rgm@gnu.org>
15551
15552 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
15553
15554 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
15555
15556 * progmodes/opascal.el (opascal-set-token-property): Rename from
15557 opascal-set-text-properties and only set `token' (bug#14134).
15558 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
15559 (opascal-literal-text-properties): Remove.
15560 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
15561 Adjust callers.
15562
15563 2013-04-24 Reuben Thomas <rrt@sc3d.org>
15564
15565 * textmodes/remember.el (remember-handler-functions): Add an
15566 option for a new handler `remember-store-in-files'.
15567 (remember-data-directory, remember-directory-file-name-format):
15568 New options.
15569 (remember-store-in-files): New function to store remember notes
15570 as separate files within a directory.
15571
15572 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
15573
15574 * progmodes/compile.el (compilation-next-error-function):
15575 Pass "formats" to compilation-find-file (bug#11777).
15576
15577 2013-04-24 Glenn Morris <rgm@gnu.org>
15578
15579 * vc/vc-bzr.el (vc-bzr-print-log):
15580 * vc/vc-hg.el (vc-hg-print-log):
15581 * vc/vc-svn.el (vc-svn-print-log):
15582 Fix START-REVISION with LIMIT != 1. (Bug#14168)
15583
15584 * vc/vc-bzr.el (vc-bzr-print-log):
15585 * vc/vc-cvs.el (vc-cvs-print-log):
15586 * vc/vc-git.el (vc-git-print-log):
15587 * vc/vc-hg.el (vc-hg-print-log):
15588 * vc/vc-mtn.el (vc-mtn-print-log):
15589 * vc/vc-rcs.el (vc-rcs-print-log):
15590 * vc/vc-sccs.el (vc-sccs-print-log):
15591 * vc/vc-svn.el (vc-svn-print-log):
15592 * vc/vc.el (vc-print-log-internal): Doc fixes.
15593
15594 2013-04-23 Glenn Morris <rgm@gnu.org>
15595
15596 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
15597 Remove venerable code attempting to avoid substitute-command-keys.
15598
15599 2013-04-23 Tassilo Horn <tsdh@gnu.org>
15600
15601 * textmodes/reftex-vars.el (reftex-label-regexps):
15602 Call `reftex-compile-variables' after changes to this variable.
15603
15604 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
15605
15606 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
15607 Use lexical-binding.
15608 (jit-lock-force-redisplay): Use markers, check buffer's continued
15609 existence and beware narrowed buffers.
15610 (jit-lock-fontify-now): Adjust call accordingly.
15611
15612 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
15613
15614 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
15615 to avoid misleading the user.
15616
15617 2013-04-22 Leo Liu <sdl.web@gmail.com>
15618
15619 * info-look.el: Prefer latex2e.info. (Bug#14240)
15620
15621 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
15622
15623 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
15624
15625 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
15626 * net/tramp.el (tramp-call-process): ... here.
15627 (tramp-set-completion-function, tramp-parse-putty):
15628 * net/tramp-adb.el (tramp-adb-execute-adb-command):
15629 * net/tramp-gvfs.el (tramp-gvfs-send-command):
15630 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
15631 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
15632 (tramp-call-local-coding-command): Use `tramp-call-process'
15633 instead of `tramp-compat-call-process'.
15634
15635 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
15636 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
15637 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
15638 (tramp-find-inline-compress): Improve traces.
15639 (tramp-maybe-send-script): Check for Perl binary.
15640 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
15641
15642 2013-04-22 Daiki Ueno <ueno@gnu.org>
15643
15644 * epg.el (epg-context-pinentry-mode): New function.
15645 (epg-context-set-pinentry-mode): New function.
15646 (epg--start): Pass --pinentry-mode option to gpg command.
15647
15648 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
15649
15650 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
15651 `comint-dynamic-complete' is obsolete since 24.1, replaced by
15652 `completion-at-point'. (Bug#13774)
15653
15654 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
15655 default key binding for `describe-distribution' has been moved to
15656 `C-h C-o'. (Bug#13970)
15657
15658 2013-04-21 Glenn Morris <rgm@gnu.org>
15659
15660 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
15661 Add doc strings.
15662 (vc-print-log): Clarify interactive prompt.
15663
15664 2013-04-20 Glenn Morris <rgm@gnu.org>
15665
15666 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
15667 No longer include timestamp etc information.
15668
15669 2013-04-20 Roland Winkler <winkler@gnu.org>
15670
15671 * faces.el (read-face-name): Bug fix, return just one face if arg
15672 multiple is nil. (Bug#14209)
15673
15674 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
15675
15676 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
15677 (remove-function): Autoload.
15678
15679 * comint.el (comint-redirect-original-filter-function): Remove.
15680 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
15681 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
15682 (vc-cvs-annotate-command):
15683 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
15684 * progmodes/prolog.el (prolog-consult-compile):
15685 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
15686 Use add/remove-function instead.
15687 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
15688 (gud-tooltip-process-output, gud-tooltip-tips):
15689 Use add/remove-function instead.
15690 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
15691 (scheme-interaction-mode, exit-scheme-interaction-mode):
15692 Use add/remove-function instead.
15693
15694 * vc/vc-dispatcher.el: Use lexical-binding.
15695 (vc--process-sentinel): Rename from vc-process-sentinel.
15696 Change last arg to be the code to run. Don't use vc-previous-sentinel
15697 and vc-sentinel-commands any more.
15698 (vc-exec-after): Allow code to be a function. Use add/remove-function.
15699 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
15700
15701 2013-04-19 Masatake YAMATO <yamato@redhat.com>
15702
15703 * progmodes/sh-script.el (sh-imenu-generic-expression):
15704 Handle function names with a single character. (Bug#14111)
15705
15706 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
15707
15708 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
15709 for subroutines defined in an eval (bug#14182).
15710
15711 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15712
15713 * bookmark.el (bookmark-completing-read): Improve handling of empty
15714 string (bug#14176).
15715
15716 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
15717
15718 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
15719
15720 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
15721
15722 New faster Imenu implementation (bug#14058).
15723 * progmodes/python.el (python-imenu-prev-index-position)
15724 (python-imenu-format-item-label-function)
15725 (python-imenu-format-parent-item-label-function)
15726 (python-imenu-format-parent-item-jump-label-function):
15727 New vars.
15728 (python-imenu-format-item-label)
15729 (python-imenu-format-parent-item-label)
15730 (python-imenu-format-parent-item-jump-label)
15731 (python-imenu--put-parent, python-imenu--build-tree)
15732 (python-imenu-create-index, python-imenu-create-flat-index)
15733 (python-util-popn): New functions.
15734 (python-mode): Set imenu-create-index-function to
15735 python-imenu-create-index.
15736
15737 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
15738
15739 * winner.el (winner-active-region): Use region-active-p, activate-mark
15740 and deactivate-mark (bug#14225).
15741
15742 * simple.el (deactivate-mark): Don't inline it.
15743
15744 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
15745
15746 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
15747
15748 2013-04-18 Tassilo Horn <tsdh@gnu.org>
15749
15750 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
15751 file extensions from the archive-mode entry in order to prefer
15752 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
15753
15754 2013-04-18 Leo Liu <sdl.web@gmail.com>
15755
15756 * bindings.el (help-event-list): Add ?\?.
15757
15758 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
15759
15760 * subr.el (with-wrapper-hook): Declare obsolete.
15761 * simple.el (filter-buffer-substring-function): New hook.
15762 (filter-buffer-substring): Use it.
15763 (filter-buffer-substring-functions): Mark obsolete.
15764 * minibuffer.el (completion-in-region-function): New hook.
15765 (completion-in-region): Use it.
15766 (completion-in-region-functions): Mark obsolete.
15767 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
15768 * abbrev.el (abbrev-expand-function): New hook.
15769 (expand-abbrev): Use it.
15770 (abbrev-expand-functions): Mark obsolete.
15771 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
15772 and :filter-return.
15773
15774 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
15775
15776 * progmodes/python.el (python-nav--syntactically): Fix cornercases
15777 and do not care about match data.
15778
15779 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
15780
15781 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
15782 completion tables when completing error conditions and
15783 `declare' arguments.
15784 (lisp-complete-symbol, field-complete): Mark as obsolete.
15785 (check-parens): Unmatched parens are user errors.
15786 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
15787
15788 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
15789
15790 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
15791 command changed buffer (ie. `flyspell-pre-buffer' is not current
15792 buffer), which prevents making decisions based on invalid value of
15793 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
15794 cause an error when `flyspell-pre-point' was nil after switching
15795 buffers.
15796 (flyspell-post-command-hook): No longer needs to change buffers when
15797 checking pre-word. While at it remove unnecessary progn.
15798
15799 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
15800
15801 * textmodes/ispell.el (ispell-add-per-file-word-list):
15802 Fix `flyspell-correct-word-before-point' error when accepting
15803 words and `coment-padding' is an integer by using
15804 `comment-normalize-vars' (Bug #14214).
15805
15806 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
15807
15808 New defun movement commands.
15809 * progmodes/python.el (python-nav--syntactically)
15810 (python-nav--forward-defun, python-nav-backward-defun)
15811 (python-nav-forward-defun): New functions.
15812
15813 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
15814
15815 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
15816 (python-syntax-context): Use named compiler-macro for backwards
15817 compatibility with Emacs 24.x.
15818
15819 2013-04-17 Leo Liu <sdl.web@gmail.com>
15820
15821 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
15822 octave-hide-process-buffer.
15823
15824 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
15825
15826 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
15827 (bug#14216).
15828
15829 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
15830
15831 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
15832 Fix adjustment of offset when receiving incomplete responses from GDB
15833 (bug#14129).
15834
15835 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
15836
15837 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
15838 python-mode-abbrev-table.
15839 (python-skeleton-define): Adjust accordingly.
15840 (python-mode-abbrev-table): New table that inherits from it so that
15841 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
15842
15843 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
15844 (abbrev-symbol): Use it.
15845 (abbrev--before-point): Use it since we already handle inheritance.
15846
15847 2013-04-16 Leo Liu <sdl.web@gmail.com>
15848
15849 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
15850 binding to info-lookup-symbol.
15851
15852 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
15853
15854 * minibuffer.el (completion--twq-all):
15855 * term/ns-win.el (ns-initialize-window-system):
15856 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
15857
15858 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
15859
15860 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
15861 global bindings.
15862
15863 * doc-view.el (doc-view-start-process): Handle url-handler directories.
15864
15865 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
15866
15867 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
15868 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
15869 to nil.
15870 (ruby-end-of-defun): Remove the unused arg, change the docstring
15871 to reflect that this function is only used as the value of
15872 `end-of-defun-function'.
15873 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
15874 to reflect an earlier change that beginning/end-of-defun functions
15875 jump between methods in a class definition, as well as top-level
15876 functions.
15877
15878 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15879
15880 * minibuffer.el (minibuffer-complete): Don't just scroll
15881 a *Completions* that's been iconified.
15882 (minibuffer-force-complete): Make sure repetitions do cycle when going
15883 through completion-in-region -> minibuffer-complete.
15884
15885 2013-04-15 Alan Mackenzie <acm@muc.de>
15886
15887 Correct the placement of c-cpp-delimiters when there're #s not at
15888 col 0.
15889
15890 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
15891 place a submatch around the #.
15892 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
15893 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
15894 on the #, not BOL.
15895
15896 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15897
15898 * emacs-lisp/nadvice.el: Properly test names when adding advice.
15899 (advice--member-p): New arg `name'.
15900 (advice--add-function, advice-member-p): Use it (bug#14202).
15901
15902 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
15903
15904 Reformulate java imenu-generic-expression.
15905 The old expression contained ill formed regexps.
15906
15907 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
15908 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
15909 (cc-imenu-java-method-arg-regexp): New defconsts.
15910 (cc-imenu-java-build-type-args-regex): New defun.
15911 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
15912 handling of spaces in the regexp.
15913
15914 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
15915
15916 * textmodes/ispell.el (ispell-command-loop): Remove
15917 flyspell highlight of a word when ispell accepts it (bug #14178).
15918
15919 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
15920
15921 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
15922 uses code from the previous `ange-ftp-run-real-handler'.
15923 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
15924 only in case that function exist. This is needed for proper
15925 unloading of Tramp.
15926
15927 2013-04-15 Tassilo Horn <tsdh@gnu.org>
15928
15929 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
15930
15931 * textmodes/reftex.el (reftex-compile-variables): Use it.
15932
15933 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
15934
15935 * files.el (normal-mode): Only use default major-mode if no other mode
15936 was specified.
15937
15938 * emacs-lisp/trace.el (trace-values): New function.
15939
15940 * files.el: Allow : in local variables (bug#14089).
15941 (hack-local-variable-regexp): New var.
15942 (hack-local-variables-prop-line, hack-local-variables): Use it.
15943
15944 2013-04-13 Roland Winkler <winkler@gnu.org>
15945
15946 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
15947 data before it gets modified by bibtex-beginning-of-entry.
15948
15949 2013-04-13 Roland Winkler <winkler@gnu.org>
15950
15951 * textmodes/bibtex.el (bibtex-url): Doc fix.
15952
15953 2013-04-13 Roland Winkler <winkler@gnu.org>
15954
15955 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
15956 does not visit a BibTeX file, exclude it from the list of buffers
15957 returned by bibtex-initialize.
15958
15959 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
15960
15961 * window.el (split-window): Remove interactive form, since as a
15962 command this function is a special case of split-window-below.
15963 Correct doc string.
15964
15965 2013-04-12 Roland Winkler <winkler@gnu.org>
15966
15967 * faces.el (read-face-name): Do not override value of arg default.
15968 Allow single faces and strings as default values. Remove those
15969 elements from return value that are not faces.
15970 (describe-face): Simplify.
15971 (face-at-point): New optional args thing and multiple so that this
15972 function can provide the same functionality previously provided by
15973 read-face-name.
15974 (make-face-bold, make-face-unbold, make-face-italic)
15975 (make-face-unitalic, make-face-bold-italic, invert-face)
15976 (modify-face, read-face-and-attribute): Use face-at-point.
15977
15978 * cus-edit.el (customize-face, customize-face-other-window)
15979 * cus-theme.el (custom-theme-add-face)
15980 * face-remap.el (buffer-face-set)
15981 * facemenu.el (facemenu-set-face): Use face-at-point.
15982
15983 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
15984
15985 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
15986
15987 2013-04-10 Tassilo Horn <tsdh@gnu.org>
15988
15989 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
15990 off leading { and trailing } from field values.
15991
15992 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
15993
15994 * emacs-lisp/timer.el (timer--check): New function.
15995 (timer--time, timer-set-function, timer-event-handler): Use it.
15996 (timer-set-idle-time): Simplify.
15997 (timer--activate): CSE.
15998 (timer-event-handler): Give more info in error message.
15999 (internal-timer-start-idle): New function, moved from C.
16000
16001 * mpc.el (mpc-proc): Add `restart' argument.
16002 (mpc-proc-cmd): Use it.
16003 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
16004 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
16005 less often.
16006
16007 2013-04-10 Masatake YAMATO <yamato@redhat.com>
16008
16009 * progmodes/sh-script.el: Implement `sh-mode' own
16010 `add-log-current-defun-function' (bug#14112).
16011 (sh-current-defun-name): New function.
16012 (sh-mode): Use the function.
16013
16014 2013-04-09 Bastien Guerry <bzg@gnu.org>
16015
16016 * simple.el (choose-completion-string): Fix docstring (bug#14163).
16017
16018 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
16019
16020 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
16021
16022 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
16023 timer (bug#14156).
16024
16025 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
16026
16027 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
16028 declaration.
16029
16030 2013-04-07 Leo Liu <sdl.web@gmail.com>
16031
16032 * pcmpl-x.el: New file.
16033
16034 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
16035
16036 Do not set x-display-name until X connection is established.
16037 This is needed to prevent from weird situation described at
16038 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
16039 * frame.el (make-frame): Set x-display-name after call to
16040 window system initialization function, not before.
16041 * term/x-win.el (x-initialize-window-system): Add optional
16042 display argument and use it.
16043 * term/w32-win.el (w32-initialize-window-system):
16044 * term/ns-win.el (ns-initialize-window-system):
16045 * term/pc-win.el (msdos-initialize-window-system):
16046 Add compatible optional display argument.
16047
16048 2013-04-06 Eli Zaretskii <eliz@gnu.org>
16049
16050 * files.el (normal-backup-enable-predicate): On MS-Windows and
16051 MS-DOS compare truenames of temporary-file-directory and of the
16052 file, so that 8+3 aliases (usually found in $TEMP on Windows)
16053 don't fail comparison by compare-strings. Also, compare file
16054 names case-insensitively on MS-Windows and MS-DOS.
16055
16056 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
16057
16058 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
16059 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
16060
16061 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
16062
16063 * whitespace.el (whitespace-color-on, whitespace-color-off):
16064 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
16065
16066 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
16067
16068 * ispell.el (ispell-set-spellchecker-params):
16069 Really set `ispell-args' for all equivs.
16070
16071 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
16072
16073 * ido.el (ido-completions): Use extra elements of ido-decorations
16074 (bug#14143).
16075 (ido-decorations): Update docstring.
16076
16077 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
16078
16079 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
16080 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
16081 nil during initialization, in order not to miss changes since the
16082 file was opened. (Bug#14140)
16083
16084 2013-04-05 Leo Liu <sdl.web@gmail.com>
16085
16086 * kmacro.el (kmacro-call-macro): Fix bug#14135.
16087
16088 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
16089
16090 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
16091
16092 2013-04-04 Glenn Morris <rgm@gnu.org>
16093
16094 * electric.el (electric-pair-inhibit-predicate): Add :version.
16095
16096 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
16097
16098 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
16099 when a package is required several times (bug#14082).
16100
16101 2013-04-04 Roland Winkler <winkler@gnu.org>
16102
16103 * faces.el (read-face-name): Behave as promised by the docstring.
16104 Assume that arg default is a list of faces.
16105 (describe-face): Call read-face-name with list of default faces.
16106
16107 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16108
16109 * bookmark.el: Fix deletion of bookmarks (bug#13972).
16110 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
16111 (bookmark-bmenu-execute-deletions): Only skip first line if it's
16112 the header.
16113 (bookmark-exit-hook-internal): Save even if list is empty.
16114
16115 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
16116
16117 * emacs-lisp/package.el (package-pinned-packages): New var.
16118 (package--add-to-archive-contents): Obey it (bug#14118).
16119
16120 2013-04-03 Alan Mackenzie <acm@muc.de>
16121
16122 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
16123 Also adapt to the new values of element 7 of a parse state.
16124
16125 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
16126 parameter `not-in-delimiter'. Handle being inside comment opener.
16127 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
16128 character in case we're typing a '*' after a '/'.
16129 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
16130 instead by passing the parameter to c-state-pp-to-literal.
16131
16132 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
16133 for elt. 7 of a parse state.
16134
16135 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
16136
16137 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
16138 * international/latin1-disp.el, international/mule-util.el:
16139 * language/cyril-util.el, language/european.el, language/ind-util.el:
16140 * language/lao-util.el, language/thai.el, language/tibet-util.el:
16141 * language/tibetan.el, language/viet-util.el:
16142 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
16143
16144 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
16145
16146 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
16147 (electric-pair-post-self-insert-function): Use it.
16148 (electric-pair-default-inhibit): New function, extracted from
16149 electric-pair-post-self-insert-function.
16150
16151 2013-03-31 Roland Winkler <winkler@gnu.org>
16152
16153 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
16154
16155 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
16156
16157 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
16158
16159 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
16160
16161 Un-indent after "pass" and "return" statements (Bug#13888)
16162 * progmodes/python.el (python-indent-block-enders): New var.
16163 (python-indent-calculate-indentation): Use it.
16164
16165 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
16166
16167 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
16168 defun. Defining it as defalias could introduce too eager
16169 byte-compiler optimization. (Bug#14030)
16170
16171 2013-03-30 Chong Yidong <cyd@gnu.org>
16172
16173 * iswitchb.el (iswitchb-read-buffer): Fix typo.
16174
16175 2013-03-30 Leo Liu <sdl.web@gmail.com>
16176
16177 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
16178 (kmacro-execute-from-register): Pass the keyboard macro to
16179 kmacro-call-macro or repeating won't work correctly.
16180
16181 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
16182
16183 * progmodes/subword.el: Back to using `forward-symbol'.
16184
16185 * subr.el (forward-whitespace, forward-symbol)
16186 (forward-same-syntax): Move from thingatpt.el.
16187
16188 2013-03-29 Leo Liu <sdl.web@gmail.com>
16189
16190 * kmacro.el (kmacro-to-register): New command.
16191 (kmacro-execute-from-register): New function.
16192 (kmacro-keymap): Bind to 'x'. (Bug#14071)
16193
16194 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
16195
16196 * mpc.el: Use defvar-local and setq-local.
16197 (mpc--proc-connect): Connection failures are not bugs.
16198 (mpc-mode-map): `follow-link' only applies to the buffer's content.
16199 (mpc-volume-map): Bind to the up-events.
16200
16201 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
16202
16203 * progmodes/subword.el (superword-mode): Use `forward-sexp'
16204 instead of `forward-symbol'.
16205
16206 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
16207
16208 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
16209 (edebug--recursive-edit): Use it.
16210 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
16211 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
16212
16213 2013-03-28 Leo Liu <sdl.web@gmail.com>
16214
16215 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
16216
16217 2013-03-27 Eli Zaretskii <eliz@gnu.org>
16218
16219 * facemenu.el (list-colors-callback): New defvar.
16220 (list-colors-redisplay): New function.
16221 (list-colors-display): Install list-colors-redisplay as the
16222 revert-buffer-function. (Bug#14063)
16223
16224 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
16225
16226 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
16227 and suffixes don't overlap (bug#14061).
16228
16229 * case-table.el: Use lexical-binding.
16230 (case-table-get-table): New function.
16231 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
16232
16233 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
16234
16235 * progmodes/subword.el: Add `superword-mode' to do word motion
16236 over symbol_words (parallels and leverages `subword-mode' which
16237 does word motion inside MixedCaseWords).
16238
16239 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
16240
16241 * eshell/em-unix.el: Move su and sudo to...
16242 * eshell/em-tramp.el: ...Eshell tramp module.
16243
16244 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
16245
16246 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
16247 Change return value to be a sexp. Delay `get-buffer' to after
16248 restoring the desktop (bug#13951).
16249
16250 2013-03-26 Leo Liu <sdl.web@gmail.com>
16251
16252 * register.el: Move semantic tag handling back to
16253 cedet/semantic/senator.el. (Bug#14052)
16254
16255 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
16256
16257 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
16258 into the prompt either (bug#13963).
16259
16260 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
16261
16262 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
16263 part of "(error-foo)".
16264
16265 2013-03-24 Juri Linkov <juri@jurta.org>
16266
16267 * replace.el (list-matching-lines-prefix-face): New defcustom.
16268 (occur-1): Pass `list-matching-lines-prefix-face' to the function
16269 `occur-engine' if `face-differs-from-default-p' returns t.
16270 (occur-engine): Add `,' inside backquote construct to evaluate
16271 `prefix-face'. Propertize the prefix with the `prefix-face' face.
16272 Pass `prefix-face' to the functions `occur-context-lines' and
16273 `occur-engine-add-prefix'.
16274 (occur-engine-add-prefix, occur-context-lines): Add optional arg
16275 `prefix-face' and propertize the prefix with `prefix-face'.
16276 (Bug#14017)
16277
16278 2013-03-24 Leo Liu <sdl.web@gmail.com>
16279
16280 * nxml/rng-valid.el (rng-validate-while-idle)
16281 (rng-validate-quick-while-idle): Guard against deleted buffer.
16282 (Bug#13999)
16283
16284 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
16285 is the last entry in kill-buffer-hook.
16286
16287 * files.el (kill-buffer-hook): Doc fix.
16288
16289 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
16290
16291 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
16292 Make it safe-local.
16293
16294 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
16295
16296 2013-03-23 Leo Liu <sdl.web@gmail.com>
16297
16298 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
16299 Remove.
16300
16301 * nxml/rng-valid.el (rng-validate-mode)
16302 (rng-after-change-function, rng-do-some-validation):
16303 * nxml/rng-maint.el (rng-validate-buffer):
16304 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
16305 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
16306 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
16307 (nxml-extend-after-change-region): Use with-silent-modifications.
16308
16309 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
16310 timer-idle-list.
16311
16312 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
16313 (rng-next-error-1, rng-previous-error-1): Do not let-bind
16314 timer-idle-list. (Bug#13999)
16315
16316 2013-03-23 Juri Linkov <juri@jurta.org>
16317
16318 * info.el (info-index-match): New face.
16319 (Info-index, Info-apropos-matches): Add a nested subgroup to the
16320 main pattern and add text properties with the new face to matches
16321 in index entries relative to the beginning of the index entry.
16322 (Bug#14015)
16323
16324 2013-03-21 Eric Ludlam <zappo@gnu.org>
16325
16326 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
16327 Inhibit read only while inserting objects.
16328
16329 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
16330
16331 * progmodes/cfengine.el: Update docs to mention
16332 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
16333 symbol motion. Remove "_" from the word syntax.
16334
16335 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
16336
16337 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
16338 syntax for both `cfengine2-mode' and `cfengine3-mode'.
16339
16340 2013-03-20 Juri Linkov <juri@jurta.org>
16341
16342 * info.el (Info-next-reference-or-link)
16343 (Info-prev-reference-or-link): New functions.
16344 (Info-next-reference, Info-prev-reference): Use them.
16345 (Info-try-follow-nearest-node): Handle footnote navigation.
16346 (Info-fontify-node): Fontify footnotes. (Bug#13989)
16347
16348 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
16349
16350 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
16351 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
16352
16353 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
16354
16355 Suppress unnecessary non-ASCII chatter during build process.
16356 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
16357 (batch-skkdic-convert): Suppress most of the chatter.
16358 It's not needed so much now that machines are faster,
16359 and its non-ASCII component was confusing; see Dmitry Gutov in
16360 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
16361
16362 2013-03-20 Leo Liu <sdl.web@gmail.com>
16363
16364 * ido.el (ido-chop): Fix bug#10994.
16365
16366 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16367
16368 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
16369 Remove vars.
16370 (whitespace-color-on, whitespace-color-off):
16371 Use `font-lock-fontify-buffer' (Bug#13817).
16372
16373 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
16374
16375 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
16376 remapping in mode-line.
16377 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
16378
16379 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16380
16381 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
16382 value for `whitespace-line' face (Bug#13875).
16383 (whitespace-font-lock-keywords): Change description.
16384 (whitespace-color-on): Don't save `font-lock-keywords' value, save
16385 the constructed keywords instead.
16386 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
16387
16388 2013-03-19 Leo Liu <sdl.web@gmail.com>
16389
16390 * progmodes/compile.el (compilation-display-error): New command.
16391 (compilation-mode-map, compilation-minor-mode-map): Bind it to
16392 C-o. (Bug#13992)
16393
16394 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16395
16396 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
16397
16398 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
16399
16400 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
16401
16402 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
16403
16404 * net/tramp-compat.el (tramp-compat-user-error): New defun.
16405
16406 * net/tramp-adb.el (tramp-adb-handle-shell-command):
16407 * net/tramp-gvfs.el (top):
16408 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
16409 (tramp-handle-shell-command): Use it.
16410 (tramp-dissect-file-name): Raise an error when hostname is a
16411 method name, and neither method nor user is specified.
16412
16413 * net/trampver.el: Update release number.
16414
16415 2013-03-18 Leo Liu <sdl.web@gmail.com>
16416
16417 Make sure eldoc can be turned off properly.
16418 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
16419 eldoc-mode.
16420 (eldoc-display-message-p): Revert last change.
16421 (eldoc-display-message-no-interference-p)
16422 (eldoc-print-current-symbol-info): Tweak.
16423
16424 2013-03-18 Tassilo Horn <tsdh@gnu.org>
16425
16426 * doc-view.el (doc-view-new-window-function): Check the new window
16427 overlay's display property instead the char property of the
16428 buffer's first char. Use `with-selected-window' instead of
16429 `save-window-excursion' with `select-window'.
16430 (doc-view-document->bitmap): Check the current doc-view overlay's
16431 display property instead the char property of the buffer's first char.
16432
16433 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16434
16435 Automate the build of ja-dic.el (Bug#13984).
16436 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
16437 from the input, rather than assume that it's been done for us by the
16438 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
16439 the current date into a ja-dic.el comment, as that complicates
16440 regression testing.
16441
16442 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
16443
16444 * whitespace.el: Fix double evaluation.
16445 (whitespace-space, whitespace-hspace, whitespace-tab)
16446 (whitespace-newline, whitespace-trailing, whitespace-line)
16447 (whitespace-space-before-tab, whitespace-indentation)
16448 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
16449 obsolete defvars.
16450 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
16451 (whitespace-color-on): Use a single font-lock-add-keywords call.
16452 Fix double-evaluation of face variables.
16453
16454 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
16455
16456 * net/tramp-adb.el (tramp-adb-parse-device-names):
16457 Use `start-process' instead of `call-process'. Otherwise, the
16458 function might be blocked under MS Windows. (Bug#13299)
16459
16460 2013-03-17 Leo Liu <sdl.web@gmail.com>
16461
16462 Extend eldoc to display info in the mode-line. (Bug#13978)
16463 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
16464 (eldoc-mode-line-string): New variable.
16465 (eldoc-minibuffer-message): New function.
16466 (eldoc-message-function): New variable.
16467 (eldoc-message): Use it.
16468 (eldoc-display-message-p)
16469 (eldoc-display-message-no-interference-p):
16470 Support eldoc-post-insert-mode.
16471
16472 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
16473 (eval-expression): Run it.
16474
16475 2013-03-17 Roland Winkler <winkler@gnu.org>
16476
16477 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
16478 strings in the list of return values.
16479
16480 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
16481
16482 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
16483 radix before checking for HMS forms.
16484
16485 2013-03-16 Leo Liu <sdl.web@gmail.com>
16486
16487 * progmodes/scheme.el: Add indentation and font-locking for λ.
16488 (Bug#13975)
16489
16490 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
16491
16492 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
16493 token before point (bug#13942).
16494
16495 2013-03-16 Leo Liu <sdl.web@gmail.com>
16496
16497 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
16498
16499 2013-03-16 Eli Zaretskii <eliz@gnu.org>
16500
16501 * startup.el (command-line-normalize-file-name): Fix handling of
16502 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
16503 <xfq.free@gmail.com> in
16504 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
16505
16506 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
16507
16508 Sync with Tramp 2.2.7.
16509
16510 * net/trampver.el: Update release number.
16511
16512 2013-03-14 Tassilo Horn <tsdh@gnu.org>
16513
16514 * doc-view.el: Fix bug#13887.
16515 (doc-view-insert-image): Don't modify overlay associated to
16516 non-live windows, and implement horizontal centering of image in
16517 case it's smaller than the window.
16518 (doc-view-new-window-function): Force redisplay of new windows on
16519 doc-view buffers.
16520
16521 2013-03-13 Karl Fogel <kfogel@red-bean.com>
16522
16523 * saveplace.el (save-place-alist-to-file): Don't sort
16524 `save-place-alist', just pretty-print it (bug#13882).
16525
16526 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
16527
16528 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
16529 Check whether `default-file-name-coding-system' is bound.
16530 It isn't in XEmacs.
16531
16532 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
16533
16534 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
16535 backquotes for `obsolete' (bug#13929).
16536
16537 * international/mule.el (find-auto-coding): Include file name in
16538 obsolescence warning (bug#13922).
16539
16540 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
16541
16542 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
16543 for CFEngine 3-specific indentation.
16544 (cfengine3-indent-line): Use it. Fix up category regex.
16545 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
16546
16547 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16548
16549 * type-break.el (type-break-file-name):
16550 * textmodes/remember.el (remember-data-file):
16551 * strokes.el (strokes-file):
16552 * shadowfile.el (shadow-initialize):
16553 * saveplace.el (save-place-file):
16554 * ps-bdf.el (bdf-cache-file):
16555 * progmodes/idlwave.el (idlwave-config-directory):
16556 * net/quickurl.el (quickurl-url-file):
16557 * international/kkc.el (kkc-init-file-name):
16558 * ido.el (ido-save-directory-list-file):
16559 * emulation/viper.el (viper-custom-file-name):
16560 * emulation/vip.el (vip-startup-file):
16561 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
16562 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
16563
16564 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
16565
16566 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
16567 * language/thai-word.el: Switch to UTF-8.
16568
16569 See ChangeLog.16 for earlier changes.
16570
16571 ;; Local Variables:
16572 ;; coding: utf-8
16573 ;; End:
16574
16575 Copyright (C) 2011-2014 Free Software Foundation, Inc.
16576
16577 This file is part of GNU Emacs.
16578
16579 GNU Emacs is free software: you can redistribute it and/or modify
16580 it under the terms of the GNU General Public License as published by
16581 the Free Software Foundation, either version 3 of the License, or
16582 (at your option) any later version.
16583
16584 GNU Emacs is distributed in the hope that it will be useful,
16585 but WITHOUT ANY WARRANTY; without even the implied warranty of
16586 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16587 GNU General Public License for more details.
16588
16589 You should have received a copy of the GNU General Public License
16590 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.