Simplify and parallize test/automated Makefile
[bpt/emacs.git] / lisp / ChangeLog
1 2014-06-26 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp/ert.el (ert-summarize-tests-batch-and-exit): New.
4
5 2014-06-25 Glenn Morris <rgm@gnu.org>
6
7 * Makefile.in ($(lisp)/progmodes/cc-defs.elc)
8 ($(lisp)/progmodes/cc-fonts.elc, $(lisp)/progmodes/cc-langs.elc)
9 ($(lisp)/progmodes/cc-vars.elc): Drop hand-written deps on non-cc
10 files. They are not relevant to the original issue (bug#1004),
11 and cause unnecessary recompilation (bug#2151).
12
13 2014-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
14
15 * play/landmark.el: Use lexical-binding and avoid `intangible'.
16 (landmark--last-pos): New var.
17 (landmark--intangible-chars): New const.
18 (landmark--intangible): New function.
19 (landmark-mode, landmark-move): Use it.
20 (landmark-mode): Remove properties.
21 (landmark-plot-square, landmark-point-square, landmark-goto-xy)
22 (landmark-cross-qtuple):
23 Don't worry about `intangible' any more.
24 (landmark-click, landmark-point-y): Same; and don't assume point-min==1.
25 (landmark-init-display): Don't set `intangible' and `point-entered'.
26 (square): Remove. Inline it instead.
27 (landmark--distance): Rename from `distance'.
28 (landmark-calc-distance-of-robot-from): Rename from
29 calc-distance-of-robot-from.
30 (landmark-calc-smell-internal): Rename from calc-smell-internal.
31
32 2014-06-25 Dmitry Antipov <dmantipov@yandex.ru>
33
34 * files.el (dir-locals-find-file, file-relative-name):
35 * info.el (Info-complete-menu-item):
36 * minibuffer.el (completion-table-subvert): Prefer string-prefix-p
37 to compare-strings to avoid out-of-range errors.
38 * subr.el (string-prefix-p): Adjust to match strict range
39 checking in compare-strings.
40
41 2014-06-24 Leonard Randall <leonard.a.randall@gmail.com> (tiny change)
42
43 * textmodes/reftex-parse.el (reftex-using-biblatex-p): Make search
44 for comment lines non-greedy and stopping at newlines to fix stack
45 overflows with large files.
46
47 2014-06-24 Eli Barzilay <eli@barzilay.org>
48
49 * calculator.el (calculator-last-input): Drop 'ascii-character property
50 lookup.
51
52 2014-06-24 Leo Liu <sdl.web@gmail.com>
53
54 * align.el (align-adjust-col-for-rule): Unbreak due to defaulting
55 tab-stop-list to nil. (Bug#16381)
56
57 * indent.el (indent-next-tab-stop): Rename from indent--next-tab-stop.
58 (indent-rigidly-left-to-tab-stop)
59 (indent-rigidly-right-to-tab-stop, tab-to-tab-stop)
60 (move-to-tab-stop): Change callers.
61
62 2014-06-24 Eli Zaretskii <eliz@gnu.org>
63
64 * skeleton.el (skeleton-insert): Yet another fix of the doc string
65 wrt behavior of \n as the first/last element of a skeleton.
66
67 2014-06-24 Michael Albinus <michael.albinus@gmx.de>
68
69 * net/tramp-adb.el (tramp-adb-handle-process-file):
70 * net/tramp-sh.el (tramp-sh-handle-process-file):
71 * net/tramp-smb.el (tramp-smb-handle-process-file): Do not raise
72 the output buffer when DISPLAY is non-nil. (Bug#17815)
73
74 2014-06-24 Glenn Morris <rgm@gnu.org>
75
76 * play/landmark.el (landmark-move-down, landmark-move-up):
77 Fix 2007-10-20 change - preserve horizontal position.
78
79 2014-06-23 Sam Steingold <sds@gnu.org>
80
81 * simple.el (kill-append): Remove undo boundary depending on ...
82 (kill-append-merge-undo): New user option.
83
84 2014-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
85
86 * simple.el (handle-shift-selection, exchange-point-and-mark)
87 (activate-mark): Set transient-mark-mode buffer-locally (bug#6316).
88 (transient-mark-mode): Use&set the global value.
89 * mouse.el (mouse-set-region-1, mouse-drag-track): Idem.
90 * emulation/edt.el (edt-emulation-off): Save&restore the global
91 transient-mark-mode setting.
92 * obsolete/pc-select.el (pc-selection-mode): Use the
93 transient-mark-mode function.
94
95 2014-06-23 Eli Zaretskii <eliz@gnu.org>
96
97 * international/fontset.el (script-representative-chars):
98 Add representative characters for scripts added in Unicode 7.0.
99 (otf-script-alist): Synchronize with the latest registry of OTF
100 script tags.
101
102 * international/characters.el (char-script-table): Update for
103 scripts added and codepoint ranges changed in Unicode 7.0.
104
105 2014-06-23 Eli Barzilay <eli@barzilay.org>
106
107 * calculator.el (calculator-standard-displayer): Fix bug in use of
108 `calculator-groupize-number'.
109 (calculator-funcall): Fix broken `cl-flet' use by moving it into the
110 `eval' code, so it works in v24.3.1 too.
111 (calculator-last-input): Comment to clarify purpose.
112
113 2014-06-22 Mario Lang <mlang@delysid.org>
114
115 * textmodes/rst.el (rst-comment-region): From from -> from.
116
117 * net/tramp-adb.el (tramp-adb-send-command-and-check): And and -> and.
118
119 2013-06-22 Dmitry Antipov <dmantipov@yandex.ru>
120
121 * electric.el (electric-layout-post-self-insert-function):
122 * emacs-lisp/ert.el (ert--insert-infos):
123 * obsolete/vi.el (vi-set-mark):
124 * term.el (term-handle-scroll):
125 * textmodes/bibtex.el (bibtex-fill-field, bibtex-fill-entry):
126 * wid-edit.el (widget-editable-list-value-create):
127 Prefer point-marker to copy-marker of point.
128
129 2014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
130
131 Fix completion retrieval parsing (bug#17209).
132 * progmodes/python.el (python-mode):
133 (python-util-strip-string): New function.
134 (python-shell-completion-get-completions): Use it.
135
136 2014-06-21 Eli Zaretskii <eliz@gnu.org>
137
138 * skeleton.el (skeleton-insert): Fix last change.
139
140 2014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
141
142 Enhancements for outline integration (bug#17796).
143 * progmodes/python.el (python-mode): Properly set
144 outline-heading-end-regexp so that comments after colons for
145 defuns are supported.
146
147 2014-06-21 Eli Zaretskii <eliz@gnu.org>
148
149 * skeleton.el (skeleton-insert): Doc fix.
150
151 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
152
153 * emacs-lisp/smie.el (smie-config--guess): Fix typo.
154 (smie-config-guess): Use smie-config-local so the rules are obeyed
155 (bug#17818).
156
157 * mouse.el (mouse-drag-line): Don't re-add to unread-comment-events,
158 since it's already done inside the loop (bug#17819).
159
160 2014-06-21 Martin Rudalics <rudalics@gmx.at>
161
162 * mouse.el (mouse-drag-line): Re-remove code initially removed
163 on 2013-03-09 and inadvertently reintroduced on 2013-11-30
164 (Bug#17819).
165
166 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
167
168 * progmodes/sh-script.el (sh-smie-sh-rules): For { after &&, don't
169 align with the surrounding parent (bug#17721).
170
171 2014-06-21 Eli Zaretskii <eliz@gnu.org>
172
173 * textmodes/texinfo.el (texinfo-mode): Set skeleton-end-newline
174 locally to nil.
175 (texinfo-insert-block, texinfo-insert-@end)
176 (texinfo-insert-@example, texinfo-insert-@quotation): Adjust to
177 local setting of skeleton-end-newline by adding an explicit \n to
178 the skeletons where appropriate. (Bug#17801)
179
180 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
181
182 * emacs-lisp/smie.el (smie--hanging-eolp-function): New var.
183 (smie-indent--hanging-p): Use it.
184 * progmodes/sh-script.el (sh-set-shell): Set it (bug#17621).
185
186 2014-06-21 Leo Liu <sdl.web@gmail.com>
187
188 * simple.el (read-quoted-char): Don't let help chars pop up help
189 buffer. (Bug#16617)
190
191 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
192
193 * progmodes/sh-script.el (sh-smie-sh-rules): Use same rule for && as
194 for | (bug#17621).
195
196 * xt-mouse.el (xterm-mouse--read-event-sequence-1000):
197 Drop unknown events instead of burping.
198
199 2014-06-21 Eli Zaretskii <eliz@gnu.org>
200
201 * term/w32-win.el (dynamic-library-alist): Support giflib 5.1.0
202 and later. (Bug#17790)
203
204 2014-06-21 Juri Linkov <juri@jurta.org>
205
206 * dired.el (dired-mark-pop-up): Let-bind display-buffer-mark-dedicated
207 to `soft'. (Bug#17554)
208
209 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
210
211 * delsel.el (electric-newline-and-maybe-indent): Mark it as well
212 (bug#17737).
213
214 2014-06-21 Dmitry Gutov <dgutov@yandex.ru>
215
216 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't fontify
217 `!' in `!~' with `font-lock-negation-char-face'. (Bug#17732)
218
219 2014-06-21 Michael Albinus <michael.albinus@gmx.de>
220
221 * net/dbus.el (dbus-call-method): Push only non D-Bus events into
222 `unread-command-events'.
223
224 2014-06-19 William Xu <william.xwl@gmail.com>
225
226 * progmodes/hideif.el (hif-string-to-number): Don't return float for
227 hex integer constants (bug#17807).
228
229 2014-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
230
231 * international/mule-util.el (truncate-string-ellipsis): New var.
232 (truncate-string-to-width): Use it.
233
234 2014-06-19 Robert Brown <robert.brown@gmail.com> (tiny change)
235
236 * emacs-lisp/lisp-mode.el (lisp-string-after-doc-keyword-p): New fun.
237 (lisp-string-in-doc-position-p): New function, extracted from
238 lisp-font-lock-syntactic-face-function.
239 (lisp-font-lock-syntactic-face-function): Use them (bug#9130).
240
241 2014-06-19 Grégoire Jadi <daimrod@gmail.com>
242
243 * net/rcirc.el (rcirc-omit-mode): Fix recenter error. (Bug#17769)
244
245 2014-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
246
247 * play/bubbles.el (bubbles--initialize, bubbles--show-scores)
248 (bubbles--game-over): Don't add `intangible' properties since they
249 didn't work anyway.
250
251 2014-06-18 Juri Linkov <juri@jurta.org>
252
253 * vc/ediff-init.el (ediff-current-diff-Ancestor)
254 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
255 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
256 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
257 Add `min-colors 88' version with removed black/white foregrounds.
258 (Bug#10181)
259
260 2014-06-18 Juri Linkov <juri@jurta.org>
261
262 * vc/diff-mode.el (diff-changed): Empty face definition to use
263 `diff-removed' and `diff-added' on tty as well. (Bug#10181)
264 (diff-context): Use darker color on light background and
265 lighter color on dark background.
266
267 2014-06-18 Juri Linkov <juri@jurta.org>
268
269 * vc/diff-mode.el (diff-refine-changed): Rename from
270 `diff-refine-change' for consistency with `diff-changed'.
271 (diff-refine-change): Add obsolete face alias. (Bug#10181)
272
273 * vc/smerge-mode.el (smerge-refined-changed): Rename from
274 `smerge-refined-change'.
275 (smerge-refined-change): Add obsolete face alias.
276
277 2014-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
278
279 * rect.el (rectangle-preview): New custom.
280 (rectangle): New group.
281 (rectangle--pos-cols): Add `window' argument.
282 (rectangle--string-preview-state, rectangle--string-preview-window):
283 New vars.
284 (rectangle--string-flush-preview, rectangle--string-erase-preview)
285 (rectangle--space-to, rectangle--string-preview): New functions.
286 (string-rectangle): Use them.
287 (rectangle--inhibit-region-highlight): New var.
288 (rectangle--highlight-for-redisplay): Obey it. Make sure
289 `apply-on-region' uses the point-crutches of the right window.
290 Use :align-to rather than multiple spaces.
291
292 2014-06-16 Andrea Rossetti <andrea.rossetti@gmail.com> (tiny change)
293
294 * ruler-mode.el (ruler-mode-window-col)
295 (ruler-mode-mouse-set-left-margin)
296 (ruler-mode-mouse-set-right-margin): Fix calculation of column
297 from mouse position (Bug#17768).
298
299 2014-06-16 Ron Schnell <ronnie@driver-aces.com>
300
301 * play/dunnet.el (dun-doassign): Fix bug where UNIX variable assignment
302 without varname or rhs causes crash.
303 (dun-ftp): Fix bug where blank ftp password is allowed, making it
304 impossible to win endgame.
305 (dun-unix-verbs): Add ssh as alias to rlogin, because nobody knows what
306 rlogin is anymore.
307 (dun-help): Bump version number; update contact info.
308
309 2014-06-15 Eli Barzilay <eli@barzilay.org>
310
311 * calculator.el (calculator-prompt, calculator-remove-zeros)
312 (calculator-mode-hook, calculator-operators, calculator-stack)
313 (calculator-mode): Tweak docstring.
314 (calculator-user-operators): Tweak docstring, fix a bug in the last
315 example.
316 (calculator-displayer): `std' case has an optional boolean.
317 (calculator-displayers): Use the new boolean to group in decimal mode.
318 (calculator-mode-map, calculator, calculator-message)
319 (calculator-op-arity, calculator-add-operators)
320 (calculator-string-to-number, calculator-displayer-prev)
321 (calculator-displayer-next, calculator-remove-zeros)
322 (calculator-eng-display, calculator-number-to-string)
323 (calculator-update-display, calculator-last-input)
324 (calculator-clear-fragile, calculator-digit, calculator-decimal)
325 (calculator-exp, calculator-saved-move, calculator-clear)
326 (calculator-copy, calculator-put-value, calculator-help)
327 (calculator-expt, calculator-truncate): Minor code improvements.
328 (calculator-need-3-lines): New function pulling out code from
329 `calculator'.
330 (calculator-get-display): Rename from `calculator-get-prompt', and
331 improved.
332 (calculator-push-curnum): Rename from `calculator-curnum-value', and
333 extended for all uses of it. All callers changed.
334 (calculator-groupize-number): New utility for splitting a number into
335 groups.
336 (calculator-standard-displayer): Improve code, new optional argument to
337 use comma-split groups, make second argument optional too to use with
338 'left/'right inputs. All callers changed.
339 (calculator-reduce-stack-once): New utility, doing the meat of what
340 `calculator-reduce-stack' used to do, much improved (mostly using
341 `pcase' for conciseness and clarity).
342 (calculator-reduce-stack): Now doing just the reduction loop using
343 `calculator-reduce-stack-once'.
344 (calculator-funcall): Improve code, make it work in v24.3.1 too.
345 (calculator-last-input): Improve code, remove some old cruft.
346 (calculator-quit): Kill `calculator-buffer' in electric mode too.
347 (calculator-integer-p): Remove.
348 (calculator-fact): Improve code, make it work on non-integer values
349 too (using truncated numbers).
350
351 2014-06-15 Michael Albinus <michael.albinus@gmx.de>
352
353 Sync with Tramp 2.2.10.
354
355 * net/tramp.el (tramp-methods): Tweak docstring.
356 (tramp-handle-file-accessible-directory-p): Check for
357 `file-readable-p' instead of `file-executable-p'.
358 (tramp-check-cached-permissions):
359 Use `tramp-compat-file-attributes'.
360 (tramp-call-process): Add new argument VEC. Adapt callees in all
361 tramp*.el files.
362
363 * net/tramp-adb.el (tramp-adb-handle-write-region): Improve messages.
364 (tramp-adb-maybe-open-connection): Don't set
365 `tramp-current-*' variables.
366
367 * net/tramp-cache.el (tramp-flush-file-function): Do not flush
368 file properties of temporary buffers.
369
370 * net/tramp-ftp.el (top): Remove special handling for URL syntax.
371
372 * net/tramp-gvfs.el (tramp-gvfs-methods) <sftp>: Add.
373 (tramp-gvfs-handle-delete-file): Flush file
374 properties, not directory properties.
375 (tramp-gvfs-handle-file-attributes): Use `string-to-number' when
376 reading "unix::mode".
377 (tramp-gvfs-handle-file-name-all-completions):
378 Use "-h" option for "gvfs-ls".
379 (tramp-gvfs-url-file-name): `user' and `localname' could be nil.
380 (tramp-gvfs-send-command): Simplify traces.
381
382 * net/tramp-sh.el (vc-handled-backends, vc-bzr-program)
383 (vc-git-program, vc-hg-program): Declare.
384 (tramp-methods) <sftp>: Remove. It has never worked satisfactorily.
385 (tramp-methods) <nc>: Add new method.
386 (tramp-methods) <telnet>: Redirect stderr to "/dev/null".
387 (tramp-methods) <plink, plinkx, pscp, psftp>: Improve
388 `tramp-login-args'.
389 (tramp-default-user-alist): Add "nc".
390 (top): Remove completion function for "sftp". Add completion
391 functions for "nc" and "psftp".
392 (tramp-do-copy-or-rename-file-out-of-band): Tweak docstring.
393 Implement support for "nc" method.
394 (tramp-sh-handle-expand-file-name, tramp-local-coding-commands)
395 (tramp-remote-coding-commands, tramp-call-local-coding-command):
396 Tweak docstring.
397 (tramp-sh-handle-write-region): Tweak error message.
398 (tramp-sh-handle-vc-registered): Remove backends when the remote
399 binary does not exist.
400 (tramp-find-inline-encoding): Do not raise an error.
401 (tramp-make-copy-program-file-name): Tweak docstring. Handle also
402 the "nc" case. Quote result also locally.
403
404 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
405 (tramp-smb-handle-set-file-acl): Use `start-process'.
406 (tramp-smb-handle-insert-directory): Use progress reporter.
407 (tramp-smb-handle-rename-file): Flush also file properties of
408 FILENAME.
409
410 * net/trampver.el: Update release number.
411
412 2014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
413
414 * ses.el: Miscellaneous cleanups; use lexical-binding; avoid
415 add-to-list.
416 (ses-localvars): Remove ses--local-printer-list, unused.
417 (ses--metaprogramming): New macro. Use it to defvar variables.
418 (ses-set-localvars): Simplify.
419 (ses--locprn, ses-cell): Use defstruct. Change ses-cell's
420 property-list into an alist.
421 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
422 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number):
423 Remove; use defstruct accessors/setters instead.
424 (ses-cell-formula-aset, ses-cell-printer-aset)
425 (ses-cell-references-aset): Remove, use setf instead.
426 (ses--alist-get): New function.
427 (ses-cell-property): Rename from ses-cell-property-get and rewrite.
428 Use an alist instead of a plist and don't do move-to-front since the
429 list is always short.
430 (ses-cell-property-get-fun, ses-cell-property-delq-fun)
431 (ses-cell-property-set-fun, ses-cell-property-set)
432 (ses-cell-property-pop-fun, ses-cell-property-get-handle)
433 (ses-cell-property-handle-car, ses-cell-property-handle-setcar): Remove.
434 (ses--letref): New macro.
435 (ses-cell-property-pop): Rewrite.
436 (ses--cell): Rename from ses-cell and make it into a function.
437 Make `formula' fallback on `value' if nil.
438 (ses--local-printer): Rename from ses-local-printer and make it into
439 a function.
440 (ses-set-cell): Turn it into a macro so finding the accessor from the
441 field name is done at compile time.
442 (ses-repair-cell-reference-all): Test presence of `sym' rather than
443 `ref' before adding `sym' to :ses-repair-reference.
444 (ses-calculate-cell): Use ses--letref rather than
445 ses-cell-property-get-handle.
446 (ses-write-cells): Use a single prin1-to-string.
447 (ses-setter-with-undo): New function.
448 (ses-aset-with-undo, ses-set-with-undo): Rewrite using it.
449 (ses-unset-with-undo): Remove.
450 (ses-load): Prefer apply' over `eval'.
451 (ses-read-printer, ses-set-column-width): Use standard "(default
452 foo)" format.
453
454 2014-06-15 Glenn Morris <rgm@gnu.org>
455
456 * Makefile.in (leim, semantic): Use `make -C' rather than `cd && make'.
457
458 * progmodes/cc-langs.el: Require cl-lib. (Bug#17463)
459 Replace delete-duplicates and mapcan by cl- versions throughout.
460 And cl-macroexpand-all by macroexpand-all.
461 (delete-duplicates, mapcan, cl-macroexpand-all): No need to declare.
462
463 2014-06-15 Eli Zaretskii <eliz@gnu.org>
464
465 * subr.el (posn-col-row): Doc fix. (Bug#17768)
466
467 2014-06-15 Juri Linkov <juri@jurta.org>
468
469 * bindings.el: Put `ascii-character' property on keypad keys
470 mapped to characters. (Bug#17759)
471
472 2014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
473
474 * emacs-lisp/smie.el (smie-next-sexp): Fix up "other-end" info when
475 bumping forward into a closing paren (bug#17761).
476
477 * term/xterm.el (xterm--version-handler): Work around for OSX
478 Terminal.app (bug#17607).
479
480 2014-06-14 Ron Schnell <ronnie@driver-aces.com>
481
482 * play/dunnet.el (dun-describe-room, dun-mode):
483 If a lamp is in the room, you won't be eaten by a grue.
484
485 2014-06-13 Glenn Morris <rgm@gnu.org>
486
487 * Makefile.in ($(lisp)/cus-load.el, $(lisp)/finder-inf.el)
488 (autoloads, $(lisp)/subdirs.el, compile-main, leim, semantic, compile)
489 (compile-always): GNU make automatically passes
490 command-line arguments to sub-makes.
491
492 * calendar/calendar.el (calendar-generate-window):
493 Remove pointless call to font-lock-fontify-buffer.
494
495 2014-06-13 Matthias Meulien <orontee@gmail.com>
496
497 * simple.el (completion-list-mode-map): Navigate with tab and backtab
498 (bug#17767).
499
500 2014-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
501
502 * simple.el (set-mark-command): Simplify a bit.
503
504 2014-06-12 Nicolas Richard <theonewiththeevillook@yahoo.fr>
505
506 * help.el (help--key-binding-keymap): New function.
507 (help--binding-locus): New function.
508 (describe-key): Mention the keymap in which the binding was
509 found. (bug#13948)
510
511 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
512
513 * hippie-exp.el (he--all-buffers): New function.
514 (try-expand-line-all-buffers, try-expand-list-all-buffers)
515 (try-expand-dabbrev-all-buffers): Use it.
516
517 2014-06-12 Emilio C. Lopes <eclig@gmx.net>
518
519 * hippie-exp.el (try-expand-line-all-buffers)
520 (try-expand-list-all-buffers, try-expand-dabbrev-all-buffers):
521 Read hippie-expand-only-buffers and hippie-expand-ignore-buffers in the
522 original buffer, in case they're buffer-local.
523
524 2014-06-12 Vincent Belaïche <vincentb1@users.sourceforge.net>
525
526 * ses.el (ses-initial-global-parameters-re): New defconst, a
527 specific regexp is needed now that ses.el can handle both
528 file-format 2 --- ie. no local printers --- and 3 --- i.e. may have
529 local printers.
530 (ses-localvars): Add local variables needed for local printer handling.
531 (ses-set-localvars): Handle hashmap initialisation.
532 (ses-paramlines-plist): Add param-line for number of local printers.
533 (ses-paramfmt-plist): New defconst, needed for code factorization
534 between functions `ses-set-parameter' and
535 `ses-file-format-extend-paramter-list'
536 (ses-make-local-printer-info): New defsubst.
537 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
538 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number)
539 (ses-cell-printer-aset): New defmacro.
540 (ses-local-printer-compile): New defun.
541 (ses-local-printer): New defmacro.
542 (ses-printer-validate, ses-call-printer): Add support for local
543 printer functions.
544 (ses-file-format-extend-paramter-list): New defun.
545 (ses-set-parameter): Use const `ses-paramfmt-plist' for code
546 factorization.
547 (ses-load): Add support for local printer functions.
548 (ses-read-printer): Update docstring and add support for local printer
549 functions.
550 (ses-refresh-local-printer, ses-define-local-printer): New defun.
551 (ses-safe-printer): Add support for local printer functions.
552
553 2014-06-12 Ivan Andrus <darthandrus@gmail.com>
554
555 * ffap.el (ffap-lax-url): New var (bug#17723).
556 (ffap-url-at-point): Use it.
557 (ffap-file-at-point): Avoid returning just "/".
558
559 2014-06-12 Matthias Meulien <orontee@gmail.com>
560
561 * progmodes/python.el (import skeleton): New skeleton (bug#17672).
562 (python-mode-map): Bind it.
563
564 * progmodes/python.el (class skeleton): Don't erase last char of class
565 name (bug#17683).
566
567 2014-06-12 Cameron Desautels <camdez@gmail.com> (tiny change)
568
569 * help.el (where-is): Use `default' arg of completing-read (bug#17705).
570
571 2014-06-12 Kevin Ryde <user42_kevin@yahoo.com.au>
572
573 * files.el (auto-mode-alist): Map .ad files to xdefaults-mode
574 (bug#17745).
575
576 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
577
578 * international/mule-cmds.el: Use lexical-binding.
579 (ucs-names): Simplify.
580
581 2014-05-18 Eric Hanchrow <eric.hanchrow@gmail.com>
582
583 * progmodes/python.el (run-python): Use read-shell-command.
584
585 2014-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
586
587 * rect.el: Make it possible to move bounds past EOL or into TABs.
588 (operate-on-rectangle): Use apply-on-rectangle.
589 (rectangle--mark-crutches): New var.
590 (rectangle--pos-cols, rectangle--col-pos, rectangle--point-col)
591 (rectangle--crutches, rectangle--reset-crutches): New functions.
592 (apply-on-rectangle): Obey crutches. Avoid setq.
593 Fix missing final iteration if end is at EOB&BOL.
594 (rectangle-mark-mode-map): Add remap bindings for
595 exchange-point-and-mark and char/line movements.
596 (rectangle--*-char): New function.
597 (rectangle-exchange-point-and-mark, rectangle-right-char)
598 (rectangle-left-char, rectangle-forward-char)
599 (rectangle-backward-char, rectangle-next-line)
600 (rectangle-previous-line): New commands.
601 (rectangle--place-cursor): New function.
602 (rectangle--highlight-for-redisplay): Use it. Use apply-on-rectangle.
603
604 2014-06-08 Glenn Morris <rgm@gnu.org>
605
606 * startup.el (initial-buffer-choice): Doc fix.
607 Reset :version (adding an option does not merit a :version bump).
608
609 * bookmark.el (bookmark-load):
610 * uniquify.el (uniquify-buffer-name-style): Doc fixes.
611
612 2014-06-08 Juri Linkov <juri@jurta.org>
613
614 * desktop.el: Activate auto-saving on window configuration changes.
615 (desktop-save-mode, desktop-auto-save-timeout): Add/remove
616 `desktop-auto-save-set-timer' to/from
617 `window-configuration-change-hook'.
618 (desktop-auto-save-set-timer): Change REPEAT arg of
619 `run-with-idle-timer' from t to nil.
620 http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00147.html
621
622 2014-06-08 Santiago Payà i Miralta <santiagopim@gmail.com>
623
624 * vc/vc-hg.el (vc-hg-working-revision): Use "hg parent" and
625 vc-hg-command (bug#17570).
626
627 2014-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
628
629 * international/mule-cmds.el (ucs-names): Add special entry for BEL
630 (bug#17702).
631
632 2014-06-08 Glenn Morris <rgm@gnu.org>
633
634 * startup.el (window-setup-hook): Doc fix.
635
636 * emacs-lisp/package.el (package-check-signature)
637 (package-unsigned-archives): Doc fixes.
638
639 2014-06-08 Martin Rudalics <rudalics@gmx.at>
640
641 * window.el (display-buffer-use-some-window): Don't make window
642 used smaller than it was before (Bug#17671).
643
644 2014-06-08 Eli Zaretskii <eliz@gnu.org>
645
646 * menu-bar.el (menu-bar-open): Fix last change: use the PC
647 'redisplay' instead of '(sit-for 0)'.
648
649 2014-06-08 Michael Albinus <michael.albinus@gmx.de>
650
651 * net/tramp.el (tramp-ssh-controlmaster-options):
652 Improve search regexp. (Bug#17653)
653
654 2014-06-08 Glenn Morris <rgm@gnu.org>
655
656 * emacs-lisp/package.el (package-pinned-packages): Doc fix.
657
658 2014-06-08 Eli Zaretskii <eliz@gnu.org>
659
660 * menu-bar.el (menu-bar-open): Fix invocation via M-x.
661
662 2014-06-06 Santiago Payà i Miralta <santiagopim@gmail.com>
663
664 * vc/vc-hg.el (vc-hg-create-tag, vc-hg-retrieve-tag): New functions
665 (bug#17586).
666
667 * vc/vc-hg.el (vc-hg-log-graph): New var.
668 (vc-hg-print-log): Use it.
669 (vc-hg-root-log-format): Include branch name and bookmarks; ignore
670 graph output (bug#17515).
671
672 2014-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
673
674 * mouse.el (mouse-posn-property): Ignore buffer position info when the
675 even happened elsewhere.
676
677 2014-06-06 Mario Lang <mlang@delysid.org>
678
679 * emacs-lisp/tabulated-list.el (tabulated-list-print): Only call
680 `recenter' if `current-buffer' is equal to `window-buffer'.
681
682 2014-06-05 Leo Liu <sdl.web@gmail.com>
683
684 * emacs-lisp/cl-macs.el (cl-macrolet): Avoid excessive progn's.
685
686 2014-06-05 Michal Nazarewicz <mina86@mina86.com>
687
688 * textmodes/tildify.el (tildify-foreach-region-outside-env):
689 New function which calls a callback on portions of the buffer that are
690 outside of ignored environments.
691 (tildify-build-regexp): Remove function since it is now
692 incorporated in `tildify-foreach-region-outside-env' where it is
693 optimised and simplified by the use of `mapconcat'.
694 (tildify-tildify): Return number of substitutions made so that…
695 (tildify-count): …can be removed.
696 (tildify-find-env): Accept a new PAIRS argument which was
697 previously looked up in `tildify-ignored-environments-alist' each
698 time the function was called. With this change, the lookup is
699 performed only once in `tildify-foreach-region-outside-env'.
700 (tildify-region): Greatly simplify the function since now most of
701 the work is done by `tildify-foreach-region-outside-env'.
702 (tildify-mode-alist): Simplify slightly by avoiding if and setq
703 and instead using or.
704
705 * textmodes/tildify.el (tildify-ignored-environments-alist):
706 Optimise environments regexes
707
708 Each time beginning of an environment to ignore is found,
709 `tildify-find-env' needs to identify regexp for the ending
710 of the environment. This is done by trying all the opening
711 regexes on matched text in a loop, so to speed that up, this
712 loop should have fewer things to match, which can be done by
713 using alternatives in the opening regexes.
714
715 Coincidentally, this should make matching of the opening
716 regexp faster as well thanks to the use of `regexp-opt' and
717 having common prefix pulled from many regexes.
718
719 * textmodes/tildify.el (tildify-string-alist)
720 (tildify-ignored-environments-alist): Add `nxml-mode' to the list
721 of supported modes since `xml-mode' is no longer a thing but just
722 an alias to the former. Also include comments and insides of tags
723 in `tildify-ignored-environments-alist' for XML modes. Finally,
724 since XML does not define “&nbsp;”[1], use a numeric reference for
725 a no-break space (namely “&#160;”)
726
727 [1] XML specification defines only a handful of predefined entities.
728 The list is at <http://www.w3.org/TR/REC-xml/#sec-predefined-ent>
729 and includes only &lt;, &gt;, &amp;, &apos; and &quot; (meaning <,
730 >, &, ' and " respectively). This is in contrast to HTML and even
731 XHTML which defined a whole bunch of entities including “&nbsp;”.
732
733 * textmodes/tildify.el (tildify-pattern-alist)
734 (tildify-string-alist, tildify-ignored-environments-alist):
735 Improve defcustom's types by adding more tags explaining what each
736 value means and replace “sexp” used in
737 `tildify-ignored-environments-alist' with a full type declaration.
738
739 * textmodes/tildify.el (tildify-find-env): Fix matched group
740 indexes in end-regex building
741
742 When looking for a start of an ignore-environment, the regex is built
743 by concatenating regexes of all the environments configured in
744 `tildify-ignored-environments-alist'. So for example, the following
745 list could be used to match TeX's \verb and \verb* commands:
746
747 (("\\\\verb\\(.\\)" . (1))
748 ("\\\\verb\\*\\(.\\)" . (1)))
749
750 This would result in the following regex being used to find the start
751 of any of the variants of the \verb command:
752
753 \\\\verb\\(.\\)\\|\\\\verb\\*\\(.\\)
754
755 But now, if “\\\\verb\\*\\(.\\)” matches, the first capture group
756 won't match anything, and thus (match-string 1) will be nil, which
757 will cause building of the end-matching regex to fail.
758
759 Fix this by using capture groups from the time when the opening
760 regexes are matched individually.
761
762 * textmodes/tildify.el (tildify-find-env): Fix end-regex building
763 in `tildify-find-env'
764
765 The `tildify-ignored-environments-alist' allows the end-regex to
766 be provided not as a static string but mix of strings and indexes
767 of groups matched the begin-regex. For example, the “\verb!…!”
768 TeX-command (where “!” is an arbitrary character) is handled
769 using:
770
771 ("\\\\verb\\*?\\(.\\)" . (1))
772
773 In the same way, the following should be supported as well:
774
775 ("open-\\(.\\)" . ("end-" 1))
776
777 However the tildify-find-env function fails at
778
779 (concat result
780 (if (stringp (setq aux (car expression)))
781 expression ; BUG: expression is a list
782 (regexp-quote (match-string aux))))
783
784 where the string part is handled incorrectly.
785
786 The most trivial fix would be to replace `expression' in the
787 true-part of the if-statement with `aux', but instead, this commit
788 optimises `tildify-find-env' by changing it to use `mapconcat'
789 rather than open-coded while-loop.
790
791 2014-06-05 Mario Lang <mlang@delysid.org>
792
793 * woman.el (woman-mapcan): Remove.
794 (woman-parse-colon-path): Use cl-mapcan instead.
795
796 2014-06-03 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
797
798 * register.el: Add link to Emacs manual in Commentary.
799
800 2014-06-02 Sam Steingold <sds@gnu.org>
801
802 * menu-bar.el (lookup-key-ignore-too-long): Extract from...
803 (popup-menu): ...here.
804 (menu-bar-open): Use it to avoid an error when `lookup-key'
805 returns a number.
806
807 2014-06-02 Michael Albinus <michael.albinus@gmx.de>
808
809 * net/tramp.el (tramp-call-process): Add traces.
810 (tramp-handle-unhandled-file-name-directory): Return "/".
811
812 2014-06-02 Wilson Snyder <wsnyder@wsnyder.org>
813
814 Sync with upstream verilog-mode revision 3cd8144.
815 * progmodes/verilog-mode.el (verilog-mode-version): Bump.
816 (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
817 (verilog-type-font-keywords): Add nor.
818 (verilog-batch-execute-func): Force reading of Local Variables.
819 Fix printing "no changes to be saved" with verilog-batch.
820 (verilog-auto-arg-ports): Doc fix.
821 Add verilog-auto-arg-format to support newlines in AUTOARG.
822 (verilog-auto-arg): Doc fix.
823
824 2014-06-02 Glenn Morris <rgm@gnu.org>
825
826 * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
827 * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
828 * emulation/ws-mode.el: Move to obsolete/.
829 * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
830
831 2014-06-02 Eli Zaretskii <eliz@gnu.org>
832
833 * simple.el (keyboard-quit): Force update of mode lines, to remove
834 the "Def" indicator, if we were defining a macro. (Bug#17615)
835
836 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
837
838 * minibuffer.el (minibuffer-force-complete-and-exit):
839 Obey minibuffer-default (bug#17545).
840
841 * progmodes/js.el (js-indent-line): Don't mix columns and chars
842 (bug#17619).
843
844 * subr.el (set-transient-map): Don't wait for some "nested"
845 transient-map to finish if we're only supposed to be active for
846 the next command (bug#17642).
847
848 2014-06-02 Leo Liu <sdl.web@gmail.com>
849
850 * emacs-lisp/gv.el (window-buffer, window-display-table)
851 (window-dedicated-p, window-hscroll, window-point, window-start):
852 Fix gv-expander. (Bug#17630)
853
854 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
855
856 * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
857 clicks (bug#17633).
858
859 * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
860 for the single comma, since ", " is *very* common in normal French text
861 (bug#17643).
862
863 2014-06-02 Glenn Morris <rgm@gnu.org>
864
865 * emacs-lisp/package.el (package-check-signature)
866 (package-unsigned-archives): Fix :version.
867
868 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
869
870 * subr.el (sit-for): Don't run input-methods (bug#15614).
871
872 2014-06-02 Glenn Morris <rgm@gnu.org>
873
874 * cus-start.el: Fix some :version numbers.
875
876 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
877
878 * simple.el (deactivate-mark): Set mark-active to nil even if
879 deactivation is done via setting transient-mark-mode to nil,
880 since one is buffer-local and the other is global.
881
882 * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
883 there can't be more than 2 arguments (bug#17584).
884
885 2014-06-02 Glenn Morris <rgm@gnu.org>
886
887 * simple.el (filter-buffer-substring-functions)
888 (filter-buffer-substring-function, buffer-substring-filters)
889 (filter-buffer-substring, buffer-substring--filter): Doc fixes.
890
891 * minibuffer.el (completion-in-region-functions, completion-in-region)
892 (completion--in-region): Doc fixes.
893
894 * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
895 (expand-abbrev, abbrev--default-expand): Doc fixes.
896
897 2014-06-02 Paul Eggert <eggert@cs.ucla.edu>
898
899 Include sources used to create macuvs.h.
900 * international/README: Refer to the Unicode Terms of Use rather
901 than copying it bodily here, as that simplifies maintenance.
902
903 2014-06-01 Glenn Morris <rgm@gnu.org>
904
905 * loadup.el (load-prefer-newer): Set non-nil when dumping. (Bug#17629)
906
907 2014-05-31 Glenn Morris <rgm@gnu.org>
908
909 * files.el (locate-dominating-file): Expand file argument. (Bug#17641)
910
911 2014-05-30 Glenn Morris <rgm@gnu.org>
912
913 * loadup.el: Treat `command-line-args' more flexibly.
914
915 2014-05-30 Alan Mackenzie <acm@muc.de>
916
917 Guard (looking-at "\\s!") from XEmacs.
918 * progmodes/cc-engine.el (c-state-pp-to-literal): add guard form.
919
920 2014-05-30 Ken Olum <kdo@cosmos.phy.tufts.edu> (tiny change)
921
922 * mail/rmail.el (rmail-delete-forward, rmail-delete-backward):
923 The argument COUNT is now optional, to be more backward-compatible.
924 Doc fix. (Bug#17560)
925
926 2014-05-29 Reuben Thomas <rrt@sc3d.org>
927
928 * whitespace.el (whitespace-report-region):
929 Simplify documentation.
930 (whitespace-report-region): Allow report-if-bogus to take the
931 value `never', for non-interactive use.
932 (whitespace-report): Refer to whitespace-report-region's
933 documentation.
934
935 2014-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
936
937 * whitespace.el: Use font-lock-flush. Minimize refontifications.
938 Side benefit: it works without jit-lock.
939 (whitespace-point--used): New buffer-local var.
940 (whitespace-color-on): Initialize it and flush it. Use font-lock-flush.
941 (whitespace-color-off): Use font-lock-flush.
942 (whitespace-point--used, whitespace-point--flush-used): New functions.
943 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
944 (whitespace-empty-at-eob-regexp): Use them.
945 (whitespace-post-command-hook): Rewrite.
946
947 * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
948 (font-lock-fontify-buffer): Mark interactive-only.
949 (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
950 Make buffer-local.
951 (font-lock-specified-p): Remove redundant boundp check.
952 (font-lock-flush-function, font-lock-ensure-function): New vars.
953 (font-lock-turn-on-thing-lock): Set them.
954 (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
955 (font-lock-after-change-function): Make `old-len' optional.
956 (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
957 Call font-lock-flush, just in case.
958 * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
959 recent Emacsen.
960 * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
961 (vera-mode-map, vera-mode-menu): Remove bindings to it.
962 * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
963 and with-syntax-table.
964 * textmodes/conf-mode.el (conf-quote-normal):
965 * progmodes/sh-script.el (sh-set-shell):
966 * progmodes/prog-mode.el (prettify-symbols-mode):
967 * progmodes/f90.el (f90-font-lock-n):
968 * progmodes/cwarn.el (cwarn-mode):
969 * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
970 * progmodes/compile.el (compilation-setup, compilation--unsetup):
971 * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
972 (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
973 * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
974 font-lock-fontify-buffer-function and
975 font-lock-unfontify-buffer-function.
976 (rmail-unfontify-buffer-function, rmail-fontify-message):
977 Use with-silent-modifications.
978 * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
979 and font-lock-ensure.
980 * bs.el (bs-show-in-buffer): Use font-lock-ensure.
981
982 2014-05-28 Thien-Thi Nguyen <ttn@gnu.org>
983
984 * emacs-lisp/package.el (package-generate-autoloads):
985 Inhibit backup files.
986
987 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
988
989 * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
990 (bug#17608).
991
992 2014-05-21 Michal Nazarewicz <mina86@mina86.com>
993
994 * textmodes/tildify.el (tildify-buffer, tildify-region):
995 Add dont-ask option.
996
997 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
998
999 * subr.el (zerop): Move from C. Add compiler-macro (bug#17475).
1000 * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
1001
1002 * subr.el (internal--funcall-interactively): New.
1003 (internal--call-interactively): Remove.
1004 (called-interactively-p): Detect funcall-interactively instead of
1005 call-interactively.
1006 * simple.el (repeat-complex-command): Use funcall-interactively.
1007 (repeat-complex-command--called-interactively-skip): Remove.
1008
1009 2014-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
1010
1011 * register.el (register-read-with-preview): Don't burp on
1012 frame switches (e.g. due to the frame we just popped).
1013
1014 * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
1015 (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
1016
1017 2014-05-26 Andreas Schwab <schwab@linux-m68k.org>
1018
1019 * cus-face.el (custom-face-attributes): Add :distant-foreground.
1020
1021 2014-05-26 Martin Rudalics <rudalics@gmx.at>
1022
1023 * window.el (window--dump-frame): Remove interactive specification.
1024
1025 2014-05-26 Glenn Morris <rgm@gnu.org>
1026
1027 * hippie-exp.el (he-line-search-regexp):
1028 Handle comint-prompt-regexp containing subgroups. (Bug#17529)
1029
1030 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
1031
1032 * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
1033 to avoid errors when trying to create or visit a file foo.todo
1034 located outside to todo-directory, and to allow having such files
1035 without them being tied to Todo mode (bug#17482).
1036 (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
1037 (todo-archive-done-item, todo-find-filtered-items-file)
1038 (todo-filter-items, todo-find-item, todo-diary-goto-entry)
1039 (todo-category-completions, todo-read-category): When visiting a
1040 Todo file, make sure we're in the right mode and the buffer local
1041 variables are set.
1042 (todo-make-categories-list, todo-reset-nondiary-marker)
1043 (todo-reset-done-string, todo-reset-comment-string):
1044 After processing all Todo files, kill the buffers of those files that
1045 weren't being visited before the processing.
1046 (todo-display-as-todo-file, todo-add-to-buffer-list)
1047 (todo-visit-files-commands): Comment out.
1048 (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
1049 (auto-mode-alist): Remove add-to-list calls making Todo file
1050 extensions unrestrictedly tied to Todo modes.
1051
1052 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1053
1054 * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
1055 (advice-function-member-p): Tell it to check both names and functions
1056 (bug#17531).
1057 (advice--add-function): Adjust call accordingly.
1058
1059 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
1060
1061 * calendar/todo-mode.el: Miscellaneous bug fixes.
1062 (todo-delete-file): When deleting an archive but not its todo
1063 file, make sure to update the todo file's category sexp.
1064 (todo-move-category): Keep the moved category's name unless the
1065 file moved to already has a category with that name. If the
1066 numerically last category of the source file was moved, make the
1067 first category current to avoid selecting a nonexisting category.
1068 (todo-merge-category): Fix implementation to make merging to a
1069 category in another file work as documented. Eliminate now
1070 insufficient and unnecessary renaming of archive category, correct
1071 document string accordingly, and clarify it. If the numerically
1072 last category of the source file was merged, make the first
1073 category current to avoid selecting a nonexisting category.
1074 (todo-archive-done-item): When there are marked items and point
1075 happens to be on an unmarked item, ignore the latter. Don't leave
1076 point below last item after archiving marked items.
1077 (todo-unarchive-items): Fix logic to ensure unarchiving an item
1078 from an archive with only one category deletes the archive only
1079 when the category is empty after unarchiving. Make sure the todo
1080 file's category sexp is updated.
1081 (todo-read-file-name): Allow an existing file name even when it is
1082 not required (todo-move-category needs this to work as documented).
1083 (todo-add-file): Call todo-validate-name to reject the name of an
1084 existing todo file (needed due to fix in todo-read-file-name).
1085 (todo-reset-nondiary-marker): Also reset in filtered items files.
1086 (todo-reset-done-string, todo-reset-comment-string): Also reset in
1087 regexp filtered items files.
1088 (todo-reset-highlight-item): Also reset in filtered items files.
1089 Fix incorrect variable reference in document string.
1090
1091 2014-05-26 Glenn Morris <rgm@gnu.org>
1092
1093 * window.el (window--dump-frame): Avoid error in --without-x builds.
1094
1095 2014-05-26 Glenn Morris <rgm@gnu.org>
1096
1097 * nxml/nxml-mode.el (xml-mode): Only define this alias once.
1098
1099 2014-05-26 Eli Zaretskii <eliz@gnu.org>
1100
1101 * frame.el (set-frame-font): Doc fix.
1102
1103 * menu-bar.el (menu-set-font): Doc fix. (Bug#17532)
1104
1105 2014-05-26 Dmitry Gutov <dgutov@yandex.ru>
1106
1107 * emacs-lisp/package.el (package--download-one-archive):
1108 Use `write-region' instead of `save-buffer' to avoid running various
1109 hooks. (Bug#17155)
1110 (describe-package-1): Same. Insert newline at the end of the
1111 buffer if appropriate.
1112
1113 2014-05-26 Juri Linkov <juri@jurta.org>
1114
1115 * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
1116 (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
1117 Add more modifiers: meta, control, shift, hyper, super, alt.
1118 (Bug#17439)
1119
1120 * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
1121 to allow changing its value with `set-variable'.
1122
1123 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1124
1125 * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
1126 #; comments.
1127 (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
1128 New functions.
1129 (scheme-mode-variables): Set syntax-propertize-function instead of
1130 font-lock-syntactic-face-function.
1131 (scheme-font-lock-syntactic-face-function): Delete.
1132
1133 * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
1134
1135 * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
1136 (bug#17392).
1137
1138 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
1139
1140 * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
1141 for a temporary file name.
1142
1143 2014-05-26 Eli Zaretskii <eliz@gnu.org>
1144
1145 * simple.el (line-move-ignore-invisible): Doc fix. (Bug#17511)
1146
1147 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
1148
1149 * net/dbus.el (dbus-init-bus, dbus-call-method)
1150 (dbus-call-method-asynchronously, dbus-send-signal)
1151 (dbus-method-return-internal, dbus-method-error-internal):
1152 Check, whether Emacs has been compiled with D-Bus support. (Bug#17508)
1153
1154 2014-05-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1155
1156 * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
1157 methods which do not have a doc string. (Bug#17490)
1158
1159 2014-05-25 Tassilo Horn <tsdh@gnu.org>
1160
1161 * textmodes/reftex-ref.el (reftex-format-special): Make it work
1162 also for AMS Math's \eqref macro.
1163
1164 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
1165
1166 Arrange to never byte-compile the generated -pkg.el file.
1167
1168 * emacs-lisp/package.el (package-generate-description-file):
1169 Output first-line comment to set buffer-local var `no-byte-compile'.
1170 Suggested by Dmitry Gutov:
1171 <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
1172
1173 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
1174
1175 Fix bug: Properly quote args to generated -pkg.el `define-package'.
1176
1177 * emacs-lisp/package.el (package-generate-description-file):
1178 Inline `package--alist-to-plist'; rewrite to selectively
1179 quote alist values that are not self-quoting.
1180 (package--alist-to-plist): Delete func.
1181
1182 2014-05-25 Andreas Schwab <schwab@linux-m68k.org>
1183
1184 * term/xterm.el (xterm-function-map): Add mapping for shifted
1185 keypad keys.
1186
1187 2014-05-24 Daniel Colascione <dancol@dancol.org>
1188
1189 * progmodes/subword.el (subword-find-word-boundary): Move point to
1190 correct spot before search. (Bug#17580)
1191
1192 * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
1193 breaking the build.
1194
1195 2014-05-24 Leo Liu <sdl.web@gmail.com>
1196
1197 * calc/calc.el (math-bignum): Handle most-negative-fixnum. (Bug#17556)
1198
1199 2014-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
1200
1201 * minibuffer.el (completion--sreverse): Remove.
1202 (completion--common-suffix): Use `reverse' instead.
1203 * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
1204
1205 2014-05-22 Glenn Morris <rgm@gnu.org>
1206
1207 * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
1208
1209 2014-05-21 Daniel Colascione <dancol@dancol.org>
1210
1211 * files.el (interpreter-mode-alist): Add mksh.
1212
1213 * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
1214 derivative.
1215 (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
1216 mksh. Improve custom spec; allow regular expressions.
1217 (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
1218 (sh-after-hack-local-variables): New function.
1219 (sh-mode): Use it; respect file-local `sh-shell' variable. (bug#17333)
1220 (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
1221 the normalization.
1222 (sh-canonicalize-shell): Rewrite to support regexes.
1223
1224 2014-05-21 Leo Liu <sdl.web@gmail.com>
1225
1226 * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
1227
1228 2014-05-19 Leo Liu <sdl.web@gmail.com>
1229
1230 * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
1231
1232 2014-05-18 Glenn Morris <rgm@gnu.org>
1233
1234 * loadup.el:
1235 * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
1236
1237 2014-05-14 Sam Steingold <sds@gnu.org>
1238
1239 * progmodes/python.el (python-shell-get-or-create-process):
1240 Do not bind `current-prefix-arg' so that C-c C-z does not talk
1241 back unless requested.
1242
1243 2014-05-14 Glenn Morris <rgm@gnu.org>
1244
1245 * subr.el (with-file-modes): New macro.
1246 * printing.el (pr-save-file-modes): Make obsolete.
1247 * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
1248 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
1249 Add with-file-modes.
1250 * doc-view.el (doc-view-make-safe-dir):
1251 * epg.el (epg--start):
1252 * files.el (locate-user-emacs-file, make-temp-file)
1253 (backup-buffer-copy, move-file-to-trash):
1254 * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
1255 * eshell/esh-util.el (eshell-with-private-file-modes)
1256 (eshell-make-private-directory):
1257 * net/browse-url.el (browse-url-mosaic):
1258 * obsolete/mailpost.el (post-mail-send-it):
1259 * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
1260 * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
1261 Use with-file-modes.
1262
1263 * vc/emerge.el (emerge-make-temp-file): Simplify.
1264
1265 2014-05-14 Stephen Berman <stephen.berman@gmx.net>
1266 Stefan Monnier <monnier@iro.umontreal.ca>
1267
1268 * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
1269 suffix (bug#15419).
1270
1271 2014-05-14 Glenn Morris <rgm@gnu.org>
1272
1273 * vc/emerge.el (emerge-temp-file-prefix):
1274 Make pointless option obsolete.
1275 (emerge-temp-file-mode): Make non-functional option obsolete.
1276
1277 2014-05-14 Michael Albinus <michael.albinus@gmx.de>
1278
1279 * net/browse-url.el (browse-url):
1280 Use `unhandled-file-name-directory' when setting `default-directory',
1281 in order to circumvent stalled remote connections. (Bug#17425)
1282
1283 2014-05-14 Glenn Morris <rgm@gnu.org>
1284
1285 * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
1286 Optimize on Emacs, which has the relevant functions for ages.
1287
1288 2014-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
1289
1290 * simple.el (undo-make-selective-list): Obey undo-no-redo.
1291
1292 2014-05-12 Sam Steingold <sds@gnu.org>
1293
1294 * calendar/time-date.el (seconds-to-string): New function to
1295 pretty print time delay in seconds.
1296
1297 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
1298
1299 * mpc.el (mpc-format): Trim Date to the year.
1300 (mpc-songs-hashcons): Shorten the Date field.
1301
1302 * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
1303 into autoloading just because of a silly indirection.
1304
1305 2014-05-12 Santiago Payà i Miralta <santiagopim@gmail.com>
1306
1307 * vc/vc-hg.el (vc-hg-unregister): New function. (Bug#17454)
1308
1309 2014-05-12 Glenn Morris <rgm@gnu.org>
1310
1311 * emacs-lisp/find-gc.el: Move to ../admin.
1312
1313 * printing.el (pr-version):
1314 * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
1315
1316 * net/browse-url.el (browse-url-mosaic):
1317 Create /tmp/Mosaic.PID as a private file.
1318
1319 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
1320
1321 * emacs-lisp/nadvice.el: Support adding a given function multiple times.
1322 (advice--member-p): If name is given, only compare the name.
1323 (advice--remove-function): Don't stop at the first match.
1324 (advice--normalize-place): New function.
1325 (add-function, remove-function): Use it.
1326 (advice--add-function): Pass the name, if any, to
1327 advice--remove-function.
1328
1329 2014-05-12 Philipp Rumpf <prumpf@gmail.com> (tiny change)
1330
1331 * electric.el (electric-indent-post-self-insert-function): Don't use
1332 `pos' after modifying the buffer (bug#17449).
1333
1334 2014-05-12 Stephen Berman <stephen.berman@gmx.net>
1335
1336 * calendar/todo-mode.el (todo-insert-item-from-calendar):
1337 Correct argument list to conform to todo-insert-item--basic.
1338
1339 2014-05-12 Glenn Morris <rgm@gnu.org>
1340
1341 * files.el (cd-absolute): Test if directory is accessible
1342 rather than executable. (Bug#17330)
1343
1344 * progmodes/compile.el (recompile):
1345 Handle C-u M-x recompile from a non-compilation buffer. (Bug#17444)
1346
1347 * net/browse-url.el (browse-url-mosaic):
1348 Be careful when writing /tmp/Mosaic.PID. (Bug#17428)
1349 This is CVE-2014-3423.
1350
1351 2014-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
1352
1353 * mouse.el: Use the normal toplevel loop while dragging.
1354 (mouse-set-point): Handle multi-clicks.
1355 (mouse-set-region): Handle multi-clicks for drags.
1356 (mouse-drag-region): Update call accordingly.
1357 (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
1358 Use the normal event loop instead of a local while/read-event loop.
1359 (global-map): Remove redundant bindings for double/triple-mouse-1.
1360 * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
1361 Generate synthetic down events when the protocol only sends up events.
1362 (xterm-mouse-last): Remove.
1363 (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
1364 terminal parameter instead.
1365 (xterm-mouse--set-click-count): New function.
1366 (xterm-mouse-event): Detect/generate double/triple clicks.
1367 * reveal.el (reveal-close-old-overlays): Don't close while dragging.
1368
1369 * info.el (Info-quoted): New face.
1370 (Info-mode-font-lock-keywords): New var.
1371 (Info-mode): Use it.
1372
1373 * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
1374 are a hindrance for C-x C-e.
1375
1376 2014-05-11 Leo Liu <sdl.web@gmail.com>
1377
1378 * net/rcirc.el (rcirc-sentinel): Fix last change.
1379
1380 2014-05-08 Sam Steingold <sds@gnu.org>
1381
1382 * net/rcirc.el (rcirc-reconnect-delay): New user option.
1383 (rcirc-sentinel): Auto-reconnect to the server if
1384 `rcirc-reconnect-delay' is non-0 (but not more often than its
1385 value in case the host is off-line).
1386
1387 2014-05-09 Eli Zaretskii <eliz@gnu.org>
1388
1389 * progmodes/grep.el (lgrep): Fix a typo in last commit.
1390
1391 2014-05-09 Glenn Morris <rgm@gnu.org>
1392
1393 * files.el (file-expand-wildcards):
1394 * man.el (Man-support-local-filenames):
1395 * printing.el (pr-i-directory, pr-interface-directory):
1396 * progmodes/grep.el (lgrep, rgrep):
1397 * textmodes/ispell.el (ispell-call-process)
1398 (ispell-call-process-region, ispell-start-process)
1399 (ispell-init-process): Use file-accessible-directory-p.
1400
1401 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1402
1403 * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
1404 (xterm-mouse--read-event-sequence-1000): Return nil if something
1405 looks fishy.
1406 (xterm-mouse-event): Propagate it.
1407 (xterm-mouse-translate-1): Handle it.
1408
1409 2014-05-08 Stephen Berman <stephen.berman@gmx.net>
1410
1411 * calendar/todo-mode.el (todo-insert-item--apply-args): When all
1412 four slots of the parameter list are filled, make sure to pass it
1413 to the argument list of todo-insert-item--basic.
1414
1415 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1416
1417 * emacs-lisp/package.el (package-compute-transaction): Topological sort.
1418 Add optional `seen' argument to detect and break infinite loops.
1419
1420 2014-05-08 Eli Zaretskii <eliz@gnu.org>
1421
1422 * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
1423 (trace-unsafe, trace-use-tree): Make parentheses style be
1424 according to Emacs style.
1425
1426 2014-05-08 Michael Albinus <michael.albinus@gmx.de>
1427
1428 * net/tramp-sh.el (tramp-remote-process-environment):
1429 Remove HISTFILE and HISTSIZE; it's too late to set them here.
1430 Add :version entry.
1431 (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
1432 Add "HISTSIZE=/dev/null" to the shell's env arguments. Do not send
1433 extra "PSx=..." commands.
1434 (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
1435 (Bug#17295)
1436
1437 (tramp-uudecode): Replace the hard-coded temporary file name by a
1438 format specifier.
1439 (tramp-remote-coding-commands): Enhance docstring.
1440 (tramp-find-inline-encoding): Replace "%t" by a temporary file
1441 name. (Bug#17415)
1442 This is CVE-2014-3424.
1443
1444 2014-05-08 Glenn Morris <rgm@gnu.org>
1445
1446 * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
1447 (find-gc-source-files): Update some names.
1448 (trace-call-tree): Simplify and update.
1449 Avoid predictable temp-file names. (http://bugs.debian.org/747100)
1450 This is CVE-2014-3422.
1451
1452 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1453
1454 * minibuffer.el (completion--try-word-completion): Revert fix for
1455 Bug#15980 (bug#17375).
1456
1457 * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
1458 Always store button numbers in the same way in xterm-mouse-last;
1459 Don't burp is xterm-mouse-last is not set as expected.
1460 Never return negative indices.
1461
1462 2014-05-08 Dmitry Gutov <dgutov@yandex.ru>
1463
1464 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1465 Backtrack one char if the global/char-literal var matcher hits
1466 inside a string. The next char could be the beginning of an
1467 expression expansion.
1468
1469 2014-05-08 Glenn Morris <rgm@gnu.org>
1470
1471 * help-fns.el (describe-function-1): Test for an autoload before a
1472 macro, since `macrop' works on autoloads. (Bug#17410)
1473
1474 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1475
1476 * electric.el (electric-indent-functions-without-reindent): Add yaml.
1477
1478 * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
1479 Make sure the new point we return is within the new string (bug#17239).
1480
1481 2014-05-05 Daniel Colascione <dancol@dancol.org>
1482
1483 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1484 Port `gnu' pattern to rx.
1485
1486 2014-05-05 Jarek Czekalski <jarekczek@poczta.onet.pl>
1487
1488 Remove unneeded prompt when closing a buffer with active
1489 emacsclient ("Buffer ... still has clients"), #16548.
1490 * server.el (server-start): Remove the only call to:
1491 (server-kill-buffer-query-function): Remove.
1492
1493 2014-05-04 Leo Liu <sdl.web@gmail.com>
1494
1495 * calendar/diary-lib.el (calendar-chinese-month-name-array):
1496 Defvar to pacify compiler.
1497
1498 2014-05-04 Eli Zaretskii <eliz@gnu.org>
1499
1500 * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
1501
1502 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1503
1504 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
1505 Use nil rather than `default' for the "default" appearance (bug#17388).
1506 * vc/ediff-util.el (ediff-inferior-compare-regions)
1507 (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
1508 a misleading `default' value when it's really a boolean.
1509 * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
1510 overlay is not visible.
1511
1512 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
1513
1514 * calendar/todo-mode.el (todo-edit-file): Use display-warning.
1515 (todo-menu): Uncomment and update.
1516
1517 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
1518
1519 * calendar/todo-mode.el: Reimplement item editing to have the same
1520 basic user interface as item insertion, and make small UI and
1521 larger internal improvements to the latter.
1522 (todo-insert-item): Add reference to the Todo mode user manual to
1523 the documentation string.
1524 (todo-insert-item--basic): Rename from todo-basic-insert-item and
1525 adjust all callers. Change signature to combine diary and
1526 nonmarking arguments. Incorporate functionality of deleted item
1527 copying command and add error checking. Remove detailed
1528 descriptions of the arguments from the documentation string, since
1529 this is treated in the Todo mode user manual.
1530 (todo-copy-item, todo-edit-multiline-item)
1531 (todo-edit-done-item-comment, todo-edit-item-header)
1532 (todo-edit-item-time, todo-edit-item-date-from-calendar)
1533 (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
1534 (todo-edit-item-date-year, todo-edit-item-date-month)
1535 (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
1536 Remove.
1537 (todo-edit-item): Reimplement as wrapper command for
1538 todo-edit-item--next-key and make it distinguish done and not done
1539 todo items.
1540 (todo-edit-item--text): New function, replacing old command
1541 todo-edit-item and incorporating deleted commands
1542 todo-edit-multiline-item and todo-edit-done-item-comment.
1543 (todo-edit-item--header): Rename from todo-basic-edit-item-header.
1544 Use only numeric value of prefix argument. Remove detailed
1545 descriptions of the arguments from the documentation string, since
1546 this is treated in the Todo mode user manual.
1547 (todo-edit-item--diary-inclusion): New function, replacing old
1548 command todo-edit-item-diary-inclusion and incorporating and fixing
1549 functionality of deleted command todo-edit-item-diary-nonmarking,
1550 making sure to remove todo-nondiary-marker when adding
1551 diary-nonmarking-symbol.
1552 (todo-edit-category-diary-inclusion): Make sure to delete
1553 diary-nonmarking-symbol when adding todo-nondiary-marker.
1554 (todo-edit-category-diary-nonmarking): Fix indentation.
1555 (todo-insert-item--parameters): Group diary and nonmarking
1556 parameters together.
1557 (todo-insert-item--apply-args): Adjust to signature of
1558 todo-insert-item--basic and incorporate copy parameter.
1559 Make small code improvements.
1560 (todo-insert-item--next-param): Improve prompt and adjust it to
1561 new parameter grouping. Remove obsolete code.
1562 (todo-edit-item--param-key-alist)
1563 (todo-edit-item--date-param-key-alist)
1564 (todo-edit-done-item--param-key-alist): New defconsts.
1565 (todo-edit-item--prompt): New variable.
1566 (todo-edit-item--next-key): New function.
1567 (todo-key-bindings-t): Bind "e" to todo-edit-item.
1568 Remove bindings of deleted commands.
1569
1570 2014-05-04 Leo Liu <sdl.web@gmail.com>
1571
1572 * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
1573
1574 2014-05-04 Glenn Morris <rgm@gnu.org>
1575
1576 * allout-widgets.el (allout-widgets-tally)
1577 (allout-decorate-item-guides):
1578 * menu-bar.el (menu-bar-positive-p):
1579 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
1580 * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
1581 * progmodes/js.el (js--inside-param-list-p)
1582 (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
1583 * progmodes/prolog.el (region-exists-p):
1584 * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
1585 * textmodes/reftex-parse.el (reftex-using-biblatex-p):
1586 Doc fixes (replace `iff').
1587
1588 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1589
1590 * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
1591
1592 2014-05-04 Leo Liu <sdl.web@gmail.com>
1593
1594 Support Chinese diary entries in calendar and diary. (Bug#17393)
1595 * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
1596 (calendar-chinese-from-absolute-for-diary)
1597 (calendar-chinese-to-absolute-for-diary)
1598 (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
1599 (diary-chinese-list-entries): New functions to list and mark
1600 Chinese diary entries in the calendar window.
1601 (diary-chinese-anniversary)
1602 (diary-chinese-insert-anniversary-entry)
1603 (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
1604 (diary-chinese-insert-yearly-entry): New commands to insert
1605 Chinese diary entries.
1606
1607 * calendar/diary-lib.el (diary-font-lock-keywords):
1608 Support font-locking Chinese dates.
1609
1610 * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
1611 inserting Chinese diary entries.
1612
1613 * calendar/calendar.el (diary-chinese-entry-symbol):
1614 New customizable variable.
1615 (calendar-mode-map): Add bindings for inserting Chinese diary
1616 entries.
1617
1618 2014-05-03 Juri Linkov <juri@jurta.org>
1619
1620 * dired.el (dired-check-switches, dired-switches-recursive-p):
1621 New functions. (Bug#17218)
1622 (dired-switches-escape-p, dired-move-to-end-of-filename):
1623 Use `dired-check-switches'.
1624 (dired-insert-old-subdirs, dired-build-subdir-alist)
1625 (dired-sort-R-check): Use `dired-switches-recursive-p'.
1626
1627 2014-05-01 Barry O'Reilly <gundaetiapo@gmail.com>
1628
1629 * simple.el (undo-make-selective-list): New algorithm fixes
1630 incorrectness of position adjustments when undoing in region.
1631 (Bug#17235)
1632 (undo-elt-crosses-region): Make obsolete.
1633 (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
1634 New functions to adjust positions using undo-deltas.
1635
1636 2014-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
1637
1638 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
1639 the last consecutive closing paren (bug#17345).
1640
1641 2014-04-30 Reuben Thomas <rrt@sc3d.org>
1642
1643 * dired.el (dired-mode): make terminology for eXpunge command
1644 consistent. (Bug#17276)
1645
1646 2014-04-30 Eli Zaretskii <eliz@gnu.org>
1647
1648 * dired.el (dired-initial-position-hook, dired-initial-position):
1649 Doc string fixes.
1650
1651 2014-04-30 Glenn Morris <rgm@gnu.org>
1652
1653 * mail/rmail.el (rmail-quit): Handle killed summaries. (Bug#17283)
1654
1655 2014-04-30 Matthias Dahl <matthias.dahl@binary-island.eu>
1656
1657 * faces.el (face-spec-recalc): Apply X resources only after the
1658 defface spec has been applied. Thus, X resources are no longer
1659 overriden by the defface spec which also fixes issues on win32 where
1660 the toolbar coloring was wrong because it is set through X resources
1661 and was (wrongfully) overriden. (Bug#16694)
1662
1663 2014-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
1664
1665 * textmodes/rst.el (electric-pair-pairs): Declare.
1666 (rst-mode): Set it (bug#17131).
1667
1668 2014-04-30 Juri Linkov <juri@jurta.org>
1669
1670 * desktop.el (desktop-value-to-string): Let-bind `print-length'
1671 and `print-level' to nil. (Bug#17351)
1672
1673 2014-04-30 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1674
1675 * battery.el (battery-update): Handle the case where battery
1676 status is "N/A" (bug#17319).
1677
1678 2014-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
1679
1680 * progmodes/ps-mode.el: Use SMIE. Move string and comment recognition
1681 to syntax-propertize.
1682 (ps-mode-auto-indent): Mark as obsolete.
1683 (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
1684 (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
1685 word regexp operators.
1686 (ps-mode-map): Move initialization into declaration. Remove binding
1687 for TAB, RET, >, ], and }.
1688 (ps-mode-syntax-table): Move initialization into declaration.
1689 Don't give word syntax to non-word chars.
1690 (ps-run-mode-map): Move initialization into declaration.
1691 (ps-mode-menu-main): Remove auto-indent entry.
1692 (ps-mode-smie-rules): New function.
1693 (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
1694 (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
1695 (ps-mode--string-syntax-table): New const.
1696 (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
1697 New functions.
1698 (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
1699 (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
1700
1701 2014-04-27 Daniel Colascione <dancol@dancol.org>
1702
1703 * term/xterm.el (xterm-paste): Use large finite timeout when
1704 reading event to avoid putting keys in this-command-keys.
1705
1706 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
1707
1708 * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
1709 (perl-syntax-propertize-function): Use it. Extend handling of
1710 here-docs to the unquoted case.
1711
1712 2014-04-25 Eli Zaretskii <eliz@gnu.org>
1713
1714 * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
1715 Use equal-including-properties to compare help-echo strings (bug#17331).
1716
1717 2014-04-25 Leo Liu <sdl.web@gmail.com>
1718
1719 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
1720 Fix syntax for @. (Bug#17325)
1721
1722 2014-04-25 Daniel Colascione <dancol@dancol.org>
1723
1724 * emacs-lisp/cl.el (gv): Require gv early to break eager
1725 macro-expansion cycles.
1726
1727 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
1728
1729 * simple.el (region-active-p): Check there's a mark (bug#17324).
1730
1731 * simple.el (completion-list-mode-map): Use choose-completion for the
1732 mouse binding as well (bug#17302).
1733 (completion-list-mode, completion-setup-function): Adjust docstring and
1734 echo area message accordingly.
1735 * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
1736 calling convention of choose-completion.
1737 * comint.el (comint-dynamic-list-completions):
1738 * term.el (term-dynamic-list-completions): Accept choose-completion.
1739
1740 * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
1741 &, |, +, - and * can't be a division (bug#17317).
1742
1743 * term/xterm.el (xterm--version-handler): Don't use modern xterm
1744 features on gnome-terminal (bug#16988).
1745
1746 2014-04-25 Thien-Thi Nguyen <ttn@gnu.org>
1747
1748 Improve Scheme font-locking for (define ((foo ...) ...) ...).
1749
1750 * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
1751 the declared object, ignore zero or more parens, not zero or one.
1752
1753 2014-04-24 Leo Liu <sdl.web@gmail.com>
1754
1755 * progmodes/xscheme.el (xscheme-expressions-ring)
1756 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
1757 (xscheme-control-g-disabled-p, xscheme-process-filter-state)
1758 (xscheme-allow-output-p, xscheme-prompt)
1759 (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
1760
1761 * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
1762 Comment out unused functions.
1763
1764 2014-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
1765
1766 * info.el: Use lexical-binding and cl-lib.
1767 Use defvar-local and setq-local instead of make-local-variable.
1768 (Info-apropos-matches): Avoid add-to-list.
1769 (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
1770
1771 2014-04-24 Daniel Colascione <dancol@dancol.org>
1772
1773 * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
1774
1775 2014-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1776
1777 * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
1778
1779 2014-04-22 Michael Heerdegen <michael_heerdegen@web.de>
1780
1781 * dired.el (dired-insert-set-properties): Do not consider
1782 subdirectory headings and empty lines to be information that
1783 `dired-hide-details-mode' should hide. (Bug#17228)
1784
1785 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1786
1787 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1788 Remove test messages.
1789 (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
1790 and `target' twice.
1791
1792 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1793
1794 * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
1795 * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
1796
1797 * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
1798
1799 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1800
1801 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1802 Set "IFS=" when using read builtin, in order to preserve spaces in
1803 the file name. Add test messages for hunting a bug on hydra.
1804 (tramp-get-ls-command): Undo using "-b" argument. It doesn't help.
1805
1806 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1807
1808 * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
1809 Don't prettify a word within a symbol.
1810
1811 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1812
1813 * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
1814 possible.
1815
1816 2014-04-22 Daniel Colascione <dancol@dancol.org>
1817
1818 * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
1819 use defun to define `function-put'.
1820
1821 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1822
1823 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
1824 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
1825 (lisp-mode-variables): Set font-lock-extra-managed-props.
1826
1827 * emacs-lisp/byte-run.el (function-put): New function.
1828 (defun-declarations-alist): Use it. Add `pure' and `side-effect-free'.
1829 * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
1830 (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
1831 Use them.
1832
1833 2014-04-22 Daniel Colascione <dancol@dancol.org>
1834
1835 * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
1836 Add `full-p' parameter; when nil, call `macroexpand' instead of
1837 `macroexpand-all'.
1838
1839 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1840 Improve docstrings.
1841
1842 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
1843 Use lambda function values, not quoted lambdas.
1844 (byte-compile-recurse-toplevel): Remove extraneous &optional.
1845
1846 * emacs-lisp/cl-macs.el
1847 (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
1848 (cl-struct-slot-value): Conditionally use aref or nth so that the
1849 compiler produces optimal code.
1850
1851 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1852
1853 * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
1854 (inline): Don't inline cl--set-elt.
1855 (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
1856 Define as inlinable instead.
1857 (cl-struct-set-slot-value): Remove.
1858
1859 * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
1860 * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
1861 Use setf instead.
1862
1863 2014-04-21 Daniel Colascione <dancol@dancol.org>
1864
1865 * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
1866 last two parameters after all.
1867 (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
1868 (cl--compiler-macro-assoc,cl-struct-slot-value)
1869 (cl-struct-set-slot-value): Stop using them.
1870
1871 (2014-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
1872
1873 * image-mode.el (image-mode-window-put): Don't assume there's a `t'
1874 entry in image-mode-winprops-alist.
1875
1876 2014-04-21 Daniel Colascione <dancol@dancol.org>
1877
1878 * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
1879 (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
1880 (byte-compile-toplevel-file-form): Use it.
1881
1882 * emacs-lisp/cl-macs.el:
1883 (cl--loop-let): Properly destructure `while' clauses.
1884
1885 2014-04-20 Daniel Colascione <dancol@dancol.org>
1886
1887 * vc/vc.el (vc-root-dir): New public autoloaded function for
1888 generically finding the current VC root.
1889 * vc/vc-hooks.el (vc-not-supported): New error.
1890 (vc-call-backend): Signal `vc-not-supported' instead of generic error.
1891
1892 2014-04-20 Daniel Colascione <dancol@dancol.org>
1893
1894 * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
1895 argument.
1896 (cl--const-expr-val): cl--const-expr-val should macroexpand its
1897 argument in case we're inside a symbol-macrolet.
1898 (cl--do-arglist, cl--compiler-macro-typep)
1899 (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
1900 environment to `cl--const-expr-val'.
1901 (cl-struct-sequence-type,cl-struct-slot-info)
1902 (cl-struct-slot-offset, cl-struct-slot-value)
1903 (cl-struct-set-slot-value): New functions.
1904
1905 2014-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1906
1907 * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
1908 assignments such as "case=hello" (bug#17297).
1909
1910 2014-04-18 Michael Albinus <michael.albinus@gmx.de>
1911
1912 * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
1913 Do not autoload.
1914 (tramp-file-name-handler, tramp-completion-file-name-handler):
1915 Revert patch from 2014-04-10, it isn't necessary anymore.
1916 (tramp-autoload-file-name-handler)
1917 (tramp-register-autoload-file-name-handlers): New defuns.
1918 (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
1919 (tramp-register-file-name-handlers): Remove also
1920 `tramp-autoload-file-name-handler' from `file-name-handler-list'.
1921 Do not autoload its invocation, but eval it after loading of 'tramp.
1922
1923 * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
1924
1925 * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
1926
1927 2014-04-17 Daniel Colascione <dancol@dancol.org>
1928
1929 Add support for bracketed paste mode; add infrastructure for
1930 managing terminal mode enabling and disabling automatically.
1931
1932 * xt-mouse.el:
1933 (xterm-mouse-mode): Simplify.
1934 (xterm-mouse-tracking-enable-sequence)
1935 (xterm-mouse-tracking-disable-sequence): New constants.
1936 (turn-on-xterm-mouse-tracking-on-terminal)
1937 (turn-off-xterm-mouse-tracking-on-terminal):
1938 Use tty-mode-set-strings and tty-mode-reset-strings terminal
1939 parameters instead of random hooks.
1940 (turn-on-xterm-mouse-tracking)
1941 (turn-off-xterm-mouse-tracking): Delete.
1942
1943 * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
1944 (xterm-paste-ending-sequence): New constant.
1945 (xterm-paste): New command used for bracketed paste support.
1946
1947 (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
1948 (terminal-init-xterm-bracketed-paste-mode): New function.
1949 (terminal-init-xterm): Call it.
1950 (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
1951 and tty-mode-reset-strings instead of random hooks.
1952 (xterm-turn-on-modify-other-keys)
1953 (xterm-turn-off-modify-other-keys)
1954 (xterm-remove-modify-other-keys): Delete obsolete functions.
1955
1956 * term/screen.el: Rewrite to just use the xterm code.
1957 Add copyright notice. Mention tmux.
1958
1959 2014-04-17 Ian D <dunni@gnu.org> (tiny change)
1960
1961 * image-mode.el (image-mode-window-put): Also update the property of
1962 the "default window".
1963 * doc-view.el (doc-view-new-window-function): If no window
1964 exists, move to the last known page.
1965
1966 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
1967
1968 * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
1969 here-documents (bug#17262).
1970
1971 2014-04-16 Eli Zaretskii <eliz@gnu.org>
1972
1973 * term/pc-win.el (x-list-fonts, x-get-selection-value):
1974 Provide doc strings, as required by snarf-documentation.
1975
1976 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
1977
1978 * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
1979 arg of overlays-at. Use `invisible-p'.
1980
1981 * obsolete/lucid.el (extent-at):
1982 * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
1983 overlays-at.
1984 (hfy-fontify-buffer): Remove unused var `orig-ovls'.
1985
1986 2014-04-16 João Távora <joaotavora@gmail.com>
1987
1988 * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
1989 links. (Bug#17217).
1990
1991 2014-04-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1992
1993 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
1994 Use mapc to loop over a vector. (Bug#17257).
1995
1996 2014-04-16 Michael Albinus <michael.albinus@gmx.de>
1997
1998 * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
1999 patch, there are new problems with file names containing spaces.
2000 Get rid of backticks. (Bug#17238)
2001
2002 2014-04-16 João Távora <joaotavora@gmail.com>
2003
2004 * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
2005 possible bug.
2006
2007 2014-04-16 Eli Zaretskii <eliz@gnu.org>
2008
2009 * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
2010 (blink-cursor-mode): Mention customization variables and the
2011 effect of 'blink-cursor-blinks'.
2012
2013 2014-04-16 Barry O'Reilly <gundaetiapo@gmail.com>
2014
2015 * simple.el (undo): Prevent insertion of identity mapping into
2016 undo-equiv-table so as undo-only does not inf loop in the presence
2017 of consecutive nils in undo list.
2018
2019 2014-04-16 Matthias Dahl <matthias.dahl@binary-island.eu>
2020
2021 * faces.el (make-face): Deprecate optional argument as it is no
2022 longer needed/used since the conditional X resources handling
2023 has been pushed down to make-face-x-resource-internal itself.
2024 (make-empty-face): Don't pass optional argument to make-face.
2025
2026 2014-04-16 Karl Fogel <kfogel@red-bean.com>
2027
2028 * savehist.el (savehist-save): Remove workaround for a read-passwd
2029 bug that was fixed before 24.3. Thanks to Juanma Barranquero for
2030 noticing that the shim was still present.
2031
2032 2014-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
2033
2034 * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
2035
2036 2014-04-14 Juanma Barranquero <lekktu@gmail.com>
2037
2038 * faces.el (face-set-after-frame-default): Remove unused local variable.
2039
2040 2014-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
2041
2042 * progmodes/grep.el: Use lexical-binding.
2043 (grep-expand-template): Pass explicit lexical env to `eval'.
2044 (zrgrep): Let-bind grep-find-template explicitly.
2045
2046 * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
2047 * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
2048
2049 2014-04-12 Eli Zaretskii <eliz@gnu.org>
2050
2051 * international/characters.el <standard-case-table>: Add entries
2052 for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243)
2053 Set category of Coptic characters be 'g' (Greek).
2054
2055 2014-04-12 Leo Liu <sdl.web@gmail.com>
2056
2057 * progmodes/octave.el (completion-table-with-cache):
2058 Define if not available.
2059 (octave-goto-function-definition, octave-sync-function-file-names)
2060 (octave-find-definition-default-filename):
2061 Backquote upattern for compatibility.
2062
2063 2014-04-12 Michael Albinus <michael.albinus@gmx.de>
2064
2065 * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
2066 name twice due to backticks. (Bug#17238)
2067
2068 2014-04-12 Glenn Morris <rgm@gnu.org>
2069
2070 * term/w32-win.el (x-win-suspend-error):
2071 * term/x-win.el (x-win-suspend-error): Sync docs.
2072
2073 2014-04-12 Matthias Dahl <matthias.dahl@binary-island.eu>
2074
2075 * faces.el (make-face): Remove deprecated optional argument.
2076 The conditional application of X resources is handled directly by
2077 make-face-x-resource-internal since Emacs 24.4.
2078 (make-empty-face): Don't pass optional argument to make-face.
2079
2080 2014-04-11 Glenn Morris <rgm@gnu.org>
2081
2082 * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport. (Bug#16429)
2083
2084 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2085
2086 Ediff's overlay priorities cause more trouble than they solve.
2087 * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
2088 (ediff-highest-priority): Remove function (bug#17234).
2089 * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
2090 * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
2091 (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
2092 overlay priorities.
2093
2094 2014-04-11 Feng Li <fengli@gmail.com> (tiny change)
2095
2096 * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
2097 entry; use symbol boundaries to avoid mis-matches.
2098
2099 2014-04-11 Michael Albinus <michael.albinus@gmx.de>
2100
2101 * net/tramp.el (tramp-file-name-handler)
2102 (tramp-completion-file-name-handler): Avoid recursive loading.
2103
2104 * net/tramp-sh.el (tramp-make-copy-program-file-name):
2105 Quote result also locally.
2106
2107 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2108
2109 * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
2110 Remove left-over code.
2111
2112 * newcomment.el (comment-indent-new-line): Sink code where it's used.
2113 Reuse the previous comment's indentation unconditionally if it's on its
2114 own line.
2115
2116 2014-04-09 Daniel Colascione <dancol@dancol.org>
2117
2118 * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
2119 `no-syntax-crossing' arguments. Forward to `up-list'.
2120 (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
2121 Implement logic for escaping from strings. Use narrowing to deal
2122 with corner cases.
2123
2124 2014-04-09 Leo Liu <sdl.web@gmail.com>
2125
2126 * net/rcirc.el (rcirc-connection-info): New variable.
2127 (rcirc-connect): Use it to store connection info.
2128 (rcirc-buffer-process): Avoid get-buffer-process which returns nil
2129 for killed process.
2130 (rcirc-cmd-reconnect): New command. (Bug#17045)
2131 (rcirc-mode, set-rcirc-encode-coding-system)
2132 (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
2133
2134 2014-04-09 Daniel Colascione <dancol@dancol.org>
2135
2136 * emacs-lisp/cl-indent.el: Add comment claiming
2137 facility is also good for elisp.
2138 (lisp-indent-find-method): New function.
2139 (common-lisp-indent-function): Recognize cl-loop.
2140 (common-lisp-indent-function-1): Recognize cl constructs; use
2141 `lisp-indent-find-method' instead of `get' directly.
2142 (if): Use else-body style for elisp.
2143
2144 2014-04-09 Dmitry Gutov <dgutov@yandex.ru>
2145
2146 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
2147 Module methods. (Bug#17216)
2148
2149 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
2150
2151 * help.el (describe-bindings): Fix buffer handling (bug#17210).
2152 (describe-bindings-internal): Mark obsolete.
2153
2154 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
2155
2156 * subr.el (with-silent-modifications): Don't bind deactivate-mark,
2157 buffer-file-name, and buffer-file-truename any more.
2158
2159 2014-04-08 Leo Liu <sdl.web@gmail.com>
2160
2161 Use lexical-binding and require cl-lib.
2162 * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
2163 (rcirc-handler-generic, rcirc-fill-paragraph)
2164 (rcirc-format-response-string, rcirc-target-buffer)
2165 (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
2166 (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
2167 (rcirc-ctcp-sender-PING, rcirc-browse-url)
2168 (rcirc-markup-timestamp, rcirc-markup-attributes)
2169 (rcirc-markup-my-nick, rcirc-markup-urls)
2170 (rcirc-markup-bright-nicks, rcirc-markup-fill)
2171 (rcirc-check-auth-status, rcirc-handler-WALLOPS)
2172 (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
2173 (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
2174 (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
2175 (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
2176 (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
2177 (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
2178 (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
2179 (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
2180 (rcirc-handler-CTCP-response): Fix unused arguments warnings and
2181 use cl-lib.
2182
2183 2014-04-07 João Távora <joaotavora@gmail.com>
2184
2185 * elec-pair.el (electric-pair--syntax-ppss):
2186 When inside comments parse from comment beginning.
2187 (electric-pair--balance-info): Fix typo in comment.
2188 (electric-pair--in-unterminated-string-p): Delete.
2189 (electric-pair--unbalanced-strings-p): New function.
2190 (electric-pair-string-bound-function): New var.
2191 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
2192 according to `electric-pair--in-unterminated-string-p'
2193
2194 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
2195 Inhibit quote pairing if point-max is inside an unterminated string.
2196 (electric-pair--looking-at-unterminated-string-p): Delete.
2197 (electric-pair--in-unterminated-string-p): New function.
2198
2199 2014-04-07 Glenn Morris <rgm@gnu.org>
2200
2201 * shell.el (shell-directory-tracker):
2202 Go back to just ignoring failures. (Bug#17159)
2203
2204 2014-04-07 João Távora <joaotavora@gmail.com>
2205
2206 Fix `electric-pair-delete-adjacent-pairs' in modes binding
2207 backspace. (bug#16981)
2208 * elec-pair.el (electric-pair-backward-delete-char): Delete.
2209 (electric-pair-backward-delete-char-untabify): Delete.
2210 (electric-pair-mode-map): Bind backspace to a menu item filtering
2211 a new `electric-pair-delete-pair' command.
2212 (electric-pair-delete-pair): New command.
2213
2214 * progmodes/python.el (python-electric-pair-string-delimiter):
2215 Fix triple-quoting electricity. (Bug#17192)
2216
2217 * elec-pair.el (electric-pair-post-self-insert-function):
2218 Don't skip whitespace when `electric-pair-text-pairs' and
2219 `electric-pair-pairs' were used. syntax to
2220 electric-pair--skip-whitespace. (Bug#17183)
2221
2222 2014-04-07 Eli Zaretskii <eliz@gnu.org>
2223
2224 * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
2225 "<F>". (Bug#17199)
2226
2227 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2228
2229 * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
2230 (mpc--status-idle-timer-run): Use mpc--status-timer-run.
2231
2232 2014-04-07 Glenn Morris <rgm@gnu.org>
2233
2234 * help.el (view-lossage): Doc tweak.
2235
2236 2014-04-07 Matthias Dahl <ml_emacs-lists@binary-island.eu>
2237
2238 * faces.el (face-spec-recalc): Call make-face-x-resource-internal
2239 only when inhibit-x-resources is nil, and do that earlier in the
2240 function. Doc fix. (Bug#16694)
2241 (face-spec-choose): Accept additional optional argument, whose
2242 value is returned if no matching attributes are found.
2243 (face-spec-recalc): Use the new optional argument when calling
2244 face-spec-choose. (Bug#16378)
2245 (make-face-x-resource-internal): Do nothing when
2246 inhibit-x-resources is non-nil. Don't touch the default face if
2247 reversed video is given--as was done in previous versions of Emacs.
2248 (face-set-after-frame-default): Don't call
2249 make-face-x-resource-internal here. (Bug#16434)
2250
2251 2014-04-07 Tassilo Horn <tsdh@gnu.org>
2252
2253 * doc-view.el (doc-view-bookmark-jump):
2254 Use `bookmark-after-jump-hook' to jump to the right page after the
2255 buffer is shown in a window. (bug#16090)
2256
2257 2014-04-07 Eli Zaretskii <eliz@gnu.org>
2258
2259 * international/characters.el (mirroring): Fix last change:
2260 instead of loading uni-mirrored.el explicitly, do that implicitly
2261 by creating the 'mirroring' uniprop table. This avoids announcing
2262 the loading of uni-mirrored.el.
2263
2264 2014-04-07 Glenn Morris <rgm@gnu.org>
2265
2266 * files.el (buffer-stale--default-function)
2267 (buffer-stale-function, revert-buffer--default):
2268 * autorevert.el (auto-revert-buffers): Doc tweaks.
2269
2270 2014-04-07 Eli Zaretskii <eliz@gnu.org>
2271
2272 * international/characters.el: Preload uni-mirrored.el. (Bug#17169)
2273
2274 2014-04-07 Glenn Morris <rgm@gnu.org>
2275
2276 * files.el (make-backup-file-name-function)
2277 (make-backup-file-name, make-backup-file-name--default-function)
2278 (make-backup-file-name-1, find-backup-file-name)
2279 (revert-buffer-function, revert-buffer-insert-file-contents-function)
2280 (buffer-stale--default-function, buffer-stale-function)
2281 (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
2282 (revert-buffer, revert-buffer--default)
2283 (revert-buffer-insert-file-contents--default-function):
2284 Doc fixes related to defaults no longer being nil.
2285 (make-backup-file-name-function): Bump :version.
2286 Restore nil as a valid but deprecated custom type.
2287
2288 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2289
2290 * progmodes/perl-mode.el (perl-syntax-propertize-function):
2291 Handle $' used as a variable (bug#17174).
2292
2293 * progmodes/perl-mode.el (perl-indent-new-calculate):
2294 Handle forward-sexp failure (bug#16985).
2295 (perl-syntax-propertize-function): Add "foreach" and "for" statement
2296 modifiers introducing expressions (bug#17116).
2297
2298 2014-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
2299
2300 * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
2301
2302 2014-04-05 Leo Liu <sdl.web@gmail.com>
2303
2304 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2305 Add define-compilation-mode.
2306
2307 2014-04-04 João Távora <joaotavora@gmail.com>
2308
2309 * elec-pair.el (electric-pair--syntax-ppss): When inside comments
2310 parse from comment beginning.
2311 (electric-pair--balance-info): Fix typo in comment.
2312 (electric-pair--in-unterminated-string-p): Delete.
2313 (electric-pair--unbalanced-strings-p): New function.
2314 (electric-pair-string-bound-function): New var.
2315 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
2316 according to `electric-pair--in-unterminated-string-p'.
2317
2318 2014-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
2319
2320 * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
2321 Move declaration before first use.
2322 (reftex-move-to-next-arg): Silence compiler warning.
2323
2324 2014-04-04 Joost Kremers <joostkremers@fastmail.fm> (tiny change)
2325
2326 * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
2327 Use `window-total-width' instead of `window-width'.
2328
2329 2014-04-03 Daniel Colascione <dancol@dancol.org>
2330
2331 * subr.el (set-transient-map): Remove rms's workaround entirely;
2332 use new `suspicious-object' subr to mark our lambda for closer
2333 scrutiny during gc.
2334
2335 2014-04-02 Richard Stallman <rms@gnu.org>
2336
2337 * subr.el (set-transient-map): Comment out previous change.
2338
2339 2014-04-02 Glenn Morris <rgm@gnu.org>
2340
2341 * menu-bar.el (menu-bar-file-menu):
2342 * vc/ediff.el (ediff-current-file):
2343 Update for revert-buffer-function no longer being nil by default.
2344
2345 * simple.el (command-execute): Respect nil disabled-command-function.
2346
2347 2014-04-02 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2348
2349 * simple.el (command-execute): Do not execute the command when it
2350 is disabled; fixes thinko in 2013-02-20 conversion from C. (Bug#17151)
2351
2352 2014-04-02 Juri Linkov <juri@jurta.org>
2353
2354 * dired-aux.el (dired-compress-file): Don't use string-match-p
2355 because its match data is used afterwards.
2356
2357 2014-04-02 Stefan Monnier <monnier@iro.umontreal.ca>
2358
2359 * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
2360 0 like nil.
2361
2362 2014-04-02 João Távora <joaotavora@gmail.com>
2363
2364 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
2365 Inhibit quote pairing if point-max is inside an unterminated string.
2366 (electric-pair--looking-at-unterminated-string-p):
2367 Delete.
2368 (electric-pair--in-unterminated-string-p): New function.
2369
2370 2014-04-01 Daniel Colascione <dancol@dancol.org>
2371
2372 * minibuffer.el (minibuffer-complete): Prevent assertion failure
2373 when trying to complete the prompt.
2374
2375 2014-03-31 Leo Liu <sdl.web@gmail.com>
2376
2377 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
2378 Refactor out eldoc-documentation-function-default.
2379 (eldoc-documentation-function-default): New function.
2380 (eldoc-documentation-function): Change value.
2381
2382 2014-03-31 Glenn Morris <rgm@gnu.org>
2383
2384 * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
2385
2386 * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
2387 (vhdl-compose-components-package, vhdl-compose-configuration):
2388 Abbreviate default-directory (missing from some previous upstream sync).
2389
2390 2014-03-31 Reto Zimmermann <reto@gnu.org>
2391
2392 Sync with upstream vhdl mode v3.35.2.
2393 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
2394 (top-level): No longer require assoc.
2395 (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
2396 New functions. Use throughout to replace aget etc.
2397 (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
2398 (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
2399 (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
2400 (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
2401 (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
2402 except `vhdl-compiler'.
2403 (vhdl-error-regexp-add-emacs): Remove all other compilers,
2404 when appropriate.
2405
2406 2014-03-31 Glenn Morris <rgm@gnu.org>
2407
2408 * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
2409 Revert 2014-03-26 merge goof; go back to using defalias.
2410
2411 2014-03-30 Daniel Colascione <dancol@dancol.org>
2412
2413 * comint.el (comint-send-input):
2414 Deactivate completion-in-region-mode before we send comint input.
2415 (Bug#17139).
2416
2417 * simple.el (keyboard-quit): Deactivate completion-in-region-mode
2418 on keyboard-quit.
2419
2420 2014-03-29 Glenn Morris <rgm@gnu.org>
2421
2422 * textmodes/reftex.el: Manage most autoloads automatically.
2423 * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
2424 * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
2425 * textmodes/reftex-index.el, textmodes/reftex-parse.el:
2426 * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
2427 * textmodes/reftex-toc.el: Set generated-autoload-file,
2428 and add autoload cookies for reftex.el.
2429 * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
2430
2431 2014-03-28 Glenn Morris <rgm@gnu.org>
2432
2433 * cus-start.el (report-emacs-bug-address): Set custom properties.
2434 * mail/emacsbug.el (report-emacs-bug-address):
2435 Variable is now defined in emacs.c.
2436
2437 * mail/emacsbug.el (report-emacs-bug):
2438 Include system-configuration-features.
2439
2440 2014-03-28 Michal Nazarewicz <mina86@mina86.com>
2441
2442 * simple.el (cycle-spacing): Never delete spaces on first run by
2443 default, but do so in a new 'fast mode and if there are already
2444 N spaces (the previous behavior).
2445 Compare N with its value in previous invocation so that changing
2446 prefix argument restarts `cycle-spacing' sequence.
2447 The idea is that with this change, binding M-SPC to
2448 `cycle-spacing' should not introduce any changes in behavior of
2449 the binding so long as users do not type M-SPC twice in a raw with
2450 the same prefix argument or lack thereof.
2451
2452 2014-03-28 Glenn Morris <rgm@gnu.org>
2453
2454 * faces.el (term-file-aliases): New variable.
2455 (tty-run-terminal-initialization): Respect term-file-aliases.
2456 * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
2457 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
2458 * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
2459
2460 2014-03-27 Glenn Morris <rgm@gnu.org>
2461
2462 * startup.el (inhibit-startup-hooks): Doc tweak.
2463 (normal-top-level): Simplify running of hooks.
2464 For window-setup-hook, respect inhibit-startup-hooks.
2465 (command-line-1): Don't set window-setup-hook to nil.
2466
2467 Allow selective autoloading from obsolete/ directory.
2468 * Makefile.in (obsolete-autoloads): New rule.
2469 (autoloads): Run obsolete-autoloads.
2470 * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
2471 * simple.el (iswitchb-mode): Remove hand-written autoloads.
2472
2473 2014-03-27 Dmitry Gutov <dgutov@yandex.ru>
2474
2475 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2476 Highlight special globals with font-lock-builtin-face. (Bug#17057)
2477
2478 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2479 Don't propertize `?' or `!' as symbol constituent when after
2480 colon. (Bug#17097)
2481
2482 2014-03-27 Juanma Barranquero <lekktu@gmail.com>
2483
2484 * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
2485 which is no longer needed and causes trouble in GTK builds (bug#17046).
2486
2487 * emacs-lisp/package-x.el (package--archive-contents-from-url):
2488 Use url-insert-file-contents; package-handle-response no longer exists.
2489
2490 2014-03-26 Daniel Colascione <dancol@dancol.org>
2491
2492 * simple.el (process-menu-mode-map): New variable.
2493 (process-menu-delete-process): New command.
2494
2495 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
2496
2497 * emacs-lisp/package.el: Fix bug#16733 (again).
2498 (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
2499 (url-http-target-url): Remove unused declarations.
2500 (package-handle-response): Remove.
2501 (package--with-work-buffer): Use url-insert-file-contents and simplify.
2502 (package--download-one-archive): Use current-buffer instead of
2503 dynamic binding of `buffer'.
2504 (describe-package-1): Do not decode readme-string.
2505
2506 2014-03-26 Michael Albinus <michael.albinus@gmx.de>
2507
2508 * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
2509
2510 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
2511 from 2014-03-07, it decreases performance unnecessarily. Let-bind
2512 `remote-file-name-inhibit-cache' to nil in the second pass.
2513 (tramp-find-executable): Do not call "which" on SunOS.
2514 (tramp-send-command-and-check): Fix docstring.
2515 (tramp-do-copy-or-rename-file-directly): In the `rename' case,
2516 check whether source directory has set the sticky bit.
2517
2518 2014-03-26 Barry O'Reilly <gundaetiapo@gmail.com>
2519
2520 * simple.el (primitive-undo): Only process marker adjustments
2521 validated against their corresponding (TEXT . POS). Issue warning
2522 for lone marker adjustments in undo history. (Bug#16818)
2523 (undo-make-selective-list): Add marker adjustments to selective
2524 undo list based on whether their corresponding (TEXT . POS) is in
2525 the region. Remove variable adjusted-markers, which was unused
2526 and only non nil during undo-make-selective-list.
2527 (undo-elt-in-region): Return nil when passed a marker adjustment
2528 and explain in function doc.
2529
2530 2014-03-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2531
2532 * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
2533
2534 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
2535
2536 * progmodes/ruby-mode.el (ruby-expression-expansion-re):
2537 Match special global variables without curlies, too.
2538 (ruby-font-lock-keywords): Simplify the matcher for special global
2539 variables. Don't require a non-word character after the variable.
2540 (Bug#17057)
2541
2542 2014-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
2543
2544 * simple.el (redisplay-highlight-region-function): Increase priority of
2545 overlay to make sure boundaries are visible (bug#15899).
2546
2547 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
2548
2549 * frameset.el (frameset--initial-params): Fix typo in parameter name.
2550 (frameset-restore): Compare display strings with equal.
2551
2552 * frame.el (make-frame): Don't quote display name in error message,
2553 it is already a string.
2554
2555 2014-03-26 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2556
2557 * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
2558 the password.
2559
2560 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
2561
2562 * emacs-lisp/package.el (package--add-to-archive-contents):
2563 Include already installed and built-in packages in
2564 `package-archive-contents'.
2565 (package-install): Don't include already installed packages in the
2566 options during interactive invocation. (Bug#16762)
2567 (package-show-package-list): If the buffer is already displayed in
2568 another window, switch to that window.
2569
2570 2014-03-26 Reto Zimmermann <reto@gnu.org>
2571
2572 Sync with upstream vhdl mode v3.35.1.
2573 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
2574 (vhdl-compiler-alist): Doc fix.
2575 (vhdl-goto-line): Remove.
2576 (vhdl-mode-abbrev-table-init): Add XEmacs compat.
2577 (vhdl-mode) <paragraph-start>: Fix value.
2578 (vhdl-fix-statement-region): Not `for' in wait-statement.
2579 (vhdl-beautify-region): Also (un)tabify.
2580 (vhdl-get-visible-signals):
2581 Scan declarative part of generate statements.
2582 (vhdl-template-record): Fix indentation for record type declaration.
2583 (vhdl-expand-abbrev, vhdl-expand-paren):
2584 Revert to using fset again rather than defalias.
2585 (vhdl-scan-directory-contents): Tweak.
2586 (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
2587 (vhdl-compose-components-package):
2588 Replace vhdl-goto-line with forward-line.
2589 (top-level): Tweak speedbar frame selection.
2590 (vhdl-generate-makefile-1): Support for compilers with no
2591 unit-to-file name mapping (create directory with dummy files).
2592
2593 2014-03-26 Wilson Snyder <wsnyder@wsnyder.org>
2594
2595 Sync with upstream verilog-mode revision 702457d.
2596 * progmodes/verilog-mode.el (verilog-mode-version): Update.
2597 (create-lockfiles): Declare.
2598 (verilog-read-decls): Fix module header imports, bug709.
2599 Reported by Victor Lau.
2600 Fix parsing 'var' in AUTOs, msg1294. Reported by Dominique Chen.
2601 (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
2602 interface-only modules, bug721. Reported by Dean Hoyt.
2603
2604 2014-03-26 Glenn Morris <rgm@gnu.org>
2605
2606 * obsolete/gulp.el: Move here from emacs-lisp/.
2607
2608 * files.el (lock-buffer, unlock-buffer, file-locked-p):
2609 Remove fallback aliases, since they are always defined now.
2610
2611 2014-03-24 Daniel Colascione <dancol@dancol.org>
2612
2613 * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
2614 instead of cl-loop search function.
2615
2616 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
2617
2618 * calendar/parse-time.el (parse-time-iso8601-regexp)
2619 (parse-iso8601-time-string): Copied from `url-dav' so that we can use
2620 it more generally.
2621
2622 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
2623
2624 * net/dns.el (network-interface-list): Define for XEmacs.
2625
2626 2014-03-23 Magnus Henoch <magnus.henoch@gmail.com>
2627
2628 * net/dns.el (dns-servers-up-to-date-p): New function to see whether
2629 the network interfaces changed.
2630 (dns-query): Use it to flush the data.
2631
2632 2014-03-23 Juanma Barranquero <lekktu@gmail.com>
2633
2634 * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
2635
2636 2014-03-23 Daniel Colascione <dancol@dancol.org>
2637
2638 Change subword-mode to use `find-word-boundary-function-table' and
2639 replace `capitalized-words-mode'. Also, convert to lexical
2640 binding.
2641
2642 * progmodes/cap-words.el: Delete now-obsolete file.
2643 * progmodes/subword.el: Reimplement using
2644 `find-word-boundary-function-table'.
2645 (subword-mode-map): Hollow out.
2646 (capitalized-words-mode): Define as obsolete alias for
2647 `subword-mode'.
2648 (subword-mode, superword-mode): Tweak documentation to reflect new
2649 implementation; call `subword-setup-buffer'.
2650 (subword-forward, subword-capitalize): Add underscore to indicate
2651 unused variable.
2652 (subword-find-word-boundary-function-table): New constant.
2653 (subword-empty-char-table): New constant.
2654 (subword-setup-buffer): New function.
2655 (subword-find-word-boundary): New function.
2656
2657 2014-03-23 Daniel Colascione <dancol@dancol.org>
2658
2659 * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
2660 list to look for keyword arguments instead of `memq', fixing
2661 (Bug#3647) --- unfortunately, only for freshly-compiled code.
2662 Please make bootstrap.
2663
2664 2014-03-22 Glenn Morris <rgm@gnu.org>
2665
2666 * dired.el (dired-read-regexp): Make obsolete.
2667 (dired-mark-files-regexp, dired-mark-files-containing-regexp)
2668 (dired-flag-files-regexp):
2669 * dired-aux.el (dired-mark-read-regexp):
2670 * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
2671
2672 * startup.el (fancy-startup-text):
2673 * help.el (describe-gnu-project): Visit online info about GNU project.
2674
2675 * help-fns.el (help-fns--interactive-only): New function.
2676 (help-fns-describe-function-functions): Add the above function.
2677 * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
2678 (next-line, previous-line): Remove hand-written interactive-only
2679 information from doc strings, it is auto-generated now.
2680 * bookmark.el (bookmark-write):
2681 * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
2682 (epa-mail-import-keys): Mark interactive-only,
2683 and remove hand-written interactive-only information from doc strings.
2684 * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
2685 (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
2686 * files.el (not-modified):
2687 * simple.el (mark-whole-buffer): Mark interactive-only.
2688
2689 * emacs-lisp/byte-run.el (defun-declarations-alist):
2690 Add interactive-only. Doc tweak.
2691 (macro-declarations-alist): Doc tweak.
2692 * subr.el (declare): Doc tweak (add xref to manual).
2693 * comint.el (comint-run):
2694 * files.el (insert-file-literally, insert-file):
2695 * replace.el (replace-string, replace-regexp):
2696 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
2697 (delete-forward-char, goto-line, insert-buffer, next-line)
2698 (previous-line): Set interactive-only via declare.
2699
2700 2014-03-22 Dmitry Gutov <dgutov@yandex.ru>
2701
2702 * emacs-lisp/package.el (package-desc): Use the contents of the
2703 quoted form, not its cdr. (Bug#16873)
2704
2705 2014-03-22 Juanma Barranquero <lekktu@gmail.com>
2706
2707 * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
2708 benefit of doc.c; change parameter profile to match the X function.
2709
2710 2014-03-22 Leo Liu <sdl.web@gmail.com>
2711
2712 * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
2713 (temp-buffer-show-hook): Remove help-mode-finish. (Bug#16038)
2714
2715 2014-03-21 Richard Stallman <rms@gnu.org>
2716
2717 * battery.el (battery-linux-sysfs): Search for each field
2718 from the beginning of the buffer.
2719
2720 * subr.el (set-transient-map): Clear out function and value
2721 of the temporary symbol when we're done with it.
2722
2723 * mail/rmailsum.el (rmail-summary-delete-forward):
2724 Optimize case of reaching end and handling count.
2725 (rmail-summary-mark-deleted): Optimize when N is current msg.
2726 Don't create new summary line.
2727 (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
2728 (rmail-summary-undelete-many): Rewrite for speed.
2729 (rmail-summary-msg-number): New function.
2730
2731 * mail/rmail.el (rmail-delete-message): Update summary.
2732 (rmail-undelete-previous-message): Handle repeat count arg.
2733 (rmail-delete-backward, rmail-delete-forward): Likewise.
2734
2735 2014-03-21 Daniel Colascione <dancol@dancol.org>
2736
2737 * mail/emacsbug.el (report-emacs-bug): Include memory usage
2738 information in bug reports.
2739
2740 2014-03-21 Michael Albinus <michael.albinus@gmx.de>
2741
2742 * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
2743 and `tramp-copy-env'.
2744
2745 * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
2746 (tramp-maybe-open-connection): Handle `tramp-login-env'.
2747
2748 2014-03-21 Glenn Morris <rgm@gnu.org>
2749
2750 * electric.el (electric-indent-post-self-insert-function): Add doc.
2751
2752 2014-03-21 Dmitry Gutov <dgutov@yandex.ru>
2753
2754 * emacs-lisp/package.el (package-compute-transaction):
2755 Use `version-list-<=' to compare the requirement version against
2756 the version of package already to be installed. Update the error
2757 message. (Bug#16826)
2758
2759 * progmodes/ruby-mode.el (ruby-smie-rules):
2760 Add indentation rule for ` @ '. (Bug#17050)
2761
2762 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
2763
2764 * align.el (align-regexp): Remove superfluous backslash.
2765
2766 * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
2767 (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
2768 (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
2769 Fix docstring typos.
2770 (ffap-next): Use C-u in docstring.
2771 (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
2772 (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
2773 Remove superfluous backslashes.
2774 (ffap-string-at-point): Reflow docstring.
2775
2776 * server.el (server-host): Reflow docstring.
2777 (server-unload-function): Fix docstring typo.
2778 (server-eval-at): Remove superfluous backslash.
2779
2780 * skeleton.el (skeleton-insert): Remove superfluous backslash.
2781 (skeleton-insert): Doc fix.
2782 (skeleton-insert): Reflow docstring.
2783
2784 * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
2785 (tty-color-approximate, tty-color-by-index, tty-color-values)
2786 (tty-color-desc): Remove superfluous backslashes.
2787
2788 2014-03-21 Glenn Morris <rgm@gnu.org>
2789
2790 * cus-start.el (history-length): Bump :version.
2791
2792 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
2793 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
2794 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
2795 Don't set `make-backup-files'.
2796
2797 * info.el (info--prettify-description): New function,
2798 to give info-finder descriptions consistent case, punctuation.
2799 (Info-finder-find-node): Use it. Sort packages.
2800 Refer to "description" rather than "commentary".
2801
2802 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
2803
2804 * frameset.el (frameset--print-register): New function.
2805 (frameset-to-register): Use it.
2806
2807 2014-03-20 Juanma Barranquero <lekktu@gmail.com>
2808
2809 * progmodes/hideif.el (hif-string-to-number): New function.
2810 (hif-tokenize): Use it to understand non-decimal floats.
2811
2812 * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
2813
2814 * skeleton.el (skeleton-autowrap): Mark as obsolete. Doc fix.
2815
2816 2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2817
2818 * electric.el (electric-newline-and-maybe-indent): New command.
2819 Bind it globally to C-j.
2820 (electric-indent-mode): Don't mess with the global map any more.
2821 Don't drop the post-self-insert-hook is some buffer is still using it
2822 (bug#16770).
2823
2824 * bindings.el (global-map): Remove C-j binding.
2825
2826 * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
2827 the docstring of functions advised before dumping (bug#16993).
2828
2829 2014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change)
2830
2831 * ps-print.el (ps-generate-postscript-with-faces):
2832 Explicitly deactivate the mark (bug#16866).
2833 * simple.el (deactivate-mark): Update region highlight.
2834
2835 2014-03-19 Juanma Barranquero <lekktu@gmail.com>
2836
2837 * emacs-lisp/package.el (describe-package-1):
2838 Decode commentary (bug#16733).
2839
2840 2014-03-18 Juanma Barranquero <lekktu@gmail.com>
2841
2842 * custom.el (defcustom): Doc fix: recommend avoiding destructive
2843 modification of the value argument of :set (bug#16755).
2844
2845 2014-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
2846
2847 * simple.el (newline-and-indent): Do autofill (bug#17031).
2848
2849 2014-03-18 Dmitry Gutov <dgutov@yandex.ru>
2850
2851 * newcomment.el (comment-normalize-vars): Only add escaping check
2852 to `comment-start-skip' if not `comment-use-syntax'. (Bug#16971)
2853 (comment-beginning): Use `narrow-to-region' instead of moving back
2854 one character.
2855 (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
2856 (comment-start-skip): Update the docstring.
2857
2858 2014-03-18 Richard Stallman <rms@gnu.org>
2859
2860 * dired.el (dired-display-file): Force use of other window.
2861
2862 2014-03-18 Daniel Colascione <dancol@dancol.org>
2863
2864 * startup.el (tty-handle-args): Remove debug message from 2007.
2865
2866 2014-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
2867
2868 * emacs-lisp/nadvice.el (advice--interactive-form): New function.
2869 (advice--make-interactive-form): Use it to avoid (auto)loading function.
2870 (advice--make-1, advice-add, advice-remove):
2871 Remove braindead :advice-pending hack.
2872
2873 2014-03-17 Glenn Morris <rgm@gnu.org>
2874
2875 * calendar/calendar.el (calendar-generate-month): Apply weekend
2876 face to the right days; fixes 2013-08-06 change. (Bug#17028)
2877
2878 2014-03-17 Michael Albinus <michael.albinus@gmx.de>
2879
2880 * net/tramp.el (tramp-action-out-of-band): Read pending output.
2881 (tramp-call-process): Trace also DESTINATION.
2882
2883 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2884 Quote file names when they are local. Remove superfluous trace.
2885
2886 2014-03-17 Dmitry Gutov <dgutov@yandex.ru>
2887
2888 * newcomment.el (comment-beginning): If `comment-start-skip'
2889 doesn't match, move back one char and try again. (Bug#16971)
2890
2891 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2892 Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
2893 Set `comment-start-skip' to a simpler value that doesn't try to
2894 check if the semicolon is escaped (this is handled by
2895 `syntax-ppss' now). (Bug#16971)
2896
2897 * progmodes/scheme.el (scheme-mode-variables): Same.
2898
2899 2014-03-16 Martin Rudalics <rudalics@gmx.at>
2900
2901 Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
2902 * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
2903 current (Bug#16816, Bug#17007).
2904 (with-current-buffer-window): New macro doing the same as
2905 `with-temp-buffer-window' but with BUFFER-OR-NAME current.
2906 * help.el (help-print-return-message): Warn in doc-string to not
2907 use this in `with-help-window'.
2908 (describe-bindings-internal): Call `describe-buffer-bindings'
2909 from within help buffer. See Juanma's scenario in (Bug#16816).
2910 (with-help-window): Update doc-string.
2911 * dired.el (dired-mark-pop-up):
2912 * files.el (save-buffers-kill-emacs):
2913 * register.el (register-preview): Use `with-current-buffer-window'
2914 instead of `with-temp-buffer-window'.
2915
2916 2014-03-16 Juanma Barranquero <lekktu@gmail.com>
2917
2918 * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
2919 Implement inserting into current buffer, documented in their docstrings.
2920 (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
2921 (rst-section-tree-point, rst-forward-section, rst-indent)
2922 (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
2923 (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
2924 (rst-font-lock-handle-adornment-pre-match-form)
2925 (rst-repeat-last-character): Reflow docstrings.
2926 (rst-preferred-adornments, rst-update-section, rst-find-title-line)
2927 (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
2928 (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
2929 (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
2930 Fix docstring typos.
2931 (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
2932 (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
2933 (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
2934
2935 2014-03-15 Juanma Barranquero <lekktu@gmail.com>
2936
2937 * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
2938 for compatibility with other ports.
2939 (ns-initialize-window-system): Use it. It is set in term/common-win.el
2940 from the -xrm command line argument, but in the Nextstep port its value
2941 is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
2942
2943 * progmodes/python.el (defconst, python-syntax-count-quotes)
2944 (python-indent-region, python-indent-shift-right)
2945 (python-indent-dedent-line-backspace, python-nav-backward-sexp)
2946 (python-nav-backward-sexp-safe, python-nav-backward-up-list)
2947 (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
2948 (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
2949 (inferior-python-mode, python-shell-make-comint, run-python-internal)
2950 (python-shell-buffer-substring, python-shell-send-buffer)
2951 (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
2952 (python-completion-complete-at-point, python-fill-docstring-style)
2953 (python-eldoc-function, python-imenu-format-item-label)
2954 (python-imenu-format-parent-item-label)
2955 (python-imenu-format-parent-item-jump-label)
2956 (python-imenu--build-tree, python-imenu-create-index)
2957 (python-imenu-create-flat-index): Fix docstring typos.
2958 (python-indent-context, python-shell-prompt-regexp, run-python):
2959 Remove superfluous backslashes.
2960 (python-indent-line, python-nav-beginning-of-defun)
2961 (python-shell-get-buffer, python-shell-get-process)
2962 (python-info-current-defun, python-info-current-line-comment-p)
2963 (python-info-current-line-empty-p, python-util-popn): Doc fixes.
2964 (python-indent-post-self-insert-function, python-shell-send-file)
2965 (python-shell-completion-get-completions)
2966 (python-shell-completion-complete-or-indent)
2967 (python-eldoc--get-doc-at-point): Reflow docstrings.
2968
2969 2014-03-14 Glenn Morris <rgm@gnu.org>
2970
2971 * emacs-lisp/package.el (package-menu-mode-map):
2972 Replace use of obsolete function alias. Tweak menu item text.
2973
2974 * info.el (Info-finder-find-node):
2975 Ignore the `emacs' metapackage. (Bug#10813)
2976
2977 * finder.el (finder-list-matches): Include unversioned packages
2978 in the result of a keyword search.
2979
2980 * finder.el (finder--builtins-descriptions): New constant.
2981 (finder-compile-keywords): Use finder--builtins-descriptions.
2982
2983 2014-03-14 Dmitry Gutov <dgutov@yandex.ru>
2984
2985 * simple.el (blink-matching-paren): Describe the new value,
2986 `jump', enabling the old behavior.
2987 (blink-matching-open): Use that value. (Bug#17008)
2988
2989 2014-03-14 Glenn Morris <rgm@gnu.org>
2990
2991 * finder.el (finder-no-scan-regexp): Add leim-list.
2992 (finder-compile-keywords):
2993 Don't skip files with same basename. (Bug#14010)
2994 * Makefile.in (setwins_finder): New, excluding leim.
2995 (finder-data): Use setwins_finder.
2996
2997 * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
2998 (help-function-arglist, help-make-usage): Move from here...
2999 * help.el (help-split-fundoc, help-add-fundoc-usage)
3000 (help-function-arglist, help-make-usage): ... to here. (Bug#17001)
3001 * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
3002
3003 2014-03-14 Juanma Barranquero <lekktu@gmail.com>
3004
3005 * net/socks.el (socks, socks-override-functions)
3006 (socks-find-services-entry):
3007 * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
3008 (hif-find-ifdef-block):
3009 * progmodes/modula2.el (m2-indent): Fix docstring typos.
3010
3011 * net/tls.el (tls-program): Reflow docstring.
3012
3013 * progmodes/pascal.el (pascal-mode-abbrev-table)
3014 (pascal-imenu-generic-expression, pascal-auto-endcomments)
3015 (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
3016 (pascal-outline-mode): Fix docstring typos.
3017 (pascal-mode): Let define-derived-mode document mode hook.
3018 (pascal-uncomment-area): Reflow.
3019 (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
3020
3021 * progmodes/opascal.el (opascal-compound-block-indent)
3022 (opascal-case-label-indent): Fix docstring typos.
3023 (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
3024
3025 2014-03-13 Dmitry Gutov <dgutov@yandex.ru>
3026
3027 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3028 Fontify multiple adjacent negation chars. (Bug#17004)
3029
3030 2014-03-13 Tom Willemse <tom@ryuslash.org> (tiny change)
3031
3032 * emacs-lisp/package.el (package--prepare-dependencies):
3033 Accept requirements without explicit version (bug#14941).
3034
3035 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
3036
3037 * register.el (register-separator, copy-to-register): Doc fixes.
3038 (register-preview-default): Remove unnecessary call to concat.
3039
3040 * frameset.el (frameset-restore): When checking for a visible frame,
3041 use the action map instead of calling visible-frame-list.
3042
3043 2014-03-12 Jonas Bernoulli <jonas@bernoul.li>
3044
3045 * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
3046
3047 2014-03-12 Martin Rudalics <rudalics@gmx.at>
3048
3049 * window.el (fit-frame-to-buffer): Get maximum width from
3050 display's width instead of height.
3051
3052 2014-03-12 Glenn Morris <rgm@gnu.org>
3053
3054 * desktop.el (desktop-restore-frames)
3055 (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
3056 (desktop-restore-reuses-frames): Doc tweaks.
3057
3058 * electric.el (electric-indent-mode): Doc fix.
3059
3060 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
3061
3062 * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
3063 (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
3064 (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
3065 (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
3066 (cvs-dired-use-hook): Fix docstring typos.
3067 (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
3068 Doc fixes.
3069
3070 * vc/pcvs-defs.el (cvs-auto-remove-handled)
3071 (cvs-auto-remove-directories, cvs-default-ignore-marks)
3072 (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
3073 (cvs-execute-single-dir): Fix docstring typos.
3074
3075 * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
3076 (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
3077
3078 * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
3079
3080 * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
3081 Fix docstring typos.
3082
3083 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
3084
3085 * frameset.el (frameset--jump-to-register): Add autoload; it could be
3086 called from jump-to-register after unloading the frameset package.
3087
3088 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3089
3090 * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
3091 (bug#16975). Deactivate the mark before setting it to nil.
3092 (activate-mark): Do nothing if region is already active.
3093
3094 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
3095
3096 * frameset.el (frameset--target-display): Remove definition; declare.
3097 (frameset-save, frameset-restore): Let-bind frameset--target-display.
3098
3099 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3100
3101 * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
3102 (advice-add): Add a :advice--pending marker, so advice--make-1 knows
3103 when the advice is pending.
3104 (advice-remove): Remove this marker when not needed any more.
3105
3106 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
3107
3108 * frameset.el: Separate options for reusing frames and cleaning up.
3109 (frameset--reuse-list): Remove definition; declare.
3110 (frameset--action-map): Declare.
3111 (frameset--find-frame-if): Doc fix.
3112 (frameset--restore-frame): Cache frame action.
3113 (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
3114 how to clean up the frame list after restoring. Remove cleaning
3115 options from REUSE-FRAMES. Change all keyword values to symbols.
3116 (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
3117
3118 * desktop.el (desktop-restore-forces-onscreen)
3119 (desktop-restore-reuses-frames): Use non-keyword values.
3120 (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
3121
3122 2014-03-10 Glenn Morris <rgm@gnu.org>
3123
3124 * files.el (find-file): Doc fix: update info node name.
3125
3126 * emacs-lisp/advice.el (ad-add-advice, defadvice):
3127 Doc fix: remove references to deleted info nodes.
3128
3129 2014-03-10 Michael Albinus <michael.albinus@gmx.de>
3130
3131 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
3132 Do not add `nil' to the environment, when there's no remote `locale'.
3133 (tramp-find-inline-encoding): Check, that the remote host has
3134 installed perl, before sending scripts.
3135
3136 2014-03-10 Leo Liu <sdl.web@gmail.com>
3137
3138 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
3139 Clear eldoc-last-message. (Bug#16920)
3140
3141 2014-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
3142
3143 * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
3144 (bug#14430).
3145
3146 2014-03-09 Juri Linkov <juri@jurta.org>
3147
3148 * ansi-color.el (ansi-color-names-vector): Copy default colors
3149 from `xterm-standard-colors' that look well on the default white
3150 background (and also on the black background) to avoid illegible
3151 color combinations like yellow-on-white and white-on-white.
3152 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
3153
3154 2014-03-08 Juanma Barranquero <lekktu@gmail.com>
3155
3156 * frameset.el (frameset-restore): When no frame is visible, do not
3157 generate a list of frames, just make visible the selected one.
3158
3159 2014-03-08 Dmitry Gutov <dgutov@yandex.ru>
3160
3161 * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
3162 it only contains the repository root. (Bug#16897)
3163
3164 2014-03-07 Michael Albinus <michael.albinus@gmx.de>
3165
3166 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
3167 only when `remote-file-name-inhibit-cache' is nil.
3168 (tramp-sh-file-name-handler): Use `tramp-error'. Simplify code.
3169
3170 2014-03-06 Martin Rudalics <rudalics@gmx.at>
3171
3172 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
3173 Fix doc-strings.
3174 (fit-frame-to-buffer): New argument ONLY. Remove dependency on
3175 fit-frame-to-buffer variable. Fix doc-string.
3176 (fit-window-to-buffer): Set ONLY argument in call of
3177 fit-frame-to-buffer. Fix doc-string.
3178
3179 2014-03-06 Michael Albinus <michael.albinus@gmx.de>
3180
3181 * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
3182 (tramp-action-password): Clear password cache if needed.
3183 (tramp-read-passwd): Do not clear password cache.
3184
3185 * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
3186 cache unless it is the first password request.
3187
3188 2014-03-06 Glenn Morris <rgm@gnu.org>
3189
3190 * simple.el (newline): Doc tweak.
3191
3192 * emacs-lisp/shadow.el (load-path-shadows-find):
3193 Ignore dir-locals. (Bug#12357)
3194
3195 2014-03-05 Glenn Morris <rgm@gnu.org>
3196
3197 * files.el (interpreter-mode-alist):
3198 * progmodes/sh-script.el (sh-ancestor-alist): Add dash. (Bug#16938)
3199
3200 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
3201
3202 * frameset.el (frameset--initial-params): Filter out null entries.
3203
3204 2014-03-05 Martin Rudalics <rudalics@gmx.at>
3205
3206 * window.el (window-min-height, window-min-width):
3207 Rewrite doc-strings.
3208 (window-body-size): Add PIXELWISE argument to make it consistent
3209 with its callees.
3210
3211 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
3212
3213 * finder.el (finder-mode-map, finder-mode-syntax-table):
3214 Revert part of 2014-02-28 change.
3215
3216 2014-03-05 Lars Ingebrigtsen <larsi@gnus.org>
3217
3218 * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
3219 (eww-setup-buffer): Clear next/prev/etc more reliably.
3220 (eww-textarea-map): [tab] doesn't work on tty.
3221 Reported by Mario Lang.
3222
3223 * net/shr.el (shr-map): Ditto.
3224
3225 2014-03-04 Glenn Morris <rgm@gnu.org>
3226
3227 * minibuffer.el (completion-hilit-commonality):
3228 Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
3229
3230 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
3231
3232 * hilit-chg.el (hilit-chg-unload-function): New function.
3233 (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
3234 (hilit-chg-map-changes): Prefer cardinal number to digit.
3235 (hilit-chg-display-changes): Reflow docstring.
3236 (highlight-changes-rotate-faces): Remove superfluous backslash.
3237
3238 2014-03-04 Michael Albinus <michael.albinus@gmx.de>
3239
3240 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
3241 `tramp-send-command-and-check'.
3242
3243 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
3244
3245 * hexl.el (hexl-address-region, hexl-ascii-region)
3246 (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
3247 (hexl-backward-short, hexl-forward-short, hexl-backward-word)
3248 (hexl-forward-word, hexl-previous-line, hexl-next-line):
3249 Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
3250 (hexl-mode): Doc fix.
3251 (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
3252 (hexl-mode-ruler): Fix typos in docstrings.
3253
3254 * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
3255 (strokes-character, strokes-get-grid-position, strokes-list-strokes):
3256 Remove superfluous backslashes.
3257 (strokes-last-stroke, strokes-global-map, strokes-mode):
3258 Reflow docstrings.
3259 (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
3260 (strokes-xpm-for-compressed-string): Use quotes with buffer name.
3261 (strokes-distance-squared, strokes-global-set-stroke)
3262 (strokes-global-set-stroke-string): Doc fixes.
3263 (strokes-help): Fix typos; reflow docstring.
3264
3265 2014-03-04 Martin Rudalics <rudalics@gmx.at>
3266
3267 * window.el (window-in-direction): Fix doc-string.
3268
3269 2014-03-04 Glenn Morris <rgm@gnu.org>
3270
3271 * emacs-lisp/smie.el (smie-config-guess): Doc fix.
3272 Explicit error if no grammar.
3273 (smie-config-save): Doc fix. Fix quote typo.
3274
3275 2014-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
3276
3277 * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
3278 electric-indent-mode-hook if we obey electric-indent-mode.
3279 (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
3280 decide whether we obey electric-indent-mode.
3281 (c-change-set-fl-decl-start, c-extend-after-change-region):
3282 Silence warnings.
3283 (c-electric-indent-mode-hook): Assume we do want to obey
3284 electric-indent-mode.
3285
3286 * electric.el (electric-indent-mode-has-been-called): Remove.
3287 (electric-indent-mode): Fix accordingly.
3288
3289 * files.el (hack-local-variables): Mention file name in warning.
3290
3291 * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
3292
3293 2014-03-04 Michal Nazarewicz <mina86@mina86.com>
3294
3295 * bindings.el: Add comment describing why C-d binds to `delete-char'.
3296 * simple.el (delete-forward-char): Mark as interactive-only.
3297
3298 2014-03-03 Juanma Barranquero <lekktu@gmail.com>
3299
3300 * icomplete.el (icomplete-completions):
3301 Follow-up to 2014-03-01 change.
3302
3303 * icomplete.el: Miscellaneous doc fixes.
3304 Use Icomplete everywhere instead of icomplete for consistency.
3305 (icomplete-max-delay-chars): Fix typo.
3306 (icomplete-mode): Use \[].
3307 (icomplete-tidy, icomplete-exhibit): Reflow.
3308 (icomplete-minibuffer-setup-hook, icomplete-completions):
3309 Remove superfluous backlashes.
3310
3311 * ido.el: Miscellaneous doc fixes.
3312 Use Ido everywhere instead of ido or `ido' for consistency.
3313 (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
3314 (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
3315 (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
3316 (ido-separator): Extract obsolescence info from docstring and declare
3317 with make-obsolete-variable.
3318 (ido-minibuffer-setup-hook): Simplify example.
3319 (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
3320 (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
3321 (ido-completion-help, ido-completing-read): Fix typos in docstrings.
3322 (ido-everywhere): Reflow docstring.
3323 (ido-toggle-vc): Doc fix.
3324 (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
3325 of long list of keybindings.
3326
3327 2014-03-03 Glenn Morris <rgm@gnu.org>
3328
3329 * frame.el (display-pixel-height, display-pixel-width)
3330 (display-mm-dimensions-alist, display-mm-height)
3331 (display-mm-width): Doc tweaks.
3332
3333 2014-03-02 Barry O'Reilly <gundaetiapo@gmail.com>
3334
3335 * simple.el (undo-elt-in-region): Fix buffer corruption for edge
3336 case of undo in region.
3337
3338 2014-03-02 Martin Rudalics <rudalics@gmx.at>
3339
3340 * window.el (fit-window-to-buffer): Fix argument in window-size
3341 call when window is horizontally combined.
3342
3343 2014-03-02 Juanma Barranquero <lekktu@gmail.com>
3344
3345 * icomplete.el (icomplete-completions): Use string-width.
3346 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
3347
3348 2014-03-01 Dmitry Gutov <dgutov@yandex.ru>
3349
3350 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3351 Highlight regexp options. (Bug#16914)
3352
3353 2014-03-01 Martin Rudalics <rudalics@gmx.at>
3354
3355 * window.el (window--max-delta-1): Round down when calculating
3356 how many lines/columns we can get from a window.
3357
3358 2014-03-01 Glenn Morris <rgm@gnu.org>
3359
3360 * isearch.el (search-invisible): Doc fix.
3361
3362 * minibuffer.el (completion-hilit-commonality):
3363 Make `base-size' argument optional. Short-cut if `prefix-len' is 0.
3364 * comint.el (comint-dynamic-list-completions): Doc fix.
3365 * comint.el (comint-dynamic-list-completions):
3366 * filecache.el (file-cache-minibuffer-complete):
3367 * tempo.el (tempo-display-completions):
3368 * eshell/em-hist.el (eshell-list-history):
3369 Replace use of obsolete argument of display-completion-list.
3370
3371 2014-03-01 Juanma Barranquero <lekktu@gmail.com>
3372
3373 * icomplete.el (icomplete-completions):
3374 Revert back to using "..." when ?… cannot be displayed.
3375
3376 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
3377
3378 * finder.el (finder-unload-function): New function.
3379
3380 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
3381
3382 * dframe.el (dframe-detach):
3383 * find-dired.el (find-dired, find-name-dired):
3384 * finder.el (finder-mode-map, finder-mode-syntax-table)
3385 (finder-headmark, finder-select, finder-mouse-select):
3386 Fix docstring typos.
3387
3388 2014-02-28 Martin Rudalics <rudalics@gmx.at>
3389
3390 Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
3391 * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
3392 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
3393 Fix doc-string based on a suggestion by Nicolas Richard
3394 <theonewiththeevillook@yahoo.fr>.
3395 * help.el (with-help-window): Fix doc-string.
3396
3397 2014-02-28 Ivan Kanis <ivan@kanis.fr>
3398
3399 * net/shr.el (shr-image-animate): New option.
3400 (shr-put-image): Respect shr-image-animate.
3401
3402 2014-02-28 Michael Albinus <michael.albinus@gmx.de>
3403
3404 * net/tramp-adb.el (tramp-adb-parse-device-names):
3405 Use `accept-process-output'.
3406 (tramp-adb-handle-file-truename): Cache the localname only.
3407 (tramp-adb-handle-make-directory)
3408 (tramp-adb-handle-delete-directory): Flush file properties correctly.
3409 (tramp-adb-handle-set-file-modes): Do not raise an error when file
3410 modes cannot be changed.
3411
3412 * net/tramp-cache.el (tramp-flush-directory-property): Remove also
3413 file properties of symlinks.
3414
3415 2014-02-28 Per Starbäck <starback@stp.lingfil.uu.se>
3416
3417 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
3418 required/optional fields to match development biblatex. (Bug#16781)
3419
3420 2014-02-28 Andy Sawyer <andy.sawyer@gmail.com> (tiny change)
3421
3422 * saveplace.el (toggle-save-place):
3423 Fix argument handling. (Bug#16673)
3424
3425 2014-02-28 Glenn Morris <rgm@gnu.org>
3426
3427 * minibuffer.el (completions-first-difference)
3428 (completions-common-part, completion-hilit-commonality): Doc fixes.
3429
3430 2014-02-28 Karl Berry <karl@gnu.org>
3431
3432 * info.el (Info-mode-map): Add H for describe-mode,
3433 to synchronize with standalone Info.
3434
3435 2014-02-28 Emilio C. Lopes <eclig@gmx.net>
3436
3437 * progmodes/sql.el (sql-interactive-mode):
3438 Avoid setting global comint-input-ring-separator. (Bug#16814)
3439
3440 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
3441
3442 * net/dbus.el (dbus--init-bus): Declare function.
3443 (dbus-path-local, dbus-interface-local): New defconst.
3444 (dbus-init-bus): Use them.
3445 (dbus-return-values-table): Extend doc.
3446 (dbus-handle-bus-disconnect): Extend error message.
3447
3448 2014-02-27 Juanma Barranquero <lekktu@gmail.com>
3449
3450 * subr.el (y-or-n-p): Fix double space issue in message.
3451
3452 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
3453
3454 * net/tramp.el (tramp-call-process): Improve trace message.
3455 (tramp-handle-insert-file-contents): Trace error case.
3456
3457 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
3458 <insert-directory>: Use `tramp-handle-insert-directory'.
3459 (tramp-adb-handle-insert-directory): Remove function.
3460 (tramp-adb-send-command-and-check): New defun, replacing
3461 `tramp-adb-command-exit-status'. Change all callees.
3462 (tramp-adb-handle-file-attributes)
3463 (tramp-adb-handle-directory-files-and-attributes): Use it.
3464 (tramp-adb-ls-output-name-less-p):
3465 Use `directory-listing-before-filename-regexp'.
3466 (tramp-adb-handle-delete-directory): Flush also file properties of
3467 the truename of directory.
3468 (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
3469 (tramp-adb-handle-file-local-copy): Make the local copy readable.
3470 (tramp-adb-handle-write-region): Implement APPEND.
3471 (tramp-adb-handle-rename-file): Make it more robust. Flush file
3472 properties correctly.
3473 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
3474 variables. Check for connected devices only when needed.
3475
3476 2014-02-27 Glenn Morris <rgm@gnu.org>
3477
3478 * minibuffer.el (completion-table-dynamic)
3479 (completion-table-with-cache): Doc fixes.
3480
3481 * emacs-lisp/crm.el (crm-default-separator, crm-separator)
3482 (completing-read-multiple): Doc fixes.
3483
3484 2014-02-27 Daniel Colascione <dancol@dancol.org>
3485
3486 * minibuffer.el (completion--nth-completion): Fix indentation.
3487
3488 * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
3489 explicit tramp path is empty.
3490
3491 2014-02-27 Glenn Morris <rgm@gnu.org>
3492
3493 * emacs-lisp/crm.el (completing-read-multiple):
3494 Empower help-enable-auto-load.
3495
3496 2014-02-26 Glenn Morris <rgm@gnu.org>
3497
3498 * startup.el (command-line): Don't init the tty in daemon mode.
3499
3500 Avoid calling tty-setup-hook twice, eg if a term file
3501 explicitly calls tty-run-terminal-initialization. (Bug#16859)
3502 * faces.el (tty-run-terminal-initialization): Add run-hook argument.
3503 (tty-create-frame-with-faces): Use it.
3504 * startup.el (command-line): Pass run-hook argument
3505 to tty-run-terminal-initialization.
3506
3507 * dired.el (dired-restore-desktop-buffer): Demote errors;
3508 eg in case a glob match fails. (Bug#16884)
3509
3510 2014-02-26 Dmitry Gutov <dgutov@yandex.ru>
3511
3512 * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
3513 error from `read-from-string'. (Bug#16850)
3514
3515 * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
3516 result of `completing-read' in the interactive form. (Bug#16854)
3517
3518 2014-02-25 Glenn Morris <rgm@gnu.org>
3519
3520 * image.el (image-animate, image-animate-timeout):
3521 Stop animating images in dead buffers. (Bug#16878)
3522
3523 * emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
3524
3525 * faces.el (tty-setup-hook, tty-run-terminal-initialization):
3526 Doc fixes.
3527 * startup.el (term-setup-hook): Doc fix. Make obsolete.
3528 * term/sun.el (sun-raw-prefix-hooks):
3529 Use tty-setup-hook instead of term-setup-hook.
3530 (terminal-init-sun): Construct message from bytecomp plist.
3531 * term/wyse50.el (enable-arrow-keys): Doc fix.
3532
3533 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
3534
3535 * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
3536 Fix docstring typos.
3537
3538 2014-02-24 Michael Albinus <michael.albinus@gmx.de>
3539
3540 * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
3541
3542 2014-02-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
3543
3544 * minibuffer.el (completion--try-word-completion):
3545 Fix error when completing M-x commands (bug#16808).
3546
3547 2014-02-24 Leo Liu <sdl.web@gmail.com>
3548
3549 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
3550
3551 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
3552
3553 * apropos.el (apropos-print): Avoid formatting error when
3554 apropos-do-all and apropos-compact-layout are both t.
3555
3556 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
3557
3558 * apropos.el (apropos-property, apropos-all-words-regexp)
3559 (apropos-true-hit, apropos-variable, apropos-print):
3560 Fix docstring typos, and remove obsolete comment.
3561
3562 2014-02-23 Michael Albinus <michael.albinus@gmx.de>
3563
3564 * net/tramp-sh.el (tramp-sh-handle-file-truename):
3565 Preserve trailing "/". (Bug#16851)
3566
3567 2014-02-23 Dmitry Gutov <dgutov@yandex.ru>
3568
3569 * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
3570 after `=>' (bug#16811).
3571 (ruby-smie-rules): Handle the inconsistent second element of the
3572 list returned by `smie-indent--parent'.
3573 (ruby-font-lock-keywords): Disqualify any identifier before `=' as
3574 method call.
3575
3576 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
3577
3578 * elec-pair.el (electric-pair-text-syntax-table)
3579 (electric-pair-syntax-info, electric-pair--syntax-ppss)
3580 (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
3581 (electric-pair--looking-at-unterminated-string-p): Doc fix.
3582 (electric-pair--inside-string-p): Doc fix. Use `let', not `let*'.
3583
3584 2014-02-22 Glenn Morris <rgm@gnu.org>
3585
3586 * imenu.el (imenu--generic-function): Doc fix.
3587
3588 * register.el (frame-configuration-to-register): Make obsolete.
3589
3590 2014-02-22 Juanma Barranquero <lekktu@gmail.com>
3591
3592 * desktop.el (desktop-save-buffer-p): Do not fail when
3593 desktop-files-not-to-save is nil. Return t for true result
3594 as the doc says.
3595
3596 2014-02-22 Daniel Colascione <dancol@dancol.org>
3597
3598 * net/secrets.el (secrets-create-item, secrets-search-items):
3599 Check that attribute values are strings, avoiding the construction
3600 of invalid dbus messages.
3601
3602 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3603
3604 * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
3605 defun-declarations-alist.
3606
3607 2014-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
3608
3609 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
3610 (bug#16829).
3611
3612 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3613
3614 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
3615 (whitespace-newline, whitespace-trailing, whitespace-line)
3616 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
3617 (whitespace-space-after-tab): Fix typo in docstrings.
3618
3619 2014-02-21 Dmitry Gutov <dgutov@yandex.ru>
3620
3621 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
3622
3623 * electric.el (electric-indent-functions-without-reindent):
3624 Add `yaml-indent-line'.
3625
3626 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3627
3628 * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
3629 It has done nothing for years; should be removed after the release.
3630
3631 * simple.el (choose-completion): Fix docstring typo.
3632 (read-quoted-char-radix): Remove unneeded * in docstring.
3633 (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
3634 Don't escape parentheses unnecessarily in docstrings.
3635
3636 2014-02-21 Martin Rudalics <rudalics@gmx.at>
3637
3638 Fix handling of window-min-height/-width (Bug#16738).
3639 * window.el (window--dump-window, window--dump-frame):
3640 New functions.
3641 (window--min-size-1): Account for window dividers.
3642 When window-resize-pixelwise is nil, delay rounding till after the
3643 sum of the window components has been calculated.
3644 (window--min-delta-1, window--max-delta-1): When PIXELWISE is
3645 nil make sure at least one text line and two text columns remain
3646 fully visible.
3647 (window-resize): Signal an error when window-resize-apply fails.
3648 (window--resize-child-windows): Fix calculation of by how many
3649 pixels a window can still be shrunk via window-new-normal.
3650 (adjust-window-trailing-edge): Call window--resizable with
3651 correct TRAIL argument.
3652
3653 (with-temp-buffer-window): Don't evaluate BODY within
3654 with-current-buffer (Bug#16816).
3655
3656 2014-02-21 Michael Albinus <michael.albinus@gmx.de>
3657
3658 * net/tramp.el (tramp-check-cached-permissions):
3659 Call `file-attributes' with `suffix' being a symbol but a string.
3660
3661 2014-02-21 Daniel Colascione <dancol@dancol.org>
3662
3663 * net/dbus.el (dbus-init-bus-1): Declare new subr.
3664 (dbus-init-bus): New function: call into dbus-init-bus-1
3665 and installs a handler for the disconnect signal.
3666 (dbus-call-method): Rewrite to look for result in cons.
3667 (dbus-call-method-handler): Store result in cons.
3668 (dbus-check-event): Recognize events with nil sender as valid.
3669 (dbus-handle-bus-disconnect): New function. React to bus
3670 disconnection signal by synthesizing dbus error for each
3671 pending synchronous or asynchronous call.
3672 (dbus-notice-synchronous-call-errors): New function.
3673 (dbus-handle-event): Raise errors directly only when `dbus-debug'
3674 is true, not all the time.
3675
3676 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
3677
3678 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
3679 Remove obsolescence declarations, these variables do not exist anymore.
3680
3681 * savehist.el (savehist-save-minibuffer-history)
3682 (savehist-additional-variables, savehist-file, savehist-mode-hook)
3683 (savehist-save-hook, savehist-coding-system, savehist-loaded)
3684 (savehist-load, savehist-install, savehist-autosave): Fix typos;
3685 mostly, refer to "Savehist mode" when talking about the mode,
3686 and not the function.
3687
3688 * saveplace.el (save-place): Remove redundant info in docstring.
3689 (save-place-forget-unreadable-files, toggle-save-place)
3690 (save-place-forget-unreadable-files, save-place-dired-hook):
3691 Fix typos and remove unneeded backslashes.
3692
3693 2014-02-20 Michael Albinus <michael.albinus@gmx.de>
3694
3695 * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
3696 (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
3697
3698 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3699 <insert-directory>: Use `tramp-handle-insert-directory'.
3700 (tramp-gvfs-handle-insert-directory): Remove function.
3701
3702 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
3703 Call `tramp-handle-insert-directory'.
3704
3705 2014-02-20 Juanma Barranquero <lekktu@gmail.com>
3706
3707 * elec-pair.el (electric-pair-syntax-info): Do not check syntax
3708 before the start of buffer/region (bug#16799).
3709
3710 2014-02-20 Glenn Morris <rgm@gnu.org>
3711
3712 * isearch.el (search-invisible): Doc fix.
3713
3714 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change)
3715
3716 * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
3717 (bug#16657).
3718
3719 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
3720
3721 * frameset.el (frameset-restore): Delay removing an old frame's
3722 duplicate id until the new frame has been correctly created.
3723
3724 2014-02-19 Michael Albinus <michael.albinus@gmx.de>
3725
3726 * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
3727 (tramp-check-cached-permissions): Call `file-attributes' if the
3728 cache is empty.
3729
3730 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
3731 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
3732
3733 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3734 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
3735 (tramp-gvfs-maybe-open-connection): Set always connection
3736 properties, even if target is mounted already.
3737
3738 * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
3739 Set tramp-autoload cookie.
3740 (tramp-get-remote-touch): New defun.
3741 (tramp-sh-handle-set-file-times): Use it.
3742 (tramp-sh-handle-directory-files-and-attributes):
3743 Use `tramp-handle-directory-files-and-attributes' if neither stat
3744 nor perl are available on the remote host.
3745
3746 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
3747 "/". Write long listing only when "l" belongs to the switches.
3748
3749 * net/trampver.el: Update release number.
3750
3751 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
3752
3753 * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
3754
3755 2014-02-19 Martin Rudalics <rudalics@gmx.at>
3756
3757 * window.el (window-state-put): Allow WINDOW to refer to an
3758 internal window (Bug#16793).
3759
3760 2014-02-19 Glenn Morris <rgm@gnu.org>
3761
3762 * textmodes/remember.el: Move provide statement to end.
3763 (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
3764 (remember-notes): Doc fixes.
3765
3766 2014-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
3767
3768 * delsel.el (delete-char): Restore incorrectly erased property
3769 (bug#16795).
3770
3771 2014-02-18 Juanma Barranquero <lekktu@gmail.com>
3772
3773 * frameset.el (frameset--restore-frame): When a frame is being reused
3774 and its root window is not alive, delete all the frame's windows before
3775 restoring the window state. This works around the issue in bug#16793.
3776
3777 2014-02-18 Glenn Morris <rgm@gnu.org>
3778
3779 * textmodes/remember.el (remember-data-directory)
3780 (remember-directory-file-name-format, remember-store-in-files)
3781 (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
3782 (remember-notes-save-and-bury-buffer)
3783 (remember-notes--kill-buffer-query): Doc fixes.
3784
3785 * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
3786
3787 2014-02-17 Alan Mackenzie <acm@muc.de>
3788
3789 Connect electric-indent-mode up with CC Mode. Bug #15478.
3790 * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
3791 to electric-indent-{,local-}-mode.
3792 (c-basic-common-init): Set electric-indent-inhibit.
3793 Initialise c-electric-flag from electric-indent-mode.
3794 (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
3795 New hook functions which propagate electric-indent-mode to CC mode.
3796
3797 * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
3798 hit, toggle electric-indent-local-mode.
3799
3800 * electric.el (electric-indent-mode-has-been-called):
3801 New variable.
3802
3803 2014-02-17 Juanma Barranquero <lekktu@gmail.com>
3804
3805 * frameset.el (frameset-cfg-id): New function.
3806 (frameset--reuse-frame, frameset-restore): Use it.
3807 (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
3808
3809 2014-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
3810
3811 * ido.el (ido-file-internal): Remove unused var `d'.
3812 Use \` for to match BoS. Fit within 80n columns.
3813
3814 2014-02-17 Daniel Colascione <dancol@dancol.org>
3815
3816 * net/dbus.el (dbus-call-method): Work around bug#16775 by having
3817 dbus-call-method check for completion using a busy-wait loop with
3818 gradual backoff.
3819
3820 2014-02-16 Michael Albinus <michael.albinus@gmx.de>
3821
3822 Sync with Tramp 2.2.9.
3823
3824 * net/trampver.el: Update release number.
3825
3826 2014-02-16 Dmitry Gutov <dgutov@yandex.ru>
3827
3828 * ido.el (ido-file-internal): Don't add the name of an existing
3829 directory twice. (Bug#16747)
3830
3831 2014-02-16 Glenn Morris <rgm@gnu.org>
3832
3833 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
3834 Do not use ediff-defvar-local on pre-defined variables. (Bug#16744)
3835
3836 2014-02-15 Michael R. Mauger <michael@mauger.com>
3837
3838 * progmodes/sql.el: Version 3.4
3839 (sql-oracle-options): New default value ("-L").
3840 (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
3841 (sql-placeholders-filter): Correct placeholder pattern.
3842 (sql-read-table-name): Bug fix. Detect absence of SQLi process.
3843 (sql-login-delay): New variable.
3844 (sql-product-interactive): Use it.
3845
3846 2014-02-15 Juanma Barranquero <lekktu@gmail.com>
3847
3848 * frameset.el (frameset--jump-to-register): Check that buffer is live
3849 (bug#16749).
3850
3851 2014-02-15 Glenn Morris <rgm@gnu.org>
3852
3853 * info.el (info-initialize): Revert 2014-01-10 change.
3854
3855 2014-02-14 Glenn Morris <rgm@gnu.org>
3856
3857 * replace.el (map-query-replace-regexp)
3858 (read-regexp-defaults-function, read-regexp): Doc fixes.
3859
3860 * dired.el (dired-read-regexp):
3861 * faces.el (list-faces-display):
3862 * misearch.el (multi-isearch-read-matching-buffers)
3863 (multi-isearch-read-matching-files):
3864 * play/cookie1.el (cookie-apropos):
3865 * progmodes/grep.el (grep-read-regexp): Doc fixes.
3866
3867 * textmodes/remember.el (remember): Use frameset-to-register
3868 rather than frame-configuration-to-register.
3869
3870 2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
3871
3872 * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
3873 incorrect keybinding.
3874
3875 2014-02-13 Daniel Colascione <dancol@dancol.org>
3876
3877 * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
3878 when adding overlays so that line numbers from compiler match line
3879 numbers we use.
3880
3881 2014-02-13 Glenn Morris <rgm@gnu.org>
3882
3883 * mail/rmail.el (rmail-probe): Be less strict. (Bug#16743)
3884
3885 * jit-lock.el (jit-lock-mode): Doc fix.
3886
3887 2014-02-13 Juanma Barranquero <lekktu@gmail.com>
3888
3889 * apropos.el (apropos-read-pattern): When the user passes an empty
3890 string, give a more helpful error message than "Wrong type
3891 argument: stringp, nil".
3892
3893 2014-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
3894
3895 * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
3896
3897 2014-02-13 Glenn Morris <rgm@gnu.org>
3898
3899 * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
3900
3901 2014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
3902
3903 * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
3904 shift-select commands.
3905
3906 2014-02-12 Dmitry Gutov <dgutov@yandex.ru>
3907
3908 * progmodes/js.el (js-indent-line): Don't widen.
3909 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
3910
3911 2014-02-12 Glenn Morris <rgm@gnu.org>
3912
3913 * icomplete.el (icomplete): Add info-link to defgroup.
3914 (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
3915 (icomplete-minibuffer-map, icomplete-mode)
3916 (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
3917
3918 * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
3919 (package-menu-filter): Rename from package-menu-filter-interactive.
3920 Doc fix.
3921
3922 2014-02-11 Juanma Barranquero <lekktu@gmail.com>
3923
3924 * frameset.el (frameset--jump-to-register): Select the required
3925 window and buffer before restoring position (bug#16696).
3926
3927 2014-02-11 Lars Ingebrigtsen <larsi@gnus.org>
3928
3929 * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
3930
3931 2014-02-10 Glenn Morris <rgm@gnu.org>
3932
3933 * jit-lock.el (jit-lock-force-redisplay): Doc fix. (Bug#14394)
3934
3935 2014-02-10 Eli Zaretskii <eliz@gnu.org>
3936
3937 * w32-common-fns.el (x-get-selection): Doc fix.
3938 * select.el (x-get-selection): Doc fix. (Bug#15109)
3939
3940 * face-remap.el (face-remap-add-relative)
3941 (face-remap-remove-relative, face-remap-reset-base)
3942 (face-remap-set-base): Call force-mode-line-update to redisplay
3943 the current buffer due to potential change in faces. (Bug#16709)
3944
3945 2014-02-10 Michael Albinus <michael.albinus@gmx.de>
3946
3947 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
3948 script more robustly.
3949
3950 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
3951
3952 * dired.el (dired-get-marked-files): Doc fix (bug#11534).
3953
3954 * simple.el (choose-completion): Doc fix (bug#14160).
3955
3956 * subr.el (event-start): Say what a nil EVENT value means.
3957
3958 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
3959 (bug#14197).
3960
3961 * progmodes/grep.el (find-program): Doc fix (bug#14289).
3962
3963 * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
3964
3965 * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
3966
3967 * files.el (confirm-kill-emacs): Allow specifying an arbitrary
3968 predicate function (bug#15455).
3969
3970 2014-02-10 Dmitry Gutov <dgutov@yandex.ru>
3971
3972 * ielm.el (inferior-emacs-lisp-mode): Instead of
3973 `comment-use-global-state', set `comment-use-syntax'.
3974
3975 2014-02-10 Glenn Morris <rgm@gnu.org>
3976
3977 * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
3978
3979 2014-02-09 Alan Mackenzie <acm@muc.de>
3980
3981 Fix c-invalidate-state-cache on narrowed buffers.
3982 * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
3983 Widen when setting and clearing the CPP delimiter properties.
3984
3985 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
3986
3987 * help.el (describe-bindings): Doc fix (bug#9888).
3988
3989 * files.el (save-buffer): Use ARG as the parameter name for
3990 consistency (bug#10346).
3991 (save-buffer): Clarify the 0 argument (bug#10346).
3992
3993 * cus-edit.el (customize-apropos): Fix error string.
3994 (custom-buffer-create): Doc fix (bug#11122).
3995 (custom-sort-items): Doc fix (bug#11121).
3996
3997 * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
3998
3999 * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
4000 (icomplete-simple-completing-p): Mention the previous variable.
4001
4002 * font-lock.el (font-lock-value-in-major-mode): Clarify the
4003 meaning of the parameter (bug#12282).
4004
4005 * files.el (find-file-noselect): Clarify prompt when changing
4006 readedness (bug#13261).
4007 (locate-file): Suffixes aren't returned, so don't say that they
4008 are (bug#12674).
4009 (backup-inhibited): Doc clarification (bug#12525).
4010
4011 * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
4012 before we actually start to delete things (bug#16331).
4013
4014 * subr.el (event-start): Doc fix (bug#14228).
4015 (event-end): Ditto.
4016
4017 2014-02-09 Glenn Morris <rgm@gnu.org>
4018
4019 * emacs-lisp/warnings.el (lwarn):
4020 Empower help-enable-auto-load. (Bug#15940)
4021
4022 2014-02-08 Andreas Schwab <schwab@linux-m68k.org>
4023
4024 * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
4025 (Bug#16690)
4026
4027 2014-02-08 Michael Albinus <michael.albinus@gmx.de>
4028
4029 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
4030 Insert output at end of buffer. (Bug#16120)
4031
4032 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
4033
4034 * simple.el (choose-completion-string-functions): Document new
4035 calling convention (bug#14153).
4036 (execute-extended-command): Clarify doc string (bug#13373).
4037
4038 * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
4039
4040 * find-dired.el (find-name-dired): Doc fix (bug#14290).
4041 (find-grep-dired): Doc fix (bug#14288).
4042
4043 2014-02-08 Juri Linkov <juri@jurta.org>
4044
4045 * isearch.el (isearch-quote-char): Check character validity
4046 like in `quoted-insert' (bug#16677).
4047
4048 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
4049
4050 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
4051
4052 * isearch.el (isearch-hide-immediately): Doc clarification
4053 (bug#14723).
4054
4055 * simple.el (line-move): Document utility function used many
4056 places in the Emacs sources (bug#14843).
4057
4058 * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
4059 (dired-prev-marked-file): Doc fix (bug#14855).
4060 (dired-up-directory): Doc fix (bug#14848).
4061
4062 * minibuffer.el (read-file-name): Doc clarification (bug#15096).
4063
4064 * files.el (file-relative-name): Doc fix (bug#15159).
4065
4066 * fringe.el (fringe-styles): Doc fix (bug#15239).
4067
4068 * isearch.el (isearch-filter-predicate): Documentation typo fix
4069 (bug#15474).
4070
4071 * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
4072
4073 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
4074
4075 * replace.el (replace-match-maybe-edit): Doc clarification
4076 (bug#15632).
4077
4078 * subr.el (add-to-list): Refill the paragraphs (bug#15791).
4079
4080 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
4081
4082 2014-02-08 Glenn Morris <rgm@gnu.org>
4083
4084 * help-fns.el (describe-variable):
4085 Check {file,dir}-local-variables-alist, and buffer-file-name,
4086 in the correct buffer.
4087
4088 2014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
4089
4090 * help-fns.el (describe-variable): Fix the case where
4091 a value is directory-local with no dir-locals file. (Bug#16635)
4092
4093 2014-02-08 Glenn Morris <rgm@gnu.org>
4094
4095 * abbrev.el (edit-abbrevs-mode):
4096 Derive from fundamental-mode. (Bug#16682)
4097
4098 2014-02-07 Juanma Barranquero <lekktu@gmail.com>
4099
4100 * simple.el (quoted-insert): Check character validity (bug#16677).
4101
4102 2014-02-07 Juri Linkov <juri@jurta.org>
4103
4104 * desktop.el (desktop-read): Claim the lock when the owner is not
4105 the current process. (Bug#16157)
4106
4107 2014-02-07 Juri Linkov <juri@jurta.org>
4108
4109 * desktop.el (desktop-buffers-not-to-save): Change default from nil
4110 to "\\` ". (Bug#16651)
4111
4112 2014-02-07 Juri Linkov <juri@jurta.org>
4113
4114 * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
4115 when enabling, and `desktop-auto-save-cancel-timer' when disabling.
4116 (desktop-auto-save-cancel-timer): New function with some code from
4117 `desktop-auto-save-set-timer'.
4118 (after-init-hook): Don't call `desktop-auto-save-set-timer'.
4119 Instead of setting `desktop-save-mode' to nil, call
4120 `desktop-save-mode' with arg 0. (Bug#16630)
4121
4122 2014-02-07 Glenn Morris <rgm@gnu.org>
4123
4124 * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
4125 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
4126 (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
4127
4128 * obsolete/iswitchb.el: Move to obsolete/.
4129 * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
4130 since obsolete/ is not scanned for autoloads.
4131 * emacs-lisp/authors.el (authors-valid-file-names):
4132 Add iswitchb.el.
4133
4134 * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
4135 Disable now non-functional find-file-hook.
4136
4137 2014-02-06 Michael Albinus <michael.albinus@gmx.de>
4138
4139 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
4140 instead of ";" in order to avoid additional prompts. Let heredoc
4141 scripts read from tty. (Bug#16582)
4142 (tramp-send-command): No special handling of heredocs, it isn't
4143 necessary anymore.
4144
4145 2014-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
4146
4147 * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
4148 with a space (bug#16664). Limit the symbols considered to the ones
4149 that are bound or fbound (bug#16646).
4150
4151 2014-02-06 Glenn Morris <rgm@gnu.org>
4152
4153 * epa.el (epa-mail-aliases): Doc fix.
4154
4155 2014-02-06 Dmitry Gutov <dgutov@yandex.ru>
4156
4157 * emacs-lisp/lisp.el (lisp-completion-at-point):
4158 Use `completion-table-merge' instead of `completion-table-in-turn'
4159 (bug#16604).
4160
4161 * minibuffer.el (completion-table-merge): New function.
4162
4163 2014-02-05 Michael Albinus <michael.albinus@gmx.de>
4164
4165 * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
4166 (tramp-sh-handle-set-file-acl)
4167 (tramp-sh-handle-start-file-process)
4168 (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
4169 (tramp-find-executable, tramp-send-command): Use it.
4170
4171 2014-02-05 Glenn Morris <rgm@gnu.org>
4172
4173 * epa.el (epa-mail-aliases): Fix custom type. Doc tweak.
4174
4175 2014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
4176
4177 * progmodes/python.el (python-shell-send-string)
4178 (python-shell-send-string-no-output): Fix docstring (Bug#16547).
4179
4180 2014-02-04 Anders Lindgren <andlind@gmail.com>
4181
4182 * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
4183 the names (bug#16620).
4184
4185 2014-02-03 Martin Rudalics <rudalics@gmx.at>
4186
4187 * faces.el (window-divider): New default value. Rewrite doc-string.
4188 (window-divider-first-pixel, window-divider-last-pixel): New faces.
4189
4190 2014-02-03 Dmitry Gutov <dgutov@yandex.ru>
4191
4192 * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
4193 `protected' and `public' can also be called without arguments.
4194
4195 2014-02-03 Glenn Morris <rgm@gnu.org>
4196
4197 * register.el (window-configuration-to-register)
4198 (frame-configuration-to-register): Unadvertise unused argument.
4199 * frameset.el (frameset-to-register): Remove unused argument.
4200
4201 * frameset.el (frameset-to-register):
4202 * kmacro.el (kmacro-to-register):
4203 * register.el (increment-register):
4204 * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
4205 (calc-append-to-register, calc-prepend-to-register):
4206 * play/gametree.el (gametree-layout-to-register)
4207 (gametree-apply-register-layout):
4208 * textmodes/picture.el (picture-clear-rectangle-to-register)
4209 (picture-yank-rectangle-from-register):
4210 * vc/emerge.el (emerge-combine-versions-register):
4211 Use register-read-with-preview to read registers.
4212
4213 2014-02-03 João Távora <joaotavora@gmail.com>
4214
4215 * elec-pair.el (electric-pair-backward-delete-char): Don't error
4216 when at beginning of (possibly narrowed) buffer.
4217
4218 2014-02-02 Daniel Colascione <dancol@dancol.org>
4219
4220 * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
4221 Also try to display local help from just before point.
4222
4223 2014-02-02 Alan Mackenzie <bug-cc-mode@gnu.org>
4224
4225 c-parse-state. Don't "append-lower-brace-pair" in certain
4226 circumstances. Also fix an obscure bug where "\\s!" shouldn't be
4227 recognised as a comment.
4228
4229 * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
4230 as well as normal comment starter.
4231 (c-parse-state-get-strategy): Extra return possibility
4232 'back-and-forward.
4233 (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
4234 return value list to indicate replacement of a brace-pair cons
4235 with its car.
4236 (c-parse-state-1): With 'back-and-forward, only call
4237 c-append-lower-brace-pair-to state-cache when cons-separated.
4238
4239 2014-02-02 Jan Djärv <jan.h.d@swipnet.se>
4240
4241 * term/ns-win.el (ns-suspend-error): New function.
4242 (ns-initialize-window-system): Add ns-suspend-error to
4243 suspend-hook (Bug#16612).
4244
4245 2014-02-02 Daniel Colascione <dancol@dancol.org>
4246
4247 * progmodes/cc-defs.el (c-find-assignment-for-mode):
4248 Make loading cc-mode silent.
4249
4250 2014-02-02 Daniel Colascione <dancol@dancol.org>
4251
4252 * comint.el (comint-prompt-read-only): Change doc to suggest
4253 remap keybinding.
4254
4255 2014-02-02 Glenn Morris <rgm@gnu.org>
4256
4257 * register.el (register-read-with-preview, point-to-register)
4258 (window-configuration-to-register, frame-configuration-to-register)
4259 (jump-to-register, number-to-register, view-register, insert-register)
4260 (copy-to-register, append-to-register, prepend-to-register)
4261 (copy-rectangle-to-register): Doc fixes.
4262
4263 2014-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
4264
4265 * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
4266 * emacs-lisp/find-func.el (find-function-C-source): Idem.
4267 * emacs-lisp/nadvice.el (advice--cd*r): New function.
4268 * help-fns.el (describe-function-1): Use it.
4269
4270 2014-02-02 Glenn Morris <rgm@gnu.org>
4271
4272 * register.el (register-preview-default): New function,
4273 split from register-preview.
4274 (register-preview-function): Rename from register-preview-functions,
4275 make it not a hook.
4276 (register-preview): Use register-preview-function.
4277 (register-read-with-preview): Error on non-character event. (Bug#16595)
4278
4279 2014-02-01 Dmitry Gutov <dgutov@yandex.ru>
4280
4281 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
4282 `:' before binary operators (bug#16609). Don't check for `:'
4283 before `[' and `(', or their syntax status. A percent literal
4284 can't end with either.
4285 (ruby-font-lock-keywords): For built-ins that require arguments,
4286 check that they're followed by something that looks like argument
4287 (bug#16610).
4288
4289 2014-02-01 Lars Ingebrigtsen <larsi@gnus.org>
4290
4291 * subr.el (butlast): Document what an omitted N means (bug#13437).
4292 (nbutlast): Ditto.
4293
4294 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org>
4295
4296 * net/shr.el (shr-generic): Make into a defsubst to make the stack
4297 depth shallower (bug#16587).
4298 (shr-tag-svg): Respect `shr-inhibit-images'.
4299 (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
4300
4301 2014-01-31 Dmitry Gutov <dgutov@yandex.ru>
4302
4303 * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
4304 (ruby-smie-grammar): Make "." right-associative. Make its priority
4305 lower than the ternary and all binary operators.
4306 (ruby-smie-rules): Indent "(" relative to the first non-"."
4307 parent, or the first "." parent at indentation.
4308 Use `ruby-align-chained-calls' for indentation of "." tokens.
4309 (Bug#16593)
4310
4311 2014-01-31 Juri Linkov <juri@jurta.org>
4312
4313 * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
4314 from `make-hash-table'.
4315
4316 * textmodes/ispell.el (ispell-init-process): Change message format
4317 to be consistent with other messages.
4318
4319 2014-01-31 Glenn Morris <rgm@gnu.org>
4320
4321 * delsel.el (delete-selection-mode): Doc fix.
4322
4323 * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
4324 (trace-function-background): Doc fixes.
4325
4326 * ido.el (ido-use-virtual-buffers): Doc fix.
4327 Reset :version, since the default value has not changed.
4328
4329 * register.el (register-preview-delay, register-read-with-preview):
4330 Doc fixes.
4331
4332 * mail/reporter.el (reporter-dump-variable): In case of void-variable,
4333 do not mess with mail-buffer position (fixes 2009-11-03 change).
4334 * progmodes/cc-mode.el (c-submit-bug-report):
4335 Check auto-fill-mode is bound. (Bug#16592)
4336
4337 2014-01-31 Darren Hoo <darren.hoo@gmail.com>
4338
4339 * startup.el (fancy-splash-image-file): New function,
4340 split from fancy-splash-head.
4341 (fancy-splash-head, use-fancy-splash-screens-p): Use it,
4342 so that we are both using the same image. (Bug#16574)
4343
4344 2014-01-30 Glenn Morris <rgm@gnu.org>
4345
4346 * simple.el (eval-expression): Doc fix.
4347
4348 * hexl.el (hexl-mode-hook):
4349 * ielm.el (ielm-mode-hook):
4350 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
4351 (lisp-interaction-mode-hook):
4352 * progmodes/cfengine.el (cfengine3-documentation-function):
4353 Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
4354
4355 2014-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
4356
4357 * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
4358 is a symbol (bug#16584).
4359
4360 2014-01-30 Glenn Morris <rgm@gnu.org>
4361
4362 * help.el (help-for-help-internal): Add "P" to text.
4363
4364 2014-01-29 Glenn Morris <rgm@gnu.org>
4365
4366 * simple.el (just-one-space, cycle-spacing): Doc fixes.
4367
4368 2014-01-28 Martin Rudalics <rudalics@gmx.at>
4369
4370 * window.el (fit-frame-to-buffer): Fix calculations for margins and
4371 height constraints.
4372
4373 2014-01-28 Luke Lee <luke.yx.lee@gmail.com>
4374
4375 * progmodes/hideif.el: Extend to full CPP expression syntax.
4376 (hif-token-alist): Add missing tokens.
4377 (hif-token-regexp): Add support for float/octal/hex immediates.
4378 (hif-string-literal-regexp): New const.
4379 (hif-tokenize): Recognize strings and float/octal/hex immediates.
4380 (hif-exprlist): New function.
4381 (hif-parse-if-exp): Use it.
4382 (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
4383 (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
4384 (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
4385 (hif-logxor, hif-comma): New functions.
4386
4387 2014-01-28 Glenn Morris <rgm@gnu.org>
4388
4389 * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
4390
4391 * indent.el (tab-stop-list): Doc fix. Add :version.
4392
4393 * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
4394 (cvs-append-to-ignore): Add compatibility alias.
4395
4396 2014-01-27 Glenn Morris <rgm@gnu.org>
4397
4398 * dired.el (dired-hide-details-mode): Don't autoload it,
4399 since it cannot be used outside Dired buffers anyway.
4400
4401 * emulation/cua-base.el (cua-mode): Doc fix.
4402
4403 * dired.el (dired-hide-details-hide-symlink-targets)
4404 (dired-hide-details-hide-information-lines)
4405 (dired-hide-details-mode): Doc fixes.
4406
4407 * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
4408 * strokes.el (strokes-file): Doc fix. Bump :version.
4409 (strokes-help): Doc fix.
4410 * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
4411 * emulation/viper.el (viper): Doc fix for custom group.
4412 (top-level): Remove oh-so-no-longer-relevant text about vip.
4413 * obsolete/otodo-mode.el (todo-prefix): Doc fix.
4414
4415 * ido.el (ido-save-directory-list-file):
4416 * saveplace.el (save-place-file):
4417 * calendar/timeclock.el (timeclock-file):
4418 * net/quickurl.el (quickurl-url-file):
4419 * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
4420 * progmodes/idlwave.el (idlwave-config-directory):
4421 * textmodes/remember.el (remember-data-file):
4422 Bump :version.
4423
4424 2014-01-26 Glenn Morris <rgm@gnu.org>
4425
4426 * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
4427 Doc fix. Make obsolete.
4428 (opascal-mode): No longer mention opascal-tab-always-indents in doc.
4429
4430 * sort.el (delete-duplicate-lines): Doc fix.
4431
4432 2014-01-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4433
4434 * progmodes/ada-mode.el (ada):
4435 * woman.el (woman): Link to info manual and Commentary section.
4436
4437 * progmodes/flymake.el (flymake):
4438 * nxml/nxml-mode.el (nxml):
4439 * net/eww.el (eww):
4440 * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
4441 * htmlfontify.el (htmlfontify):
4442 * ses.el (ses):
4443 * epa.el (epa):
4444 * ido.el (ido): Link to info manual.
4445
4446 2014-01-25 Leo Liu <sdl.web@gmail.com>
4447
4448 * progmodes/flymake.el (flymake-make-overlay): No rear advance.
4449
4450 2014-01-25 Adam Sjøgren <asjo@koldfront.dk>
4451
4452 * net/shr.el (shr-tag-img): Prefer the title over the alt text
4453 (bug#16537).
4454
4455 2014-01-24 Juanma Barranquero <lekktu@gmail.com>
4456
4457 * net/eww.el (eww-download-callback):
4458 Fix reference to eww-download-directory.
4459
4460 * emacs-lisp/bytecomp.el (byte-compile-file):
4461 Remove unused local variable `file-name'.
4462
4463 2014-01-24 Glenn Morris <rgm@gnu.org>
4464
4465 * woman.el (woman-default-faces, woman-monochrome-faces):
4466 Fix obsolescence specification.
4467
4468 * subr.el (with-demoted-errors): Doc fix.
4469
4470 2014-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
4471
4472 * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
4473 (cl--macroexp-fboundp): New function.
4474 (cl--make-type-test): Use it.
4475
4476 2014-01-23 Glenn Morris <rgm@gnu.org>
4477
4478 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
4479 * simple.el (eval-expression): Doc fixes.
4480
4481 2014-01-22 Glenn Morris <rgm@gnu.org>
4482
4483 * emacs-lisp/authors.el (authors-fixed-entries): Addition.
4484
4485 2014-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
4486
4487 * emacs-lisp/package.el: Write files silently.
4488 (package-autoload-ensure-default-file, package--write-file-no-coding)
4489 (package-generate-description-file, package--download-one-archive)
4490 (package-install-from-archive): Tell `write-region' to stay quiet.
4491 (package-menu-mode, package-menu--print-info): Omit the Archive column
4492 if there's only one archive.
4493 (package-all-keywords, package--has-keyword-p): Remove dead code.
4494
4495 2014-01-22 Glenn Morris <rgm@gnu.org>
4496
4497 * version.el (emacs-bzr-version-bzr): Fix typo.
4498
4499 * version.el (emacs-repository-get-version):
4500 Check either .bzr or .git, but not both.
4501 Make the git case actually use the DIR argument, and return nil
4502 rather than the empty string.
4503 Avoid error if .git exists but the git executable is not found.
4504
4505 2014-01-22 Martin Rudalics <rudalics@gmx.at>
4506
4507 Fixes in window size functions around Bug#16430 and Bug#16470.
4508 * window.el (window-total-size, window-size): New argument ROUND.
4509 (window--min-delta-1, window-min-delta, window--max-delta-1):
4510 Be more conservative when calculating the numbers of lines or
4511 columns a window can shrink (Bug#16430).
4512 (fit-window-to-buffer): Simplify code.
4513 * term.el (term-window-width): Call window-body-width again.
4514
4515 2014-01-22 Glenn Morris <rgm@gnu.org>
4516
4517 * image.el (image-format-suffixes): Doc fix.
4518
4519 * international/quail.el (quail-define-package): Doc fix.
4520
4521 * emacs-lisp/authors.el (authors-valid-file-names)
4522 (authors-renamed-files-alist): Additions.
4523
4524 * vc/vc-git.el (vc-git-print-log): Remove --follow;
4525 reverts 2014-01-09 change. (Bug#16422)
4526
4527 * calc/calc-embed.el (thing-at-point-looking-at):
4528 * emacs-lisp/map-ynp.el (x-popup-dialog):
4529 * obsolete/lmenu.el (x-popup-dialog):
4530 * emacs-lisp/package.el (url-recreate-url):
4531 * mail/mailclient.el (clipboard-kill-ring-save):
4532 * subr.el (x-popup-dialog): Update declaration.
4533 * mail/rmail.el (rmail-mime-message-p):
4534 * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
4535
4536 2014-01-21 Daniel Colascione <dancol@dancol.org>
4537
4538 * progmodes/sh-script.el (sh--inside-noncommand-expression):
4539 Correctly detect when we're inside an arithmetic expansion form
4540 containing nested parenthesis.
4541 (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
4542 to detect cases where we shouldn't expand "<<" to a heredoc
4543 skeleton.
4544
4545 2014-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
4546
4547 * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
4548 (eldoc--message-command-p): New function.
4549 (eldoc-display-message-p): Use it.
4550 (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
4551 message is not automatically erased for us.
4552 (eldoc-print-current-symbol-info): Erase previous message, if any.
4553
4554 2014-01-21 Tassilo Horn <tsdh@gnu.org>
4555
4556 * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
4557 specify it's an interactive function.
4558
4559 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
4560 Fix regex used for scanning for citation keys which failed for
4561 citations with optional arguments.
4562
4563 2014-01-21 Leo Liu <sdl.web@gmail.com>
4564
4565 * simple.el (read--expression): Don't enable eldoc-mode.
4566
4567 2014-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
4568
4569 * simple.el (move-beginning-of-line): Make sure we don't move forward
4570 (bug#16497).
4571
4572 2014-01-20 Juri Linkov <juri@jurta.org>
4573
4574 * saveplace.el (toggle-save-place, save-place-to-alist)
4575 (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
4576 'dired-mode) before checking for dired-directory. (Bug#16477)
4577
4578 2014-01-20 Juri Linkov <juri@jurta.org>
4579
4580 * indent.el (indent-line-to): Use backward-to-indentation
4581 instead of back-to-indentation. (Bug#16461)
4582
4583 2014-01-20 Paul Eggert <eggert@cs.ucla.edu>
4584
4585 Revert some of the CANNOT_DUMP fix (Bug#16494).
4586 Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
4587 but fixing this can wait until after the next release.
4588 * Makefile.in (emacs): Keep EMACSLOADPATH empty.
4589
4590 2014-01-19 Michael Albinus <michael.albinus@gmx.de>
4591
4592 * eshell/esh-mode.el (eshell-password-prompt-regexp):
4593 Use `password-word-equivalents'.
4594 (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
4595 to t. (Bug#5664, Bug#13124)
4596
4597 2014-01-19 Alan Mackenzie <acm@muc.de>
4598
4599 Bind open-paren-in-column-0-is-defun-start to nil at some entry
4600 points.
4601 * progmodes/cc-engine.el (c-invalidate-state-cache-1)
4602 (c-parse-state-1, c-guess-basic-syntax): Bind it here.
4603 * progmodes/cc-mode.el (c-before-change, c-after-change)
4604 (c-font-lock-fontify-region): Bind it here.
4605
4606 2014-01-19 Martin Rudalics <rudalics@gmx.at>
4607
4608 * term.el (term-window-width): Call window-text-width instead of
4609 window-width (Bug#16470).
4610
4611 2014-01-18 Paul Eggert <eggert@cs.ucla.edu>
4612
4613 * simple.el (password-word-equivalents): Remove duplicates.
4614 Sort, to make this easier next time.
4615 Downcase. Omit ": " after "jelszó".
4616
4617 2014-01-18 Jan Djärv <jan.h.d@swipnet.se>
4618
4619 * term/common-win.el (saved-region-selection): Defvar it.
4620 (x-select-text): Set saved-region-selection (Bug#16382).
4621
4622 2014-01-18 Glenn Morris <rgm@gnu.org>
4623
4624 * emacs-lisp/authors.el (authors-aliases)
4625 (authors-renamed-files-alist): Add some entries.
4626
4627 2014-01-17 Michael Albinus <michael.albinus@gmx.de>
4628
4629 * net/tramp.el (tramp-password-prompt-regexp):
4630 Use `password-word-equivalents' if available.
4631 (tramp-action-password, tramp-process-one-action)
4632 (tramp-read-passwd): Let-bind `case-fold-search' to t. (Bug#13124)
4633
4634 2014-01-17 Chong Yidong <cyd@gnu.org>
4635
4636 * simple.el (password-word-equivalents): New defcustom.
4637 * comint.el (comint-password-prompt-regexp): Use it. Bump version
4638 to 24.4.
4639 (comint-watch-for-password-prompt): Let-bind `case-fold-search'
4640 to t. (Bug#13124)
4641
4642 2014-01-17 Dmitry Gutov <dgutov@yandex.ru>
4643
4644 * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
4645 (ruby-align-to-stmt-keywords): Change the default value.
4646 Use `ruby-alignable-keywords' to generate the possible customization
4647 choices.
4648 (ruby-smie-rules): Instead of using a hardcoded list of alignable
4649 keywords, check against the value of `ruby-alignable-keywords'
4650 (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
4651
4652 2014-01-17 Glenn Morris <rgm@gnu.org>
4653
4654 * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
4655
4656 Make M-x authors return zero *Authors Errors* from current logs.
4657 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
4658 (authors-ignored-files): Add some entries, remove others.
4659 (authors-ambiguous-files, authors-valid-file-names):
4660 Add some entries.
4661 (authors-renamed-files-alist): Add, remove, and adjust entries.
4662 (authors-renamed-files-regexps): Add some entries.
4663 Remove some very broad ones. Make some entries `lax'.
4664 (authors-lax-changelogs): New constant.
4665 (authors-disambiguate-file-name): Treat top-level specially.
4666 (authors-lax-changelog-p): New function.
4667 (authors-canonical-file-name): Check file as written against
4668 authors-valid-file-names. Do not special-case etc/.
4669 Handle `lax' logs and authors-renamed-files-regexps elements.
4670
4671 2014-01-16 Dmitry Gutov <dgutov@yandex.ru>
4672
4673 * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
4674 `assoc'. Use `nth' instead of `cdr'. Make private. Update all
4675 callers.
4676
4677 2014-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
4678
4679 * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
4680 Assume we're already in the proper buffer.
4681 Inspired by Anders Lindgren <andlind@gmail.com>.
4682 (follow-post-command-hook): Call it from the right buffer.
4683 (follow-comint-scroll-to-bottom): Adjust call.
4684 (follow-all-followers): Use get-buffer-window-list.
4685
4686 2014-01-15 Daniel Colascione <dancol@dancol.org>
4687
4688 * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
4689 `buffer-file-name' in interactive-form so that we don't leave
4690 pathless file names in `file-name-history'.
4691
4692 2014-01-15 Juri Linkov <juri@jurta.org>
4693
4694 * indent.el (indent-rigidly): Set deactivate-mark to nil
4695 in transient indentation mode. (Bug#16438)
4696
4697 2014-01-15 Dmitry Gutov <dgutov@yandex.ru>
4698
4699 * emacs-lisp/package.el (package-desc-keywords): New function
4700 (Bug#16222).
4701 (describe-package-1, package-all-keywords)
4702 (package--has-keyword-p): Use it.
4703
4704 2014-01-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
4705
4706 * simple.el (define-alternatives): When creating the
4707 COMMAND-alternatives variable, assign COMMAND as its definition
4708 name so that `describe-variable' can relocate it.
4709
4710 2014-01-14 Matthew Leach <matthew@mattleach.net> (tiny change)
4711
4712 * font-lock.el (font-lock-keywords): Fix typo in docstring
4713 (bug#16307).
4714
4715 2014-01-14 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4716
4717 * ispell.el (ispell-region): Reset `in-comment' for new line
4718 instead of wrongly reset `add-coment' (bug#13577).
4719
4720 2014-01-14 Daiki Ueno <ueno@gnu.org>
4721
4722 * epa-file.el (epa-file-write-region): Encode the region according
4723 to `buffer-file-format'. Problem reported at:
4724 <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
4725
4726 2014-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
4727
4728 * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
4729 so it applies in the right buffer (bug#16410).
4730
4731 2014-01-13 Daniel Colascione <dancol@dancol.org>
4732
4733 * textmodes/rst.el (rst-define-key): Provide deprecated
4734 keybindings through named functions instead of anonymous ones so
4735 that "??" doesn't appear in describe-mode output.
4736
4737 2014-01-13 Bastien Guerry <bzg@gnu.org>
4738
4739 * simple.el (define-alternatives): Call the selected command
4740 interactively. When setting `COMMAND--implementation' for the
4741 first time, tell the user how to chose another implementation.
4742 Enhance the docstring.
4743
4744 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4745
4746 * vc/log-edit.el: Fix highlighting of summary when it's the first line.
4747 (log-edit--match-first-line): New function.
4748 (log-edit-font-lock-keywords): Use it.
4749 (log-edit-mode): Make jit-lock-defer-multiline work.
4750
4751 2014-01-13 Bastien Guerry <bzg@gnu.org>
4752
4753 * rect.el (rectangle-mark-mode): When the region is not active,
4754 display a message saying that the mark as been set and that
4755 rectangle mode is in use.
4756 (rectangle--highlight-for-redisplay): Only put an overlay with a
4757 visible vertical bar when (display-graphic-p) is non-nil.
4758 This partially fixes Bug#16403.
4759
4760 2014-01-13 Juri Linkov <juri@jurta.org>
4761
4762 * info.el (Info-find-file): Go to DIR before displaying the error
4763 about a nonexistent file if no previous Info file is visited.
4764 Use `user-error' instead of `error' for "Info file %s does not exist".
4765 (Info-find-node-2): In case of a nonexistent node in unwind forms
4766 go to the Top node if there is no previous node to revert to.
4767 (Bug#16405)
4768
4769 2014-01-13 Martin Rudalics <rudalics@gmx.at>
4770
4771 fit-frame/window-to-buffer code fixes including one for Bug#14096.
4772 * window.el (fit-frame-to-buffer): Fix doc-string.
4773 Respect window-min-height/-width. Fit pixelwise when
4774 frame-resize-pixelwise is non-nil. Adjust right/bottom edge
4775 when avoiding that frame goes partially off-screen.
4776 (fit-window-to-buffer): Respect window-min-height/-width
4777 (Bug#14096).
4778
4779 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4780
4781 * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
4782 after an empty line.
4783
4784 2014-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
4785
4786 * net/shr.el (shr-render-region): Autoload.
4787
4788 2014-01-12 Xue Fuqiao <xfq.free@gmail.com>
4789
4790 * net/eww.el (eww-download-directory): Rename from
4791 `eww-download-path' (Bug#16419).
4792
4793 2014-01-12 Leo Liu <sdl.web@gmail.com>
4794
4795 * dired-x.el (dired-mode-map): Fix last change.
4796
4797 * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
4798
4799 2014-01-12 Paul Eggert <eggert@cs.ucla.edu>
4800
4801 Spelling fixes.
4802 * emacs-lisp/generic.el (generic--normalize-comments):
4803 Rename from generic--normalise-comments. All uses changed.
4804 * play/bubbles.el (bubbles--neighborhood-score)
4805 (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
4806 (bubbles--neighborhood-available)
4807 (bubbles--update-neighborhood-score):
4808 Rename from names with 'neighbourhood'. All uses changed.
4809
4810 2014-01-12 Leo Liu <sdl.web@gmail.com>
4811
4812 Re-implement the feature of showing eldoc info after editing.
4813 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
4814 (eldoc-edit-message-commands): New function.
4815 (eldoc-print-after-edit): New variable.
4816 (eldoc-pre-command-refresh-echo-area): Emit message only by
4817 eldoc-message-commands.
4818 (eldoc-mode): Restrict eldoc-message-commands to editing commands
4819 if eldoc-print-after-edit is set. (Bug#16346)
4820 * simple.el (read--expression): Enable eldoc-mode.
4821 * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
4822
4823 2014-01-11 Dani Moncayo <dmoncayo@gmail.com>
4824 Eric S. Raymond <esr@thyrsus.com>
4825
4826 * version.el (emacs-repository-get-version): Enhance so the
4827 function works correctly in either a Bazaar or Git repo.
4828
4829 2014-01-11 Eric S. Raymond <esr@thyrsus.com>
4830
4831 * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
4832 Goes with removal of the joke manpages from /etc.
4833
4834 2014-01-10 Kenichi Handa <handa@gnu.org>
4835
4836 * mail/rmail.el (rmail-get-coding-system):
4837 Check rmail-get-coding-function before "funcall"ing it.
4838
4839 2014-01-10 Glenn Morris <rgm@gnu.org>
4840
4841 * emacs-lisp/authors.el (authors-fixed-entries):
4842 Update for files that no longer exist.
4843
4844 2014-01-10 Eric S. Raymond <esr@thyrsus.com>
4845
4846 * version.el (emacs-bzr-get-version): Restore compatibilty with
4847 24.3 (Tested).
4848
4849 2014-01-10 Bozhidar Batsov <bozhidar@batsov.com>
4850
4851 * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
4852 and Podfile.
4853
4854 2014-01-10 Eli Zaretskii <eliz@gnu.org>
4855
4856 * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
4857
4858 2014-01-10 Chong Yidong <cyd@gnu.org>
4859
4860 * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
4861
4862 2014-01-10 Anders Lindgren <andlind@gmail.com>
4863
4864 * follow.el (follow-cache-command-list): Include right-char and
4865 left-char.
4866
4867 2014-01-10 Paul Eggert <eggert@cs.ucla.edu>
4868
4869 Spelling fixes.
4870 * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
4871 * woman.el (woman-mark-horizontal-position):
4872 Rename from woman-mark-horizonal-position. Use changed.
4873
4874 2014-01-10 Glenn Morris <rgm@gnu.org>
4875
4876 * info.el (info-initialize): If running uninstalled, ensure our
4877 own info files are always found first, even if INFOPATH is set.
4878
4879 * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
4880
4881 2014-01-09 David Engster <deng@randomsample.de>
4882
4883 * emacs-lisp/eieio-custom.el:
4884 * emacs-lisp/eieio-opt.el: Set generated autoload file to
4885 'eieio.el'. This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
4886 * emacs-lisp/eieio.el: Regenerate autoloads.
4887
4888 2014-01-09 Eric S. Raymond <esr@thyrsus.com>
4889
4890 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
4891 following renames. (Bug#8756)
4892
4893 2014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
4894
4895 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
4896 (bug#16382).
4897 (activate-mark): Add `no-tmm' argument.
4898 (set-mark, push-mark-command): Use it instead of running
4899 activate-mark-hook by hand.
4900
4901 2014-01-08 Eric S. Raymond <esr@thyrsus.com>
4902
4903 In preparation for the move to git, sanitize out some
4904 Bazaar-specific names.
4905
4906 * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
4907
4908 * version.el (emacs-bzr-version): Name changed to
4909 emacs-repository-version. Obsolete-variable alias made.
4910 * loadup.el: Follow through on this name change.
4911 * mail/emacsbug.el (report-emacs-bug): Factor out any
4912 assumption about the version control system in use.
4913
4914 2014-01-08 David Engster <deng@randomsample.de>
4915
4916 * help-fns.el (help-fns-describe-function-functions):
4917 New variable to call functions for augmenting help buffers.
4918 (describe-function-1): Remove explicit calls to
4919 `help-fns--compiler-macro', `help-fns--parent-mode' and
4920 `help-fns--obsolete'. Put them in above new variable instead, and
4921 call them through `run-hook-with-args'.
4922 * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
4923 `eieio-describe-class'. Not meant for interactive use anymore,
4924 but to augment existing help buffers. Remove optional second
4925 argument. Create proper button for file location.
4926 Rewrite function to use `insert' instead of `princ' and `prin1' where
4927 possible.
4928 (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
4929 (eieio-method-def, eieio-class-def): Move further up.
4930 (describe-method, describe-generic, eieio-describe-method):
4931 Remove aliases.
4932 (eieio-help-constructor, eieio-help-generic): Rename from
4933 `eieio-describe-constructor' and `eieio-describe-generic', resp.
4934 Rewrite to use `insert' in the current buffer and use proper help
4935 buttons.
4936 (eieio-help-find-method-definition)
4937 (eieio-help-find-class-definition): Also accept symbols as
4938 arguments.
4939 (eieio-help-mode-augmentation-maybee): Remove.
4940 (eieio-describe-class-sb): Use `describe-function'.
4941 * emacs-lisp/eieio.el (help-fns-describe-function-functions):
4942 Add `eieio-help-generic' and `eieio-help-constructor'.
4943
4944 2014-01-08 Paul Eggert <eggert@cs.ucla.edu>
4945
4946 Spelling fixes.
4947 * language/china-util.el (hz-ascii-designation):
4948 Rename from hz-ascii-designnation.
4949 (hz-ascii-designation): Rename from hz-ascii-designnation.
4950 All uses changed.
4951
4952 2014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
4953
4954 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
4955 package-alist.
4956
4957 2014-01-08 Bastien Guerry <bzg@gnu.org>
4958
4959 * emacs-lisp/package.el (package-delete):
4960 Correctly delete the package from package-alist.
4961
4962 2014-01-08 Daiki Ueno <ueno@gnu.org>
4963
4964 * emacs-lisp/package.el (url-recreate-url): Declare.
4965 (url-http-target-url): Declare.
4966 (package-handle-response): Include requested URL in the error message.
4967 (package--check-signature): Don't re-signal errors from
4968 package--with-work-buffer. Suggested by Stefan Monnier.
4969
4970 2014-01-07 Bastien Guerry <bzg@gnu.org>
4971
4972 * minibuffer.el (completion--try-word-completion): When both a
4973 hyphen and a space are possible candidates for the character
4974 following a word, display both candidates. (Bug#15980)
4975
4976 2014-01-07 Martin Rudalics <rudalics@gmx.at>
4977
4978 * window.el (balance-windows-2): While rounding don't give a
4979 window more than the remainder. Bug#16351, bug#16383.
4980
4981 2014-01-07 Glenn Morris <rgm@gnu.org>
4982
4983 * menu-bar.el (menu-bar-help-extra-packages): Remove.
4984 (menu-bar-help-menu): Use view-external-packages instead.
4985
4986 2014-01-07 Bastien Guerry <bzg@gnu.org>
4987
4988 * emacs-lisp/package.el (package-delete): Also delete the package
4989 name from `package-alist', not its description only.
4990
4991 2014-01-07 Glenn Morris <rgm@gnu.org>
4992
4993 * help.el (view-external-packages):
4994 * menu-bar.el (menu-bar-help-extra-packages):
4995 Visit efaq.info rather than etc/MORE.STUFF.
4996
4997 2014-01-07 Juri Linkov <juri@jurta.org>
4998
4999 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
5000 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
5001
5002 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
5003 that shadows RET. (Bug#16342)
5004
5005 2014-01-07 Chong Yidong <cyd@gnu.org>
5006
5007 * isearch.el (isearch-yank-char, isearch-yank-word)
5008 (isearch-yank-line): Doc fix.
5009
5010 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
5011
5012 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
5013 * emacs-lisp/elint.el (elint-find-builtins):
5014 * emacs-lisp/eldoc.el (eldoc-symbol-function):
5015 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
5016 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
5017 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
5018 * apropos.el (apropos-safe-documentation):
5019 * subr.el (symbol-file): Remove redundant fboundp.
5020 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
5021
5022 2014-01-06 Bastien Guerry <bzg@gnu.org>
5023
5024 * hl-line.el (global-hl-line-overlay): Make a local variable.
5025 (global-hl-line-overlays): New variable to store all overlays.
5026 (global-hl-line-mode): Don't delete overlays from the current
5027 buffer when `global-hl-line-sticky-flag' is non-nil.
5028 (global-hl-line-highlight): Add new overlays to
5029 `global-hl-line-overlays'.
5030 (global-hl-line-unhighlight-all): New function to delete all
5031 overlays when turning off `global-hl-line-mode'.
5032 This fixes Bug#16183.
5033
5034 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
5035
5036 * subr.el (set-transient-map): Fix nested case and docstring.
5037
5038 2014-01-06 Tassilo Horn <tsdh@gnu.org>
5039
5040 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
5041 `Texinfo' entry.
5042
5043 2014-01-06 Daniel Colascione <dancol@dancol.org>
5044
5045 Fix defun navigation in vc log view.
5046
5047 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
5048 like `beginning-of-defun'.
5049 (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
5050 log-view-end-of-defun to log-view-end-of-defun-1. Replace
5051 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
5052 (log-view-extract-comment): Call `log-view-current-entry' directly
5053 instead of relying on broken `log-view-beginning-of-defun' behavior.
5054
5055 2014-01-06 Paul Eggert <eggert@cs.ucla.edu>
5056
5057 Spelling fixes.
5058 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
5059 * emacs-lisp/debug.el (cancel-debug-on-entry):
5060 * epg.el (epg-error-to-string):
5061 * files.el (recover-file):
5062 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
5063 * mail/emacsbug.el (report-emacs-bug-hook):
5064 * mail/sendmail.el (mail-recover):
5065 * ses.el (ses-yank-resize):
5066 * term/ns-win.el (ns-print-buffer):
5067 Spelling fixes in diagnostics, mostly for "canceled" with one L.
5068 * epg.el (epg-key-capability-alist): Rename from misspelled version.
5069 All uses changed.
5070 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
5071
5072 2014-01-06 Leo Liu <sdl.web@gmail.com>
5073
5074 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
5075 to avoid shadowing global key. (Bug#16354)
5076
5077 2014-01-06 Daniel Colascione <dancol@dancol.org>
5078
5079 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
5080 rst-mode.
5081
5082 2014-01-05 Martin Rudalics <rudalics@gmx.at>
5083
5084 * window.el (balance-windows): Add mising t to fix Bug#16351.
5085
5086 2014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5087
5088 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
5089 (bug#16285).
5090 (shr-insert): If we have a word that's longer than `shr-width',
5091 break after it anyway. Otherwise we'll do no breaking once we get
5092 such a long word.
5093
5094 2014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5095
5096 * net/eww.el (eww): Support single/double quote for search.
5097 * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
5098 (eww-history-quit): Delete and use quit-window.
5099 (eww-history-kill): Delete, because it doesn't work well and
5100 not necessary.
5101 (eww-history-mode-map): Delete some keys and add easy-menu.
5102
5103 2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
5104
5105 Fix misspelling of 'chinese' in rx (Bug#16237).
5106 * emacs-lisp/rx.el (rx-categories): Correct spelling of
5107 chinese-two-byte.
5108
5109 Change subword regexps back to vars (Bug#16296).
5110 * progmodes/subword.el (subword-forward-regexp)
5111 (subword-backward-regexp): Change these back to variables.
5112
5113 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
5114
5115 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
5116 syntax-begin-function (bug#16247).
5117
5118 2014-01-03 Chong Yidong <cyd@gnu.org>
5119
5120 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
5121 (advice--docstring): Delete variable.
5122 (advice--make-1): Leave the docstring empty.
5123 (advice-add): Use function-documentation for advised docstring.
5124
5125 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
5126 Ignore function-documentation property when getting documentation.
5127 (ad-activate-advised-definition): Use function-documentation
5128 generate the docstring.
5129 (ad-make-advised-definition): Don't call
5130 ad-make-advised-definition-docstring.
5131 (ad-make-advised-definition-docstring, ad-advised-definition-p):
5132 Delete functions.
5133
5134 * progmodes/sql.el (sql-help): Use function-documentation instead
5135 of dynamic-docstring-function property. No need to autoload now.
5136 (sql--help-docstring): New variable.
5137 (sql--make-help-docstring): Use it.
5138
5139 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
5140
5141 * ielm.el (ielm-tab): Retarget.
5142 (ielm-map): Use ielm-tab for tab.
5143 (ielm-complete-filename): Use comint-filename-completion.
5144 (ielm-complete-symbol): Remove.
5145 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
5146 remove ielm-tab from completion-at-point-functions (bug#16224).
5147
5148 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
5149 Beware signals raised by predicates (bug#16201).
5150
5151 2014-01-02 Richard Stallman <rms@gnu.org>
5152
5153 * dired-aux.el (dired-do-print): Handle printer-name.
5154
5155 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
5156 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
5157 (rmail-epa-decrypt): Turn off mime processing.
5158
5159 * mail/rmail.el (rmail-make-in-reply-to-field):
5160 Add parens in message-id.
5161
5162 * mail/rmail.el (rmail-get-coding-function): Variable.
5163 (rmail-get-coding-system): Use it.
5164
5165 2013-12-31 Eli Zaretskii <eliz@gnu.org>
5166
5167 * international/mule-conf.el: Unify the charset indian-is13194.
5168 (indian-is13194): Specify unify-map.
5169
5170 2013-12-31 Leo Liu <sdl.web@gmail.com>
5171
5172 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
5173
5174 2013-12-30 Daniel Colascione <dancol@dancol.org>
5175
5176 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
5177 of printing a useless when we resume from sleep.
5178
5179 * progmodes/sh-script.el
5180 (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
5181 in indentation code. (Bug#16233)
5182
5183 2013-12-28 João Távora <joaotavora@gmail.com>
5184
5185 * elec-pair.el (electric-pair-post-self-insert-function):
5186 Don't open extra newlines at beginning of buffer. (Bug#16272)
5187
5188 2013-12-28 Eli Zaretskii <eliz@gnu.org>
5189
5190 * frame.el (window-system-for-display): Don't allow to create a
5191 GUI frame from a -nw session on MS-Windows. (Bug#14739)
5192
5193 2013-12-28 Glenn Morris <rgm@gnu.org>
5194
5195 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
5196 Update callers.
5197
5198 * apropos.el (apropos-match-face):
5199 * calculator.el (calculator-displayer):
5200 * dabbrev.el (dabbrev-search-these-buffers-only):
5201 * face-remap.el (buffer-face-mode-face):
5202 * simple.el (yank-handled-properties):
5203 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
5204 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
5205 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
5206 (hashcash-double-spend-database):
5207 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
5208 (ruby-deep-indent-paren-style):
5209 * textmodes/flyspell.el (flyspell-auto-correct-binding):
5210 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
5211 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
5212 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
5213 Specify custom types.
5214
5215 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
5216 * bookmark.el (bookmark-bmenu-use-header-line):
5217 * doc-view.el (doc-view-scale-internally):
5218 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
5219 * register.el (register-preview-delay):
5220 * net/shr.el (shr-bullet):
5221 * progmodes/cfengine.el (cfengine-cf-promises)
5222 (cfengine-parameters-indent):
5223 * progmodes/octave.el (inferior-octave-error-regexp-alist):
5224 * textmodes/reftex-vars.el (reftex-label-regexps):
5225 * vc/log-edit.el (log-edit-setup-add-author): Add version.
5226
5227 * net/tls.el (tls-certtool-program): Fix default value.
5228
5229 * desktop.el (desktop-restore-in-current-display):
5230 * newcomment.el (comment-empty-lines):
5231 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
5232 (idlwave-pad-keyword):
5233 * progmodes/tcl.el (tcl-tab-always-indent):
5234 * textmodes/reftex-vars.el (reftex-index-default-tag):
5235 * elec-pair.el (electric-pair-skip-whitespace):
5236 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
5237
5238 * emacs-lisp/authors.el (authors-ignored-files)
5239 (authors-valid-file-names, authors-renamed-files-alist): Additions.
5240
5241 2013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
5242
5243 * shell.el (shell-dynamic-complete-command): Doc fix.
5244 (shell--command-completion-data): Shell completion now matches
5245 executable filenames from the current buffer's directory, on
5246 systems in which this behavior is the default (windows-nt, ms-dos).
5247
5248 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
5249
5250 * net/shr.el (shr-insert): Don't infloop if the width is zero.
5251
5252 2013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
5253
5254 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
5255 (bug#16251).
5256
5257 * electric.el: Move all electric-pair-* to elec-pair.el.
5258 * elec-pair.el: New file, split from electric.el.
5259
5260 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
5261
5262 * net/shr.el (shr-find-fill-point): Don't try to fill if the
5263 indentation level is larger than the width, because that will
5264 infloop.
5265 (shr-insert): Fill repeatedly long texts, so that Japanese is
5266 formatted correctly (bug#16263).
5267 (shr-find-fill-point): Off by one error in comparison with the
5268 indentation.
5269
5270 2013-12-26 João Távora <joaotavora@gmail.com>
5271
5272 * electric.el (electric-pair-mode): More flexible engine for skip-
5273 and inhibit predicates, new options for pairing-related functionality.
5274 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
5275 if that keeps or improves their balance in buffers.
5276 (electric-pair-delete-adjacent-pairs): Delete the pair when
5277 backspacing over adjacent matched delimiters.
5278 (electric-pair-open-extra-newline): Open extra newline when
5279 inserting newlines between adjacent matched delimiters.
5280 (electric--sort-post-self-insertion-hook):
5281 Sort post-self-insert-hook according to priority values when
5282 minor-modes are activated.
5283 * simple.el (newline-and-indent): Call newline with interactive
5284 set to t.
5285 (blink-paren-post-self-insert-function): Set priority to 100.
5286 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5287 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
5288 comments. Locally set electric-pair-skip-whitespace to 'chomp and
5289 electric-pair-open-newline-between-pairs to nil.
5290
5291 2013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
5292
5293 * progmodes/python.el: Use lexical-binding.
5294 (python-nav-beginning-of-defun): Stop searching ASAP.
5295
5296 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
5297
5298 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
5299 Fix interactive spec. Doc fix. (Bug#15754)
5300
5301 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
5302
5303 * emacs-lisp/byte-run.el (eval-when-compile):
5304 * progmodes/cc-defs.el (cc-eval-when-compile):
5305 Fix edebug spec (bug#16184).
5306
5307 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
5308
5309 * net/shr.el (shr-visit-file): Remove debugging function.
5310 (shr-insert): Don't infloop if we can't find a good place to break
5311 the line (bug#16256).
5312
5313 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
5314
5315 * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
5316 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
5317 python-nav-lisp-forward-sexp-safe.
5318 (python-nav--forward-sexp): New argument SAFE allows switching
5319 forward sexp movement behavior for parens.
5320 (python-nav-forward-sexp): Throw errors on unterminated parens
5321 (Bug#16191).
5322 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
5323 (python-nav-backward-sexp-safe): New functions.
5324 (python-shell-buffer-substring):
5325 Use `python-nav-forward-sexp-safe'.
5326
5327 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
5328
5329 * net/shr.el (shr-find-fill-point): Don't break lines before a
5330 quotation mark.
5331 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
5332 (shr-find-fill-point): Remove the special checks for the quotation
5333 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
5334
5335 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5336
5337 * net/eww.el (eww-form-textarea): Use a different face for
5338 textareas than text input since they have different keymaps
5339 (bug#16142).
5340
5341 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
5342
5343 * progmodes/python.el (python-nav-beginning-of-statement):
5344 Speed up (Bug#15295).
5345
5346 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
5347
5348 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
5349 the window configuration.
5350
5351 2013-12-24 Eli Zaretskii <eliz@gnu.org>
5352
5353 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
5354 we run on MS-Windows or MS-DOS.
5355
5356 2013-12-24 Martin Rudalics <rudalics@gmx.at>
5357
5358 * window.el (balance-windows-area): Call window-size instead of
5359 window-height and window-width. Bug#16241.
5360
5361 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
5362
5363 * net/eww.el (eww-bookmark-quit): Remove.
5364 (eww-bookmark-browse): Restore the window configuration when you
5365 choose a bookmark (bug#16144).
5366
5367 2013-12-24 Daniel Colascione <dancol@dancol.org>
5368
5369 * icomplete.el: Remove redundant :group arguments to `defcustom'
5370 throughout.
5371 (icomplete-show-matches-on-no-input): New customizable variable.
5372 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
5373 we have something to show.
5374 (icomplete-exhibit): Compute completions even if we have no user input.
5375
5376 2013-12-23 Daniel Colascione <dancol@dancol.org>
5377
5378 * icomplete.el: Move `provide' to end of file.
5379
5380 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
5381
5382 * net/gnutls.el (gnutls-verify-error): Add version tag.
5383
5384 2013-12-23 Chong Yidong <cyd@gnu.org>
5385
5386 * subr.el (set-transient-map): Rename from
5387 set-temporary-overlay-map. Doc fix.
5388
5389 * face-remap.el (text-scale-adjust):
5390 * indent.el (indent-rigidly):
5391 * kmacro.el (kmacro-call-macro):
5392 * minibuffer.el (minibuffer-force-complete):
5393 * repeat.el (repeat):
5394 * simple.el (universal-argument--mode):
5395 * calendar/todo-mode.el (todo-insert-item--next-param):
5396 * progmodes/f90.el (f90-abbrev-start): Callers changed.
5397
5398 * indent.el (indent-rigidly): Use substitute-command-keys.
5399
5400 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5401
5402 * net/eww.el (eww-tag-select): Add text-property to jump to next
5403 select field.
5404 (eww): Add non-supported ftp error.
5405
5406 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5407
5408 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
5409 comments. Handle electric indent after typing `?' and `!'.
5410
5411 2013-12-22 Chong Yidong <cyd@gnu.org>
5412
5413 * faces.el (face-spec-recalc): If the theme specs are not
5414 applicable to a frame, fall back on the defface spec.
5415 This prevents themes from obliterating faces on low-color terminals.
5416
5417 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5418
5419 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
5420 after `{'. We need it after block openers, and it doesn't seem
5421 to hurt after hash openers.
5422
5423 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5424
5425 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
5426 extracted from `ruby-smie-rules'.
5427 (ruby--electric-indent-chars): New variable.
5428 (ruby--electric-indent-p): New function.
5429 (ruby-mode): Use `electric-indent-functions' instead of
5430 `electric-indent-chars'.
5431
5432 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
5433
5434 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
5435 docstring.
5436 (ruby-smie-rules): Indent plus one level after `=>'.
5437
5438 2013-12-21 Richard Stallman <rms@gnu.org>
5439
5440 * simple.el (newline): Doc fix.
5441
5442 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5443
5444 * net/eww.el (eww-list-histories, eww-list-histories)
5445 (eww-history-browse, eww-history-quit, eww-history-kill)
5446 (eww-history-mode-map, eww-history-mode): New command and
5447 functions to list browser histories.
5448 (eww-form-text): Support text form with disabled
5449 and readonly attributes.
5450 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
5451
5452 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5453
5454 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
5455 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
5456 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
5457 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
5458 Use `user-error'.
5459 (eww-bookmark-mode-map): Add menu.
5460 (eww-render, eww-mode): Use `setq-local'.
5461 (eww-tool-bar-map): New variable.
5462 (eww-mode): Set `tool-bar-map'.
5463 (eww-view-source): Check for `html-mode' with `fboundp'.
5464
5465 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5466
5467 * net/shr.el (shr--extract-best-source): Don't bug out on audio
5468 elements with text inside. Also remove debugging.
5469
5470 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
5471
5472 * cus-start.el (all): Add ns-use-srgb-colorspace.
5473
5474 2013-12-21 Chong Yidong <cyd@gnu.org>
5475
5476 * custom.el (custom-theme-recalc-face): Do nothing if the face is
5477 undefined. Thus, theme settings for undefined faces do not take
5478 effect until the faces are defined with defface, the same as with
5479 theme variables.
5480
5481 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
5482 (face-spec-reset-face): Don't assign extra properties in temacs.
5483 (face-spec-recalc): Apply X resources too.
5484
5485 2013-12-21 Chong Yidong <cyd@gnu.org>
5486
5487 * faces.el (face-spec-set):
5488 * cus-face.el (custom-theme-set-faces, custom-set-faces):
5489 * custom.el (defface): Doc fixes (Bug#16203).
5490
5491 * indent.el (indent-rigidly-map): Add docstring, and move commands
5492 into named functions.
5493 (indent-rigidly-left, indent-rigidly-right)
5494 (indent-rigidly-left-to-tab-stop)
5495 (indent-rigidly-right-to-tab-stop): New functions. Decide on
5496 indentation direction based on bidi direction, and accumulate
5497 sequential commands in a single undo boundary.
5498 (indent-rigidly--pop-undo): New utility function.
5499
5500 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
5501
5502 * faces.el (read-face-name): Require crm.el when using crm-separator.
5503
5504 2013-12-20 Daniel Colascione <dancol@dancol.org>
5505
5506 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
5507 so that we don't reflow comments into the shebang line.
5508
5509 2013-12-20 Juri Linkov <juri@jurta.org>
5510
5511 * saveplace.el (save-place-to-alist): Add `dired-filename' as
5512 a position when `dired-directory' is non-nil. Check integer
5513 positions with `integerp'.
5514 (toggle-save-place, save-places-to-alist): Add check for
5515 `dired-directory'.
5516 (save-place-find-file-hook): Check integer positions with
5517 `integerp'.
5518 (save-place-dired-hook): Use `dired-goto-file' when
5519 `dired-filename' is found in the assoc list. Check integer
5520 positions with `integerp'.
5521 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
5522
5523 * dired.el (dired-initial-position-hook): Rename back from
5524 `dired-initial-point-hook'.
5525 (dired-initial-position): Rename `dired-initial-point-hook' to
5526 `dired-initial-position-hook'.
5527 (dired-file-name-at-point): Doc fix. (Bug#15329)
5528
5529 2013-12-20 Juri Linkov <juri@jurta.org>
5530
5531 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
5532 (read-regexp-suggestions): New function.
5533 (read-regexp): Use `read-regexp-defaults-function' to get default values.
5534 Use `read-regexp-suggestions'. Add non-empty default to history
5535 for empty input.
5536 (occur-read-regexp-defaults-function): Remove function.
5537 (occur-read-primary-args): Use `regexp-history-last' instead of
5538 `occur-read-regexp-defaults-function'.
5539
5540 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
5541 (hi-lock-line-face-buffer, hi-lock-face-buffer)
5542 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
5543 `hi-lock-read-regexp-defaults-function'. Doc fix.
5544 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
5545 with `find-tag-default-as-symbol-regexp'. Doc fix.
5546 (hi-lock-read-regexp-defaults): Remove function.
5547 (hi-lock-regexp-okay): Add check for null.
5548
5549 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
5550 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
5551
5552 * subr.el (find-tag-default-as-symbol-regexp): New function.
5553 (find-tag-default-as-regexp): Move symbol regexp formatting to
5554 `find-tag-default-as-symbol-regexp'.
5555
5556 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
5557
5558 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
5559 (Bug#14179)
5560
5561 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
5562
5563 * calendar/todo-mode.el: New implementation of item insertion
5564 commands and key bindings.
5565 (todo-key-prompt): New face.
5566 (todo-insert-item): New command.
5567 (todo-insert-item--parameters): New defconst, replacing defvar
5568 todo-insertion-commands-args-genlist.
5569 (todo-insert-item--param-key-alist): New defconst, replacing
5570 defvar todo-insertion-commands-arg-key-list.
5571 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
5572 (todo-insert-item--argsleft, todo-insert-item--apply-args)
5573 (todo-insert-item--next-param): New functions.
5574 (todo-insert-item--args, todo-insert-item--argleft)
5575 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
5576 New variables.
5577 (todo-key-bindings-t): Change binding of "i" from
5578 todo-insertion-map to todo-insert-item.
5579 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
5580 (todo-insertion-command-name, todo-insertion-commands-names)
5581 (todo-define-insertion-command, todo-insertion-commands)
5582 (todo-insertion-key-bindings, todo-insertion-map): Remove.
5583
5584 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
5585
5586 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
5587 (todo-toggle-item-highlighting): Use eval-and-compile instead of
5588 eval-when-compile.
5589 (todo-move-category): Allow choosing a non-existing todo file to
5590 move the category to, and create that file.
5591 (todo-default-priority): New user option.
5592 (todo-set-item-priority): Use it.
5593 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
5594 (desktop-restore-file-buffer): Declare.
5595 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
5596 (todo-modes-set-2): Locally set desktop-save-buffer to
5597 todo-desktop-save-buffer.
5598 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
5599 (auto-mode-alist): Add autoload cookie.
5600
5601 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
5602
5603 * emacs-lisp/subr-x.el: Renamed from helpers.el.
5604 helpers.el was a poor choice of name.
5605 (string-remove-prefix): New function.
5606 (string-remove-suffix): New function.
5607
5608 2013-12-20 Martin Rudalics <rudalics@gmx.at>
5609
5610 Fix assignment for new window total sizes.
5611 * window.el (window--pixel-to-size): Remove function.
5612 (window--pixel-to-total-1, window--pixel-to-total):
5613 Fix calculation of new total sizes.
5614
5615 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
5616
5617 * comint.el (comint-output-filter): Fix rear-nonsticky property
5618 placement (Bug#16010).
5619
5620 2013-12-20 Chong Yidong <cyd@gnu.org>
5621
5622 * faces.el (read-color): Minor fix for completion function.
5623
5624 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
5625
5626 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
5627 New option. (Bug#16182)
5628 (ruby-smie--indent-to-stmt-p): Use it.
5629 (ruby-smie-rules): Revert the logic in the handling of `when'.
5630 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
5631 (ruby-deep-arglist, ruby-deep-indent-paren)
5632 (ruby-deep-indent-paren-style): Update docstrings to note that the
5633 vars don't have any effect with SMIE.
5634
5635 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
5636
5637 * calc/calc.el (calc-enter, calc-pop): Use the variable
5638 `calc-context-sensitive-enter'.
5639
5640 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
5641
5642 * net/shr.el (shr-insert): Protect against infloops in degenerate
5643 tables.
5644
5645 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5646
5647 * progmodes/octave.el (octave): Add link to manual and octave
5648 homepage.
5649 (octave-mode-menu): Link to octave-mode manual.
5650
5651 2013-12-20 Leo Liu <sdl.web@gmail.com>
5652
5653 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
5654 insertion using skeleton-end-newline. (Bug#16138)
5655
5656 2013-12-20 Juri Linkov <juri@jurta.org>
5657
5658 * replace.el (occur-engine): Use `add-face-text-property'
5659 to add the face property to matches and titles. (Bug#14645)
5660
5661 * hi-lock.el (hi-green): Use lighter color "light green" closer to
5662 the palette of other hi-lock colors.
5663 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
5664
5665 2013-12-19 Juri Linkov <juri@jurta.org>
5666
5667 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
5668 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
5669 (minibuffer-history-symbol): Move variable declaration closer to
5670 its usage.
5671
5672 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
5673 (Bug#14785)
5674
5675 2013-12-19 Juri Linkov <juri@jurta.org>
5676
5677 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
5678 New function.
5679 (log-edit-hook): Add it to :options. (Bug#16170)
5680
5681 2013-12-19 Juri Linkov <juri@jurta.org>
5682
5683 * simple.el (eval-expression-print-format): Don't check for
5684 command names and the last command. Always display additional
5685 formats of the integer result in the echo area, and insert them
5686 to the current buffer only with a zero prefix arg.
5687 Display character when char-displayable-p is non-nil.
5688 (eval-expression): With a zero prefix arg, set `print-length' and
5689 `print-level' to nil, and insert the integer values from
5690 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
5691
5692 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
5693 `eval-last-sexp-arg-internal'. Doc fix.
5694 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
5695 `eval-last-sexp-print-value'. Doc fix.
5696 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
5697 Set `print-length' and `print-level' to nil when arg is zero.
5698 (eval-last-sexp): Doc fix.
5699 (eval-defun-2): Print the integer values from
5700 `eval-expression-print-format' at the end.
5701
5702 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
5703 values from `eval-expression-print-format' at the end.
5704
5705 * ielm.el (ielm-eval-input): Print the integer
5706 values from `eval-expression-print-format' at the end.
5707
5708 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
5709
5710 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
5711 2013-12-11T19:01:44Z!tzz@lifelogs.com.
5712
5713 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
5714
5715 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
5716 (hl-line-highlight, global-hl-line-highlight): Use it.
5717 (hl-line-overlay): Use defvar-local.
5718
5719 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
5720
5721 * term/ns-win.el: Require dnd.
5722 (global-map): Remove drag items.
5723 (ns-insert-text, ns-set-foreground-at-mouse)
5724 (ns-set-background-at-mouse):
5725 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
5726 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
5727 New functions.
5728
5729 2013-12-19 Glenn Morris <rgm@gnu.org>
5730
5731 * emacs-lisp/ert.el (ert-select-tests):
5732 Fix string/symbol mixup. (Bug#16121)
5733
5734 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
5735
5736 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
5737 keywords to their parent.
5738
5739 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
5740
5741 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
5742 first arg to be a string (fixed dead code), or an operator symbol.
5743 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
5744 operator symbols.
5745 (ruby-smie-rules): Remove parent token check in the `.' clause, it
5746 did nothing. Don't respond to `(:after ".")', it will be called
5747 with :before anyway. Remove the ` @ ' rule, it didn't seem to
5748 change anything. Only return indentation for binary operators
5749 when they are hanging. De-dent opening paren when its parent is
5750 `.', otherwise it looks bad when the dot is not at bol or eol
5751 (bug#16182).
5752
5753 2013-12-19 Juri Linkov <juri@jurta.org>
5754
5755 * replace.el (query-replace-read-args): Split a non-negative arg
5756 and a negative arg into separate elements.
5757 (query-replace, query-replace-regexp, replace-string)
5758 (replace-regexp): Add arg `backward'. Doc fix.
5759 (replace-match-maybe-edit): When new arg `backward' is non-nil,
5760 move point to the beginning of the match.
5761 (replace-search, replace-highlight): Use new arg `backward'
5762 to set the value of `isearch-forward'.
5763 (perform-replace): Add arg `backward' and use it to perform
5764 replacement backward. (Bug#14979)
5765
5766 * isearch.el (isearch-query-replace): Use a negative prefix arg
5767 to call `perform-replace' with a non-nil arg `backward'.
5768
5769 2013-12-18 Juri Linkov <juri@jurta.org>
5770
5771 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
5772 to the default list. Move `log-edit-show-files' to the end.
5773 Add more available functions to options.
5774 (log-edit): Move default specific settings to
5775 `log-edit-insert-message-template'. Don't move point.
5776 (log-edit-insert-message-template): New function.
5777 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
5778 (Bug#16170)
5779
5780 2013-12-18 Juri Linkov <juri@jurta.org>
5781
5782 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
5783 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
5784
5785 2013-12-18 Leo Liu <sdl.web@gmail.com>
5786
5787 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
5788 (Bug#16186)
5789
5790 2013-12-18 Eli Zaretskii <eliz@gnu.org>
5791
5792 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
5793 formats for displaying file sizes when the -s switch is given.
5794 Instead, compute a separate format for displaying the size in
5795 blocks, which is displayed in addition to the "regular" size.
5796 When -h is given in addition to -s, produce size in blocks in
5797 human-readable form as well. (Bug#16179)
5798
5799 2013-12-18 Tassilo Horn <tsdh@gnu.org>
5800
5801 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
5802 Reference tables with ~\ref{...} instead of only \ref{...}.
5803
5804 2013-12-18 Chong Yidong <cyd@gnu.org>
5805
5806 * cus-edit.el (custom-magic-alist): Fix "themed" description
5807 (Bug#14348).
5808
5809 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
5810 is non-nil, do not create a new entry in the symbol's theme-value
5811 or theme-face property; update theme-settings only (Bug#14664).
5812 (custom-available-themes): Doc fix.
5813
5814 * cus-theme.el (custom-new-theme-mode-map): Add bindings
5815 (Bug#15674).
5816
5817 * replace.el (occur-engine): Avoid infloop (Bug#7593).
5818
5819 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
5820
5821 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
5822 (Bug#13914).
5823
5824 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
5825
5826 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
5827
5828 2013-12-18 Glenn Morris <rgm@gnu.org>
5829
5830 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
5831 * cus-start.el (load-prefer-newer): New option.
5832
5833 2013-12-18 Le Wang <l26wang@gmail.com>
5834
5835 * comint.el (comint-previous-matching-input-from-input):
5836 Retain point (Bug#13404).
5837
5838 2013-12-18 Chong Yidong <cyd@gnu.org>
5839
5840 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
5841
5842 2013-12-18 Glenn Morris <rgm@gnu.org>
5843
5844 * mail/emacsbug.el (report-emacs-bug):
5845 Only mention enable-multibyte-characters if non-standard.
5846
5847 2013-12-17 Juri Linkov <juri@jurta.org>
5848
5849 * arc-mode.el (archive-extract-by-file): Check if directory exists
5850 before deletion to not show irrelevant errors if it doesn't exist.
5851
5852 2013-12-17 Juri Linkov <juri@jurta.org>
5853
5854 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
5855 (Bug#14751)
5856
5857 * net/eww.el (browse-web): Add alias to `eww'.
5858 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
5859 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
5860
5861 * net/browse-url.el (browse-url-browser-function): Move `eww'
5862 closer to similar functions.
5863
5864 * startup.el (fancy-startup-screen, fancy-about-screen):
5865 Set browse-url-browser-function to eww-browse-url locally.
5866 (Bug#14751)
5867
5868 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
5869
5870 * window.el (window--pixel-to-total): Remove unused `mini' var.
5871 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
5872 (split-window): Remove unused `new' var.
5873 (window--display-buffer): Remove unused `frame' and `delta' vars.
5874 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
5875 and display-width'.
5876
5877 2013-12-17 Martin Rudalics <rudalics@gmx.at>
5878
5879 * dired.el (dired-mark-pop-up):
5880 * register.el (register-preview): Don't bind
5881 split-height-threshold here since it's now done in
5882 display-buffer-below-selected.
5883
5884 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
5885
5886 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
5887 xterm-rgb-convert-to-16bit.
5888 (rxvt-register-default-colors): Standardize with
5889 xterm-register-default-colors (Bug#14078).
5890
5891 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
5892
5893 * simple.el (kill-region): Pass mark first, then point, so that
5894 kill-append works right (Bug#12819).
5895 (copy-region-as-kill, kill-ring-save): Likewise.
5896
5897 2013-12-17 Leo Liu <sdl.web@gmail.com>
5898
5899 * net/rcirc.el (rcirc-add-face):
5900 * eshell/em-prompt.el (eshell-emit-prompt):
5901 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
5902 (Bug#16167)
5903
5904 2013-12-17 Chong Yidong <cyd@gnu.org>
5905
5906 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
5907 Suggested by Xue Fuqiao.
5908
5909 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
5910
5911 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
5912
5913 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
5914
5915 * net/shr.el (shr-insert-document): Remove unused var
5916 `shr-preliminary-table-render'.
5917 (shr-rescale-image): Remove unused arg `force'.
5918 (shr-put-image): Update calls accordingly.
5919 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
5920
5921 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
5922
5923 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
5924 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
5925 :close-all, to see which indentation method to use (Bug#16116).
5926 (smie-rules-function): Document the method :close-all.
5927
5928 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
5929
5930 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
5931
5932 * net/eww.el (eww-display-html): If we can't find the anchor we're
5933 looking for, then go to point-min.
5934
5935 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
5936
5937 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
5938 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
5939 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
5940 Expand dir too, in case it's relative.
5941
5942 2013-12-16 Juri Linkov <juri@jurta.org>
5943
5944 * desktop.el (desktop-auto-save-timeout): Change default to
5945 `auto-save-timeout'. Doc fix.
5946 (desktop-save): Skip the timestamp in desktop-saved-frameset
5947 when checking for auto-save changes.
5948 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
5949 `desktop-auto-save' is called repeatedly by the idle timer.
5950 (desktop-auto-save-set-timer): Replace `run-with-timer' with
5951 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
5952 (Bug#15331)
5953
5954 2013-12-16 Juri Linkov <juri@jurta.org>
5955
5956 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
5957 (Bug#16035)
5958 (isearch-pre-command-hook): Check `this-command' for symbolp.
5959
5960 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
5961
5962 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
5963
5964 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
5965
5966 * progmodes/cfengine.el (cfengine3--current-word): Remove.
5967 (cfengine3--current-function): Bring in the current-function
5968 functionality from `cfengine3--current-word'.
5969 (cfengine3-completion-function): Bring in the
5970 bounds-of-current-word functionality from
5971 `cfengine3--current-word'.
5972
5973 2013-12-16 Martin Rudalics <rudalics@gmx.at>
5974
5975 * window.el (display-buffer-below-selected):
5976 Bind split-height-threshold to 0 as suggested by Juri Linkov.
5977
5978 2013-12-16 Leo Liu <sdl.web@gmail.com>
5979
5980 * progmodes/compile.el (compile-goto-error): Do not push-mark.
5981 Remove NOMSG arg and all uses changed.
5982
5983 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
5984
5985 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
5986 (cua--deactivate-rectangle): Don't deactivate the mark.
5987 (cua-set-rectangle-mark): Don't set mark-active since
5988 cua--activate-rectangle already does it for us.
5989 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
5990 non-rectangular region.
5991
5992 * emulation/cua-base.el (cua-repeat-replace-region):
5993 Use with-current-buffer.
5994
5995 * net/gnutls.el: Use cl-lib.
5996 (gnutls-negotiate): `mapcan' -> cl-mapcan.
5997
5998 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
5999
6000 * emacs-lisp/package.el (package-built-in-p): Support both
6001 built-in and the package.el converted package descriptions.
6002 (package-show-package-list): Allow keywords.
6003 (package-keyword-button-action): Use it instead of
6004 `finder-list-matches'.
6005 (package-menu-filter-interactive): Interactive filtering (by
6006 keyword) function.
6007 (package-menu--generate): Support keywords and change keymappings
6008 and headers when they are given.
6009 (package--has-keyword-p): Helper function.
6010 (package-menu--refresh): Use it.
6011 (package--mapc): Helper function.
6012 (package-all-keywords): Use it.
6013 (package-menu-mode-map): Set up menu items and keybindings to
6014 provide a filtering UI.
6015
6016 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
6017
6018 * net/gnutls.el (gnutls-verify-error): New defcustom to control
6019 the behavior when a certificate fails validation. Defaults to
6020 old behavior: never abort, just warn.
6021 (gnutls-negotiate): Use it.
6022
6023 2013-12-14 Martin Rudalics <rudalics@gmx.at>
6024
6025 * window.el (display-buffer-below-selected): Never split window
6026 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
6027
6028 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
6029
6030 * emacs-lisp/package.el (package--prepare-dependencies): New function.
6031 (package-buffer-info): Use it (bug#15108).
6032
6033 2013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
6034
6035 * icomplete.el (icomplete-completions): Make sure the prefix is already
6036 displayed elsewhere before hiding it (bug#16219).
6037
6038 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
6039
6040 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
6041 open-paren tokens when preceded by a open-paren, too.
6042 (ruby-smie-rules): Handle virtual indentation after open-paren
6043 tokens specially. If there is code between it and eol, return the
6044 column where is starts (Bug#16118).
6045
6046 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
6047
6048 * progmodes/cfengine.el: Fix `add-hook' doc.
6049 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
6050 (cfengine3--current-word): Fix parameters.
6051 (cfengine3-make-syntax-cache): Simplify further.
6052 (cfengine3-completion-function, cfengine3--current-function):
6053 Use `assq' for symbols.
6054 (cfengine3--current-function): Fix `cfengine3--current-word' call.
6055
6056 2013-12-13 Glenn Morris <rgm@gnu.org>
6057
6058 * loadup.el (load-path): Warn if site-load or site-init changes it.
6059 No more need to reset it when bootstrapping.
6060
6061 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
6062
6063 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
6064 locations for cf-promises.
6065 (cfengine-mode-syntax-functions-regex): New caching variable.
6066 (cfengine3-fallback-syntax): Fallback syntax for cases where
6067 cf-promises doesn't run.
6068 (cfengine3--current-word): Reimplement using
6069 `cfengine-mode-syntax-functions-regex'.
6070 (cfengine3-completion-function, cfengine3--current-function):
6071 Use `cfengine3-make-syntax-cache' directly.
6072 (cfengine3-clear-syntax-cache): New function.
6073 (cfengine3-make-syntax-cache): Simplify and create
6074 `cfengine-mode-syntax-functions-regex' on demand.
6075 (cfengine3-format-function-docstring): Don't call
6076 `cfengine3-make-syntax-cache' explicitly.
6077
6078 2013-12-13 Martin Rudalics <rudalics@gmx.at>
6079
6080 Fix windmove-find-other-window broken after pixelwise resizing
6081 (Bug#16017).
6082 * windmove.el (windmove-other-window-loc): Revert change from
6083 2013-12-04.
6084 (windmove-find-other-window): Call window-in-direction.
6085 * window.el (window-in-direction): New arguments SIGN, WRAP and
6086 MINI to emulate original windmove-find-other-window behavior.
6087
6088 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
6089
6090 * simple.el (blink-matching--overlay): New variable.
6091 (blink-matching-open): Instead of moving point, highlight the
6092 matching paren with an overlay
6093 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
6094
6095 * faces.el (paren-showing-faces, show-paren-match)
6096 (show-paren-mismatch): Move from paren.el.
6097
6098 2013-12-13 Leo Liu <sdl.web@gmail.com>
6099
6100 * indent.el (indent-region): Disable progress reporter in
6101 minibuffer. (Bug#16108)
6102
6103 * bindings.el (visual-order-cursor-movement): Fix version.
6104
6105 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
6106
6107 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
6108 Also match after beginning of line.
6109 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
6110 files. Thanks to Russell Sim. (Bug#15378)
6111
6112 2013-12-13 Juri Linkov <juri@jurta.org>
6113
6114 * simple.el <Keypad support>: Remove key bindings duplicated
6115 with bindings.el. (Bug#14397)
6116
6117 2013-12-13 Juri Linkov <juri@jurta.org>
6118
6119 * comint.el (comint-mode-map): Replace `delete-char' with
6120 `delete-forward-char'. (Bug#16109)
6121
6122 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
6123
6124 * progmodes/python.el (python-indent-calculate-indentation):
6125 Fix de-denters cornercase. (Bug#15731)
6126
6127 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
6128
6129 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
6130 (advice--make): Pay attention to `depth'.
6131 (advice--make-1): Don't autoload commands eagerly.
6132 * emacs-lisp/elp.el (elp-instrument-function):
6133 * emacs-lisp/trace.el (trace-function-internal):
6134 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
6135
6136 * iswitchb.el (iswitchb-mode): Don't belittle ido.
6137
6138 2013-12-12 Eli Zaretskii <eliz@gnu.org>
6139
6140 * term/w32-win.el (w32-handle-dropped-file):
6141 * startup.el (normal-top-level):
6142 * net/browse-url.el (browse-url-file-url):
6143 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
6144 decode file names using 'utf-8' rather than
6145 file-name-coding-system.
6146
6147 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
6148
6149 * progmodes/python.el (python-indent-context)
6150 (python-indent-calculate-indentation): Fix auto-identation
6151 behavior for comment blocks. (Bug#15916)
6152
6153 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6154
6155 * progmodes/python.el (python-indent-calculate-indentation):
6156 When determining indentation, don't treat "return", "pass", etc., as
6157 operators when they are just string constituents. (Bug#15812)
6158
6159 2013-12-12 Juri Linkov <juri@jurta.org>
6160
6161 * uniquify.el (uniquify-buffer-name-style): Change default to
6162 `post-forward-angle-brackets'.
6163
6164 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
6165 `uniquify'. Change default to `post-forward-angle-brackets'.
6166
6167 2013-12-11 Glenn Morris <rgm@gnu.org>
6168
6169 * emacs-lisp/package.el (finder-list-matches):
6170 Autoload rather than falsely declaring.
6171
6172 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
6173
6174 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
6175 (eww-mode-map): Use them.
6176
6177 2013-12-11 Martin Rudalics <rudalics@gmx.at>
6178
6179 * window.el (display-buffer-in-side-window): Fix doc-string
6180 (Bug#16115).
6181
6182 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
6183
6184 * vc/vc-git.el: Silence byte-compiler warnings.
6185 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
6186 (log-edit-set-header): Declare.
6187
6188 2013-12-11 Eli Zaretskii <eliz@gnu.org>
6189
6190 * Makefile.in (custom-deps, finder-data): Run output file names
6191 through unmsys--file-name. (Bug#16099)
6192
6193 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
6194
6195 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
6196 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
6197
6198 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
6199 instead of deleting the selection "by hand" (bug#16098).
6200 Rely on insert-for-yank to yank rectangles.
6201 (cua-highlight-region-shift-only): Mark obsolete.
6202 (cua-mode): Don't enable/disable transient-mark-mode,
6203 shift-select-mode (cua-mode works both with and without them), and
6204 pc-selection-mode (obsolete).
6205 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
6206 (cua--deactivate-rectangle): Deactivate it.
6207
6208 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
6209 (delete-selection-helper): Make sure yank starts at the top of the
6210 deleted region.
6211 (minibuffer-keyboard-quit): Use region-active-p.
6212
6213 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
6214
6215 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
6216 to `delete' (bug#16109).
6217
6218 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6219
6220 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
6221 info manual and show keybindings and set `:group' keyword.
6222
6223 2013-12-11 Juri Linkov <juri@jurta.org>
6224
6225 * delsel.el (delete-active-region): Let-bind `this-command'
6226 to prevent `kill-region' from changing its original value.
6227 (delete-selection-helper): Handle `overwrite-mode' for the type
6228 `kill' exactly the same way as for the type `t'.
6229 (insert-char, quoted-insert, reindent-then-newline-and-indent):
6230 Support more commands. (Bug#13312)
6231
6232 2013-12-11 Juri Linkov <juri@jurta.org>
6233
6234 * bindings.el: Map kp keys to non-kp keys systematically
6235 with basic modifiers control, meta and shift. (Bug#14397)
6236
6237 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
6238
6239 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
6240 "Close browser" menu items. Fix wrong function of "List
6241 bookmarks".
6242
6243 2013-12-11 Juri Linkov <juri@jurta.org>
6244
6245 * misearch.el (multi-isearch-buffers): Set the value of
6246 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
6247 arg of isearch-forward to t.
6248 (multi-isearch-buffers-regexp): Set the value of
6249 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
6250 arg of isearch-forward-regexp to t.
6251 (multi-isearch-files): Set the value of
6252 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
6253 arg of isearch-forward to t.
6254 (multi-isearch-files-regexp): Set the value of
6255 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
6256 arg of isearch-forward-regexp to t. (Bug#16035)
6257
6258 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
6259 arg of isearch-forward to t.
6260 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
6261 arg of isearch-forward-regexp to t.
6262 (dired-isearch-filter-filenames): Remove unnecessary check for
6263 `dired-isearch-filenames'.
6264
6265 * comint.el (comint-history-isearch-backward):
6266 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
6267 (comint-history-isearch-backward-regexp):
6268 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
6269
6270 2013-12-10 Eli Zaretskii <eliz@gnu.org>
6271
6272 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
6273 unmsys--file-name. (Bug#16099)
6274
6275 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
6276
6277 * emacs-lisp/package.el (package-keyword-button-action):
6278 Remove finder.el require dependency.
6279
6280 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
6281
6282 * emacs-lisp/package.el: Require finder.el.
6283 (describe-package-1): Add keyword buttons.
6284 (package-make-button): New convenience function.
6285 (package-keyword-button-action): Keyword button action using
6286 `finder-list-matches'.
6287
6288 2013-12-09 Eli Zaretskii <eliz@gnu.org>
6289
6290 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
6291 last commit.
6292
6293 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
6294
6295 * autorevert.el (auto-revert-notify-add-watch): Do not handle
6296 symlinked files.
6297
6298 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
6299
6300 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
6301 after the end of a percent literal.
6302
6303 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
6304
6305 * progmodes/ruby-mode.el (ruby-forward-string): Document.
6306 Handle caret-delimited strings (Bug#16079).
6307
6308 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
6309
6310 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
6311 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
6312 `ruby-parse-partial' (Bug#16078).
6313
6314 2013-12-09 Leo Liu <sdl.web@gmail.com>
6315
6316 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
6317
6318 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
6319
6320 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
6321 (js-switch-indent-offset): New option.
6322 (js--proper-indentation): Use it. And handle the case when
6323 "default" is actually a key in an object literal.
6324 (js--same-line): New function.
6325 (js--multi-line-declaration-indentation): Use it.
6326 (js--indent-in-array-comp, js--array-comp-indentation):
6327 New functions.
6328 (js--proper-indentation): Use them, to handle array comprehension
6329 continuations.
6330
6331 2013-12-08 Leo Liu <sdl.web@gmail.com>
6332
6333 * progmodes/flymake.el (flymake-highlight-line): Re-write.
6334 (flymake-make-overlay): Remove arg MOUSE-FACE.
6335 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
6336
6337 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6338
6339 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
6340 New function.
6341 (redisplay-highlight-region-function): Use it.
6342
6343 * emulation/cua-base.el (cua--explicit-region-start)
6344 (cua--last-region-shifted): Remove.
6345 (cua--deactivate): Use deactivate-mark.
6346 (cua--pre-command-handler-1): Don't handle shift-selection.
6347 (cua--post-command-handler-1): Don't change transient-mark-mode.
6348 (cua--select-keymaps): Use region-active-p rather than
6349 cua--explicit-region-start or cua--last-region-shifted.
6350 (cua-mode): Enable shift-select-mode.
6351
6352 2013-12-08 Leo Liu <sdl.web@gmail.com>
6353
6354 * progmodes/flymake.el (flymake-popup-current-error-menu):
6355 Rename from flymake-display-err-menu-for-current-line. Reimplement.
6356 (flymake-posn-at-point-as-event, flymake-popup-menu)
6357 (flymake-make-emacs-menu): Remove. (Bug#16077)
6358
6359 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6360
6361 * rect.el (rectangle-mark-mode): Activate mark even if
6362 transient-mark-mode is off (bug#16066).
6363 (rectangle--highlight-for-redisplay): Fix boundary condition when point
6364 is > mark and at bolp.
6365
6366 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
6367 (region-extract-function): Use it.
6368 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
6369 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
6370 Delete functions.
6371 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
6372 kill-ring-save, kill-region, delete-char, delete-forward-char.
6373 Ignore self-insert-iso.
6374
6375 * emulation/cua-gmrk.el (cua--init-global-mark):
6376 Ignore `self-insert-iso'.
6377
6378 * emulation/cua-base.el (cua--prefix-copy-handler)
6379 (cua--prefix-cut-handler): Rely on region-extract-function rather than
6380 checking cua--rectangle.
6381 (cua-delete-region): Use region-extract-function.
6382 (cua-replace-region): Delete function.
6383 (cua-copy-region, cua-cut-region): Obey region-extract-function.
6384 (cua--pre-command-handler-1): Don't do the delete-selection thing.
6385 (cua--self-insert-char-p): Ignore `self-insert-iso'.
6386 (cua--init-keymaps): Don't remap delete-selection commands.
6387 (cua-mode): Use delete-selection-mode instead of rolling our own
6388 (bug#16085).
6389
6390 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
6391 Obey region-extract-function.
6392
6393 Make registers and delete-selection-mode work on rectangles.
6394 * register.el (describe-register-1): Don't modify the register's value.
6395 (copy-to-register): Obey region-extract-function.
6396 * delsel.el (delete-active-region): Obey region-extract-function.
6397
6398 2013-12-08 Leo Liu <sdl.web@gmail.com>
6399
6400 * progmodes/flymake.el (flymake, flymake-error-bitmap)
6401 (flymake-warning-bitmap, flymake-fringe-indicator-position)
6402 (flymake-compilation-prevents-syntax-check)
6403 (flymake-start-syntax-check-on-newline)
6404 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
6405 (flymake-start-syntax-check-on-find-file, flymake-log-level)
6406 (flymake-xml-program, flymake-master-file-dirs)
6407 (flymake-master-file-count-limit)
6408 (flymake-allowed-file-name-masks): Relocate.
6409 (flymake-makehash, flymake-float-time)
6410 (flymake-replace-regexp-in-string, flymake-split-string)
6411 (flymake-get-temp-dir): Remove.
6412 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
6413 (flymake-current-row, flymake-selected-frame)
6414 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
6415 related functions. (Bug#16077)
6416
6417 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
6418
6419 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
6420
6421 2013-12-07 Tassilo Horn <tsdh@gnu.org>
6422
6423 * help-fns.el (describe-function-1): Use new advice-* functions
6424 rather than old ad-* functions. Fix function type description and
6425 source links for advised functions and subrs.
6426
6427 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
6428
6429 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
6430
6431 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
6432
6433 * progmodes/compile.el (compilation-start):
6434 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
6435
6436 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
6437 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
6438
6439 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6440
6441 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
6442 Touch up the last change.
6443
6444 2013-12-06 Leo Liu <sdl.web@gmail.com>
6445
6446 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
6447 (inferior-octave-startup): Always use "octave> " for prompt.
6448 (octave-goto-function-definition)
6449 (octave-sync-function-file-names)
6450 (octave-find-definition-default-filename): Remove redundant backquotes.
6451
6452 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6453
6454 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
6455 syntax for `?'.
6456 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
6457 where appropriate already.
6458 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
6459 end of method names (Bug#15874).
6460
6461 2013-12-06 Juri Linkov <juri@jurta.org>
6462
6463 * isearch.el (isearch--saved-overriding-local-map):
6464 New internal variable.
6465 (isearch-mode): Set it to the initial value of
6466 `overriding-terminal-local-map'.
6467 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
6468 with `isearch--saved-overriding-local-map'. (Bug#16035)
6469
6470 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
6471
6472 * progmodes/octave.el (inferior-octave-completion-table):
6473 Turn back into function, use `completion-table-with-cache'
6474 (Bug#11906). Update all references.
6475
6476 * minibuffer.el (completion-table-with-cache): New function.
6477
6478 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
6479
6480 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
6481
6482 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
6483
6484 * net/eww.el (eww-current-source): New variable to store page
6485 source.
6486 (eww-display-html, eww-mode, eww-save-history)
6487 (eww-restore-history): Use it.
6488 (eww-view-source): New command to view page source.
6489 Opportunistically uses `html-mode' to highlight the buffer.
6490 (eww-mode-map): Install it.
6491
6492 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
6493
6494 * net/dbus.el (dbus-unregister-service)
6495 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
6496 Fix docstring.
6497 (dbus-unregister-service): Skip :serial entries in
6498 `dbus-registered-objects-table'.
6499 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
6500
6501 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
6502
6503 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
6504 around keywords with extra `split-string' argument.
6505
6506 2013-12-04 Martin Rudalics <rudalics@gmx.at>
6507
6508 * windmove.el (windmove-other-window-loc): Handle navigation
6509 between windows (excluding the minibuffer window - Bug#16017).
6510
6511 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
6512
6513 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
6514 in D-Bus type syntax.
6515 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
6516 preserve unibyte strings. (Bug#16048)
6517
6518 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
6519
6520 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
6521 Call force-mode-line-update is the proper buffer (bug#16042).
6522
6523 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
6524
6525 * vc/log-edit.el (log-edit-add-new-comment): Rename to
6526 `log-edit-remember-comment', make argument optional. Adjust all
6527 callers.
6528 (log-edit-mode): Add `log-edit-remember-comment' to
6529 `kill-buffer-hook' locally.
6530 (log-edit-kill-buffer): Don't remember comment explicitly since
6531 the buffer is killed anyway.
6532
6533 2013-12-04 Juri Linkov <juri@jurta.org>
6534
6535 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
6536 add-hook and remove-hook for multi-buffer search. (Bug#16035)
6537
6538 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
6539
6540 * notifications.el (notifications-close-notification): Call the
6541 D-Bus method with ID being a `:uint32'. (Bug#16030)
6542
6543 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
6544
6545 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
6546
6547 2013-12-03 Juri Linkov <juri@jurta.org>
6548
6549 * progmodes/compile.el (compilation-start): Rename window alist
6550 entry `no-display-ok' to `allow-no-window'.
6551
6552 * simple.el (shell-command): Add window alist entry
6553 `allow-no-window' to `display-buffer'.
6554 (async-shell-command): Doc fix.
6555
6556 * window.el (display-buffer-no-window): New action function.
6557 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
6558
6559 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6560
6561 * vc/log-edit.el (log-edit-set-header): Extract from
6562 `log-edit-toggle-header'.
6563 (log-edit-extract-headers): Separate the summary, when extracted
6564 from header, from the rest of the message with an empty line.
6565
6566 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
6567 line, if present, to the Summary header.
6568
6569 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
6570
6571 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
6572 in current-buffer (bug#16029).
6573
6574 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
6575
6576 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
6577 (debugger-mode-map): Bind it.
6578 (debugger--backtrace-base): New function.
6579 (debugger-eval-expression): Use it.
6580 (debugger-frame-number): Skip local vars when present.
6581 (debugger--locals-visible-p, debugger--insert-locals)
6582 (debugger--show-locals, debugger--hide-locals): New functions.
6583
6584 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
6585
6586 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
6587 "LC_ALL".
6588 (tramp-get-remote-locale): New defun.
6589 (tramp-open-connection-setup-interactive-shell): Use it.
6590
6591 2013-12-02 Leo Liu <sdl.web@gmail.com>
6592
6593 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
6594
6595 * progmodes/sh-script.el (sh-shell-process):
6596 * progmodes/octave.el (inferior-octave-process-live-p):
6597 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
6598 (gdb-inferior-io-sentinel):
6599 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
6600
6601 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6602
6603 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
6604 `save-selected-window' to `log-edit-hide-buf'. This makes
6605 `log-edit-show-files' idempotent.
6606 (log-edit-show-files): Mark the new window as dedicated.
6607
6608 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
6609
6610 * vc/log-edit.el (log-edit-mode-map): Add binding for
6611 `log-edit-kill-biffer'.
6612 (log-edit-hide-buf): Add a FIXME comment.
6613 (log-edit-add-new-comment): New function, extracted from
6614 `log-edit-done'.
6615 (log-edit-done, log-edit-add-to-changelog): Use it.
6616 (log-edit-kill-buffer): New command.
6617
6618 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6619
6620 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
6621 instead of killing the buffer.
6622
6623 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
6624
6625 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
6626
6627 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6628
6629 * net/eww.el (eww-form-checkbox-selected-symbol)
6630 (eww-form-checkbox-symbol): New customizable variable.
6631 (eww-form-checkbox, eww-toggle-checkbox):
6632 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
6633
6634 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
6635 (shr--get-media-pref, shr--extract-best-source): New function.
6636 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
6637 no :src tag was specified.
6638
6639 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
6640 (eww-render): Handle `eww-use-external-browser-for-content-type'.
6641 Use \\` to match beginning of string instead of ^.
6642 (eww-browse-with-external-browser): Provide optional URL parameter.
6643 (eww-render): Set `eww-current-title' back to "".
6644
6645 * net/shr.el (shr-tag-video): Display content for video if no
6646 poster is available.
6647 (shr-tag-audio): Add support for <audio> tag.
6648
6649 * net/eww.el (eww-text-input-types): New const.
6650 (eww-process-text-input): Treat input types in
6651 `eww-text-input-types' as text.
6652
6653 * net/shr.el (shr-tag-table): Fix comment typo.
6654
6655 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6656
6657 * net/eww.el (eww-follow-link): New command to avoid reloading
6658 pages when we follow #target links (bug#15243).
6659 (eww-quit): Special mode buffers shouldn't query before exiting.
6660
6661 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
6662
6663 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
6664 forms.
6665
6666 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6667
6668 * net/eww.el (eww-restore-history): Update the window title after
6669 moving in the history.
6670 (eww-current-dom): New variable used to save the current DOM.
6671
6672 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
6673
6674 * vc/log-edit.el (log-edit-mode-map): Add binding for
6675 `log-edit-beginning-of-line'.
6676 (log-edit-setup-add-author): New user option.
6677 (log-edit-beginning-of-line): New command.
6678 (log-edit): Move major mode call above the contents setup so that
6679 the local variable values are already applied.
6680 (log-edit): Only insert "Author: " when
6681 `log-edit-setup-add-author' is non-nil.
6682 (log-edit): When SETUP is non-nil, position point after ": "
6683 instead of point-min.
6684
6685 2013-12-01 Glenn Morris <rgm@gnu.org>
6686
6687 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
6688
6689 2013-11-30 Eli Zaretskii <eliz@gnu.org>
6690
6691 * startup.el (fancy-splash-frame): On MS-Windows, trigger
6692 redisplay to make sure the initial frame gets a chance to become
6693 visible. (Bug#16014)
6694
6695 2013-11-30 Martin Rudalics <rudalics@gmx.at>
6696
6697 Support resizing frames and windows pixelwise.
6698 * cus-start.el (frame-resize-pixelwise)
6699 (window-resize-pixelwise): New entries.
6700 * emacs-lisp/debug.el (debug): Use window-total-height instead
6701 of window-total-size.
6702 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
6703 * help.el (describe-bindings-internal): Use help-buffer as
6704 argument for with-help-window.
6705 (temp-buffer-max-width): New option.
6706 (resize-temp-buffer-window, help-window-setup)
6707 (with-help-window): Rewrite.
6708 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
6709 dragging dividers.
6710 * window.el (frame-char-size, window-min-pixel-height)
6711 (window-safe-min-pixel-height, window-safe-min-pixel-width)
6712 (window-min-pixel-width, window-safe-min-pixel-size)
6713 (window-combination-p, window-safe-min-size)
6714 (window-resizable-p, window--size-to-pixel)
6715 (window--pixel-to-size, window--resize-apply-p): New functions.
6716 (window-safe-min-height): Fix doc-string.
6717 (window-size, window-min-size, window--min-size-1)
6718 (window-sizable, window-sizable-p, window--min-delta-1)
6719 (window-min-delta, window--max-delta-1, window-max-delta)
6720 (window--resizable, window--resizable-p, window-resizable)
6721 (window-full-height-p, window-full-width-p, window-at-side-p)
6722 (window--in-direction-2, window-in-direction)
6723 (window--resize-reset-1, window--resize-mini-window)
6724 (window-resize, window-resize-no-error)
6725 (window--resize-child-windows-normal)
6726 (window--resize-child-windows, window--resize-siblings)
6727 (window--resize-this-window, window--resize-root-window)
6728 (window--resize-root-window-vertically)
6729 (adjust-window-trailing-edge, enlarge-window, shrink-window)
6730 (maximize-window, minimize-window, delete-window)
6731 (quit-restore-window, window-split-min-size, split-window)
6732 (balance-windows-2, balance-windows)
6733 (balance-windows-area-adjust, balance-windows-area)
6734 (window--state-get-1, window-state-get, window--state-put-1)
6735 (window--state-put-2, window-state-put)
6736 (display-buffer-record-window, window--display-buffer):
6737 Make functions handle pixelwise sizing of windows.
6738 (display-buffer--action-function-custom-type)
6739 (display-buffer-fallback-action):
6740 Add display-buffer-in-previous-window.
6741 (display-buffer-use-some-window): Resize window to height it had
6742 before.
6743 (fit-window-to-buffer-horizontally): New option.
6744 (fit-frame-to-buffer): Describe new values.
6745 (fit-frame-to-buffer-bottom-margin): Replace with
6746 fit-frame-to-buffer-margins.
6747 (window--sanitize-margin): New function.
6748 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
6749 using window-text-pixel-size.
6750
6751 2013-11-30 Glenn Morris <rgm@gnu.org>
6752
6753 * emacs-lisp/bytecomp.el (byte-compile-form):
6754 Make the `interactive-only' warning like the `obsolete' one.
6755 * comint.el (comint-run):
6756 * files.el (insert-file-literally, insert-file):
6757 * replace.el (replace-string, replace-regexp):
6758 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
6759 (goto-line, insert-buffer, next-line, previous-line):
6760 Tweak `interactive-only' spec.
6761
6762 Stop keeping (most) generated cedet grammar files in the repository.
6763 * Makefile.in (semantic): New.
6764 (compile-main): Depend on semantic.
6765
6766 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6767
6768 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
6769 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
6770
6771 * uniquify.el (uniquify-buffer-name-style): Change default.
6772
6773 * loadup.el: Preload "uniquify".
6774
6775 * time.el (display-time-update): Update all mode lines (bug#15999).
6776
6777 * electric.el (electric-indent-mode): Enable by default.
6778 * loadup.el: Preload "electric".
6779
6780 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
6781
6782 * emacs-lisp/helpers.el (string-empty-p): New function.
6783 (string-blank-p): New function.
6784
6785 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
6786
6787 * imenu.el (imenu--index-alist): Add missing dot to the docstring
6788 (Bug#14029).
6789
6790 2013-11-29 Andreas Politz <politza@fh-trier.de>
6791 * imenu.el (imenu--subalist-p): Don't error on non-conses and
6792 allow non-lambda lists as functions.
6793 (imenu--in-alist): Don't recurse into non-subalists.
6794 (imenu): Don't pass function itself as an argument (Bug#14029).
6795
6796 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6797
6798 * progmodes/python.el (python-mode-map): Remove binding for ":".
6799 (python-indent-electric-colon): Remove command.
6800 (python-indent-post-self-insert-function): Integrate the previous code
6801 of python-indent-electric-colon. Make it conditional on
6802 electric-indent-mode.
6803 (python-mode): Add ?: to electric-indent-chars.
6804 Move python-indent-post-self-insert-function to the end of
6805 post-self-insert-hook.
6806
6807 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6808
6809 * doc-view.el (doc-view-goto-page): Update mode-line.
6810
6811 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
6812
6813 2013-11-27 Glenn Morris <rgm@gnu.org>
6814
6815 * international/charprop.el, international/uni-bidi.el:
6816 * international/uni-category.el, international/uni-combining.el:
6817 * international/uni-comment.el, international/uni-decimal.el:
6818 * international/uni-decomposition.el, international/uni-digit.el:
6819 * international/uni-lowercase.el, international/uni-mirrored.el:
6820 * international/uni-name.el, international/uni-numeric.el:
6821 * international/uni-old-name.el, international/uni-titlecase.el:
6822 * international/uni-uppercase.el:
6823 Remove generated files from VCS repository.
6824
6825 2013-11-27 Eli Zaretskii <eliz@gnu.org>
6826
6827 * filenotify.el (file-notify-add-watch): Don't special-case
6828 w32notify when computing the directory to watch.
6829
6830 2013-11-27 Glenn Morris <rgm@gnu.org>
6831
6832 Make bootstrap without generated uni-*.el files possible again.
6833 * loadup.el: Update command-line-args checking for unidata-gen.
6834 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
6835 * composite.el, international/characters.el:
6836 Handle unicode tables being undefined.
6837
6838 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
6839 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
6840 (compile-main): Depend on leim rule.
6841 (leim): New rule.
6842 * loadup.el: Move leim-list.el to leim/ subdirectory.
6843 * startup.el (normal-top-level): No more leim directory.
6844 * international/ja-dic-cnv.el (skkdic-convert):
6845 Disable version-control and autoloads in output files.
6846 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
6847 Disable version-control and autoloads in output files.
6848 * leim/quail: Move here from ../leim.
6849 * leim/quail/hangul.el (hangul-input-method-activate):
6850 Add autoload cookie.
6851 (generated-autoload-load-name): Set file-local value.
6852 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
6853 (generated-autoload-load-name): Set file-local value.
6854
6855 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
6856
6857 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
6858 (eww-add-bookmark): Ask confirmation when add to bookmarks.
6859 (eww-quit): Ask confirmation before quitting eww.
6860
6861 2013-11-26 Eli Zaretskii <eliz@gnu.org>
6862
6863 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
6864 reading output from Diff on MS-Windows and MS-DOS.
6865
6866 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
6867
6868 * emacs-lisp/helpers.el (string-reverse): New function.
6869
6870 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
6871
6872 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
6873 names on MS Windows, like "/[::1]:".
6874
6875 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
6876 SWITCHES.
6877
6878 2013-11-26 Glenn Morris <rgm@gnu.org>
6879
6880 * progmodes/python.el (python-indent-guess-indent-offset):
6881 Avoid corner-case error. (Bug#15975)
6882
6883 Preload leim-list.el. (Bug#4789)
6884 * loadup.el: Load leim-list.el when found.
6885 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
6886
6887 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
6888
6889 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
6890
6891 * emacs-lisp/helpers.el (string-join): New function.
6892
6893 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
6894
6895 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
6896 Mark as obsolete and replace it with a symbol property.
6897 (byte-compile-form): Use new 'interactive-only property.
6898 * comint.el, files.el, replace.el, simple.el:
6899 Apply new 'interactive-only properly.
6900
6901 2013-11-25 Martin Rudalics <rudalics@gmx.at>
6902
6903 * window.el (display-buffer-at-bottom): Make sure that
6904 split-window-sensibly creates the new window on bottom
6905 (Bug#15961).
6906
6907 2013-11-23 David Kastrup <dak@gnu.org>
6908
6909 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
6910 on the conflict markers when available.
6911 (smerge--get-marker): New function.
6912 (smerge-end-re, smerge-base-re): Add subgroup.
6913
6914 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
6915
6916 * frame.el (handle-focus-in, handle-focus-out): Add missing
6917 interactive spec.
6918
6919 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
6920
6921 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
6922 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
6923
6924 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
6925
6926 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
6927 (gomoku--last-pos): New var.
6928 (gomoku--intangible-chars): New const.
6929 (gomoku--intangible): New function.
6930 (gomoku-mode): Use it. Derive from special-mode.
6931 (gomoku-move-up): Adjust line count.
6932 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
6933 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
6934 Simplify accordingly.
6935
6936 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
6937 Remove blink-cursor code.
6938 (blink-cursor-timer-function, blink-cursor-suspend):
6939 Don't special-case GUIs.
6940 (blink-cursor-mode): Use focus-in/out-hook.
6941
6942 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
6943
6944 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
6945 work when annotation is invisible (Bug#13886).
6946
6947 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
6948
6949 * json.el (json-alist-p): Only return non-nil if the alist has
6950 simple keys (Bug#13518).
6951
6952 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
6953
6954 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
6955 when control-statement is the first statement in a buffer (Bug#15956).
6956
6957 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
6958
6959 * imenu.el (imenu-generic-skip-comments-and-strings):
6960 New option (Bug#15560).
6961 (imenu--generic-function): Use it.
6962
6963 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
6964
6965 * minibuffer.el (completion--in-region-1): Scroll the correct window.
6966 (Bug#13898)
6967
6968 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
6969
6970 * emacs-lisp/helpers.el: Add some string helpers.
6971 (string-trim-left): Removes leading whitespace.
6972 (string-trim-right): Removes trailing whitespace.
6973 (string-trim): Removes leading and trailing whitespace.
6974
6975 * subr.el (string-suffix-p): New function.
6976
6977 2013-11-23 Glenn Morris <rgm@gnu.org>
6978
6979 * progmodes/python.el (python-shell-send-file):
6980 Add option to delete file when done. (Bug#15647)
6981 (python-shell-send-string, python-shell-send-region): Use it.
6982
6983 2013-11-23 Ivan Shmakov <ivan@siamics.net> (tiny change)
6984
6985 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
6986 to set buffer-read-only to t, never to nil. (Bug#15938)
6987
6988 * textmodes/tex-mode.el (latex-noindent-environments):
6989 Add safe-local-variable property. (Bug#15936)
6990
6991 2013-11-23 Glenn Morris <rgm@gnu.org>
6992
6993 * textmodes/enriched.el (enriched-mode): Doc fix.
6994 * emacs-lisp/authors.el (authors-renamed-files-alist):
6995 Add enriched.doc -> enriched.txt.
6996
6997 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
6998
6999 2013-11-22 Leo Liu <sdl.web@gmail.com>
7000
7001 * progmodes/octave.el (inferior-octave-startup): Spit out error
7002 message.
7003
7004 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
7005
7006 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
7007 Improve docstring.
7008 Add :version.
7009 (ruby-encoding-magic-comment-style): Add :version.
7010
7011 2013-11-22 Leo Liu <sdl.web@gmail.com>
7012
7013 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
7014 (Bug#15076)
7015 (octave-help-mode): Adapt to change to help-mode-finish to use
7016 derived-mode-p on 2013-09-17.
7017 (inferior-octave-prompt): Also match octave-gui.
7018 (octave-kill-process): Don't ask twice. (Bug#10564)
7019
7020 2013-11-22 Leo Liu <sdl.web@gmail.com>
7021
7022 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
7023 (inferior-octave-startup, inferior-octave-check-process)
7024 (inferior-octave-track-window-width-change)
7025 (octave-completion-at-point, octave-eldoc-function): Use it.
7026 (octave-kill-process): Provide confirmation. (Bug#10564)
7027
7028 2013-11-21 Leo Liu <sdl.web@gmail.com>
7029
7030 * progmodes/octave.el (octave-mode, inferior-octave-mode):
7031 Fix obsolete variable comment-use-global-state.
7032
7033 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7034
7035 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
7036 Add `octave-source-file'.
7037 (octave-source-file): New function. (Bug#15935)
7038
7039 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
7040
7041 * net/eww.el (eww-local-regex): New variable.
7042 (eww): Use it to detect localhost and similar.
7043
7044 2013-11-21 Leo Liu <sdl.web@gmail.com>
7045
7046 Add completion for command `ag'.
7047 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
7048 (pcomplete/ag): New function.
7049 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
7050
7051 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7052
7053 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
7054 (bug#14646).
7055 (make-obsolete): Remove interactive spec.
7056
7057 2013-11-21 Glenn Morris <rgm@gnu.org>
7058
7059 * startup.el (command-line-1): Use path-separator with -L.
7060
7061 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
7062
7063 * emacs-lisp/package.el (describe-package-1): Add package archive
7064 to shown fields.
7065
7066 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
7067
7068 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
7069 Change default to "# encoding: %s" to differentiate it from the
7070 default Ruby encoding comment template.
7071
7072 2013-11-20 era eriksson <era+emacsbugs@iki.fi>
7073
7074 * ses.el (ses-mode): Doc fix. (Bug#14748)
7075
7076 2013-11-20 Leo Liu <sdl.web@gmail.com>
7077
7078 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
7079
7080 2013-11-19 Dan Nicolaescu <dann@gnu.org>
7081
7082 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
7083 when rebase or bisect are in progress.
7084
7085 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
7086
7087 * filenotify.el (file-notify-add-watch): Doc fix.
7088
7089 2013-11-19 Leo Liu <sdl.web@gmail.com>
7090
7091 * obsolete/rcompile.el: Mark obsolete.
7092
7093 * progmodes/compile.el (compilation-start)
7094 (compilation-goto-locus, compilation-find-file):
7095 Pass no-display-ok and handle nil value from display-buffer.
7096 (Bug#13594)
7097
7098 * window.el (display-buffer-alist, display-buffer): Document the
7099 new parameter no-display-ok. Return either a window or nil
7100 but never a non-window value.
7101
7102 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
7103
7104 * electric.el (electric-indent-mode-map): Remove.
7105 (electric-indent-mode): Change the global-map instead (bug#15915).
7106
7107 * textmodes/text-mode.el (paragraph-indent-minor-mode):
7108 Use add-function.
7109
7110 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
7111
7112 * emacs-lisp/nadvice.el (remove-function): Align with
7113 add-function's behavior.
7114
7115 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
7116 (gdb--string-regexp): New constant.
7117 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
7118 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
7119 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
7120 submatch 1.
7121 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
7122 Adjust use accordingly.
7123 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
7124
7125 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
7126
7127 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
7128 interpolation curlies (Bug#15914).
7129
7130 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
7131
7132 * calc/calc.el (calc-context-sensitive-enter): New variable.
7133 (calc-enter): Use `calc-context-sensitive-enter'.
7134
7135 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
7136
7137 * progmodes/cfengine.el: Version bump.
7138 (cfengine-cf-promises): New defcustom to locate cf-promises.
7139 (cfengine3-vartypes): Add new "data" type.
7140 (cfengine3--current-word): New function to get current name-like
7141 word or its bounds.
7142 (cfengine3--current-function): New function to look up a CFEngine
7143 function's definition.
7144 (cfengine3-format-function-docstring): New function.
7145 (cfengine3-make-syntax-cache): New function.
7146 (cfengine3-documentation-function): New function: ElDoc glue.
7147 (cfengine3-completion-function): New function: completion glue.
7148 (cfengine3-mode): Set `compile-command',
7149 `eldoc-documentation-function', and add to
7150 `completion-at-point-functions'.
7151
7152 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
7153
7154 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
7155 `tramp-current-connection'.
7156
7157 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
7158
7159 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
7160 nil/self/true/false with "end of symbol".
7161
7162 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
7163
7164 * subr.el (version-regexp-alist): Fix a typo.
7165
7166 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
7167
7168 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
7169 "en_US.utf8" and "LC_CTYPE" to "".
7170 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
7171 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
7172
7173 2013-11-15 Leo Liu <sdl.web@gmail.com>
7174
7175 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
7176
7177 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7178
7179 * progmodes/gud.el (ctl-x-map):
7180 Remove C-x SPC binding. (Bug#12342)
7181 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
7182
7183 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
7184
7185 * subr.el (version-regexp-alist):
7186 Recognize hg, svn and darcs versions as snapshot versions.
7187
7188 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
7189 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
7190 (ruby--encoding-comment-required-p): Extract from
7191 `ruby-mode-set-encoding'.
7192 (ruby-mode-set-encoding): Add the ability to always insert an
7193 utf-8 encoding comment. Fix and simplify coding comment update
7194 logic.
7195
7196 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
7197
7198 * net/tramp-gvfs.el (top): Run init code only when
7199 `tramp-gvfs-enabled' is not nil.
7200 (tramp-gvfs-enabled): Check also :system bus.
7201
7202 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7203
7204 Sync with upstream verilog-mode revision 78e66ba.
7205 * progmodes/verilog-mode.el (verilog-end-of-defun)
7206 (verilog-type-completion, verilog-get-list): Remove unused funcs.
7207 (verilog-get-end-of-defun): Remove unused argument.
7208 (verilog-comment-depth): Remove unused local `e'.
7209 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
7210 Don't pass arg to verilog-get-end-of-defun.
7211
7212 2013-11-14 Glenn Morris <rgm@gnu.org>
7213
7214 * obsolete/assoc.el (aget): Prefix dynamic variable.
7215
7216 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
7217
7218 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7219
7220 * widget.el, hfy-cmap.el: Remove bogus package version number.
7221
7222 2013-11-13 Glenn Morris <rgm@gnu.org>
7223
7224 * replace.el (replace-eval-replacement):
7225 Try to give more helpful error message. (Bug#15836)
7226
7227 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
7228 (archive-7z-update): Avoid custom type mismatches.
7229
7230 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
7231
7232 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
7233
7234 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
7235 address can be empty.
7236
7237 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
7238 Accept nil SWITCHES.
7239 (tramp-gvfs-handle-write-region): Implement APPEND.
7240
7241 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
7242
7243 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
7244 binary "|" operator and closing block args delimiter.
7245 Remove FIXME comment referring to Ruby 1.8-only syntax.
7246 (ruby-smie--implicit-semi-p): Not after "|" operator.
7247 (ruby-smie--closing-pipe-p): New function.
7248 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
7249 (ruby-smie-rules): Indent after "|".
7250
7251 2013-11-12 Glenn Morris <rgm@gnu.org>
7252
7253 * ps-print.el (ps-face-attribute-list):
7254 Handle anonymous faces. (Bug#15827)
7255
7256 2013-11-12 Martin Rudalics <rudalics@gmx.at>
7257
7258 * window.el (display-buffer-other-frame): Fix doc-string.
7259 (Bug#15868)
7260
7261 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7262
7263 * subr.el (force-mode-line-update): Delete, move to buffer.c.
7264
7265 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
7266
7267 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
7268 (tramp-sh-handle-file-local-copy): Don't write a message when
7269 saving temporary files.
7270
7271 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
7272 both directories are remote.
7273 (tramp-smb-handle-directory-files): Do not return double entries.
7274 Do not expand full file names.
7275 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
7276 (tramp-smb-handle-write-region): Implement APPEND.
7277 (tramp-smb-get-stat-capability): Fix a stupid bug.
7278
7279 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7280
7281 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
7282
7283 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7284
7285 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
7286 throwing error over malformed let/let* (bug#15814).
7287
7288 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7289
7290 * iswitchb.el (iswitchb-mode): Mark obsolete.
7291
7292 2013-11-11 Glenn Morris <rgm@gnu.org>
7293
7294 * international/uni-bidi.el, international/uni-category.el:
7295 * international/uni-name.el, international/uni-numeric.el:
7296 Regenerate for Unicode 6.3.0.
7297
7298 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
7299
7300 * net/tramp.el (tramp-methods):
7301 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
7302 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
7303
7304 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
7305
7306 * progmodes/sh-script.el (sh-font-lock-keywords-var):
7307 Force highlighting text after Summary keyword in doc face for rpm.
7308
7309 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
7310
7311 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
7312 available and the word has no wildcards, append one to the grep pattern.
7313 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
7314 (ispell-complete-word): Call `ispell-lookup-words' with the value
7315 independent of `ispell-look-p'.
7316
7317 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7318
7319 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
7320 Not after "||".
7321 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
7322 their parent.
7323
7324 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7325
7326 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
7327 (ruby-font-lock-keywords): Use backquote.
7328
7329 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7330
7331 * progmodes/ruby-mode.el (ruby-smie--forward-token)
7332 (ruby-smie--backward-token): Only consider full-string matches.
7333
7334 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
7335
7336 * faces.el (describe-face): Add distant-foreground.
7337
7338 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
7339
7340 * progmodes/ruby-mode.el: Improve encoding comment handling.
7341 (ruby-encoding-magic-comment-style): New option.
7342 (ruby-custom-encoding-magic-comment-template): New option.
7343 (ruby--insert-coding-comment, ruby--detect-encoding):
7344 New functions extracted from `ruby-mode-set-encoding'.
7345 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
7346 to control the style of the auto-inserted encoding comment.
7347
7348 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7349
7350 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
7351 Use `smie-backward-sexp' with token argument.
7352
7353 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
7354
7355 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
7356 Remove instrumentation code.
7357
7358 2013-11-08 Glenn Morris <rgm@gnu.org>
7359
7360 * progmodes/autoconf.el (autoconf-mode):
7361 Tweak comment-start-skip. (Bug#15822)
7362
7363 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7364
7365 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
7366 at bobp (bug#15826).
7367 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
7368
7369 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
7370
7371 * man.el (Man-start-calling): New macro, extracted from
7372 Man-getpage-in-background.
7373 (Man-getpage-in-background): Use it.
7374 (Man-update-manpage): New command.
7375 (Man-mode-map): Bind it.
7376
7377 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
7378
7379 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
7380 of "and", "or", "&&" and "||".
7381 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
7382 argument. Prohibit opening curly brace because it could only be a
7383 block opener in that position.
7384 (ruby-smie--forward-token, ruby-smie--backward-token):
7385 Separate "|" from "&" or "*" going after it. That can happen in block
7386 arguments.
7387 (ruby-smie--indent-to-stmt): New function, seeks the end of
7388 previous statement or beginning of buffer.
7389 (ruby-smie-rules): Use it.
7390 (ruby-smie-rules): Check if there's a ":" before a curly block
7391 opener candidate; if there is, it's a hash.
7392
7393 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
7394
7395 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
7396 (cl--block-wrapper): Fix last accidental change.
7397
7398 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
7399
7400 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
7401 Instrument, in order to hunt failure on hydra.
7402
7403 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7404
7405 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
7406 malformed bindings form (bug#15814).
7407
7408 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
7409
7410 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
7411 "." compared to " @ ". This incidentally fixes some indentation
7412 examples with "do".
7413 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
7414 (ruby-smie-grammar): New tokens: "and" and "or".
7415 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
7416 Exclude "and" and "or". Remove "do" in order to work around token
7417 priorities.
7418 (ruby-smie-rules): Add all infix tokens. Handle the case of
7419 beginning-of-buffer.
7420
7421 2013-11-06 Glenn Morris <rgm@gnu.org>
7422
7423 * Makefile.in (setwins_almost, setwins_for_subdirs):
7424 Avoid accidental matches.
7425
7426 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
7427
7428 * menu-bar.el (popup-menu): Use key-binding.
7429
7430 2013-11-06 Eli Zaretskii <eliz@gnu.org>
7431
7432 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
7433 menus, support also the menus produced by minor modes.
7434 (Bug#15817)
7435
7436 2013-11-06 Leo Liu <sdl.web@gmail.com>
7437
7438 * thingatpt.el (thing-at-point-looking-at): Add optional arg
7439 DISTANCE to bound the search. All uses changed. (Bug#15808)
7440
7441 2013-11-06 Glenn Morris <rgm@gnu.org>
7442
7443 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
7444 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
7445 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
7446
7447 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
7448
7449 * electric.el (electric-indent-just-newline): New command.
7450 (electric-indent-mode-map): New keymap.
7451 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
7452 Re-add :group which weren't redundant.
7453
7454 * electric.el (electric-indent-local-mode): New minor mode.
7455 (electric-indent-functions-without-reindent): New var.
7456 (electric-indent-post-self-insert-function): Use it.
7457 * emacs-lisp/gv.el (buffer-local-value): Add setter.
7458
7459 2013-11-05 Eli Zaretskii <eliz@gnu.org>
7460
7461 * international/quail.el (quail-help): Be more explicit about the
7462 meaning of the labels shown on the keys. (Bug#15800)
7463
7464 * startup.el (normal-top-level): Load the subdirs.el files before
7465 setting the locale environment. (Bug#15805)
7466
7467 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
7468
7469 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
7470 via arguments so as to get the right ones (bug#15418).
7471
7472 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
7473
7474 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
7475
7476 Fix problems found while writing a test suite.
7477
7478 * net/tramp-compat.el (tramp-compat-load): New defun.
7479 * net/tramp.el (tramp-handle-load): Use it.
7480
7481 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
7482 "(numberp ok-if-already-exists)" correctly.
7483
7484 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
7485
7486 * international/characters.el (glyphless-char-display-control):
7487 Add usage note.
7488
7489 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
7490
7491 * progmodes/python.el (python-mode):
7492 * progmodes/scheme.el (scheme-mode):
7493 * progmodes/prolog.el (prolog-mode):
7494 * progmodes/ruby-mode.el (ruby-mode):
7495 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
7496 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
7497
7498 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7499
7500 * rect.el (rectangle--highlight-for-redisplay):
7501 * emacs-lisp/smie.el (smie--next-indent-change):
7502 Use buffer-chars-modified-tick.
7503
7504 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
7505
7506 * electric.el (electric-indent-post-self-insert-function):
7507 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
7508
7509 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
7510
7511 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
7512
7513 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7514
7515 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
7516 (bug#15786).
7517
7518 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7519
7520 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
7521
7522 * progmodes/python.el: Fix up last change.
7523 (python-shell--save-temp-file): New function.
7524 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
7525 `string' comes from the current buffer.
7526 (python-shell-send-string-no-output): Remove `msg' arg.
7527 (python--use-fake-loc): New var.
7528 (python-shell-buffer-substring): Obey it. Try to compensate for the
7529 extra coding line added by python-shell--save-temp-file.
7530 (python-shell-send-region): Use python-shell--save-temp-file and
7531 python-shell-send-file directly. Add `nomain' argument.
7532 (python-shell-send-buffer): Use python-shell-send-region.
7533 (python-electric-pair-string-delimiter): New function.
7534 (python-mode): Use it.
7535
7536 2013-11-04 Eli Zaretskii <eliz@gnu.org>
7537
7538 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
7539 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
7540 environment and decoding all of the default-directory's to here
7541 from command-line.
7542 (command-line): Decode also argv[0].
7543
7544 * loadup.el: Error out if default-directory is a multibyte string
7545 when we are dumping.
7546
7547 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
7548
7549 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
7550
7551 * emacs-lisp/package.el (package-menu-mode)
7552 (package-menu--print-info, package-menu--archive-predicate):
7553 Add Archive column to package list.
7554
7555 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
7556
7557 Fix problems found while writing a test suite.
7558
7559 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
7560 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
7561 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
7562 to nil when running original file name handler. Otherwise,
7563 there are problems with constructs like "$$FOO".
7564
7565 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
7566 for `localname'.
7567
7568 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
7569
7570 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
7571
7572 * subr.el (version<, version<=, version=):
7573 Update docstrings with information for snapshot versions.
7574
7575 * helpers.el: New library for misc helper functions.
7576 (hash-table-keys): New function returning a list of hash keys.
7577 (hash-table-values): New function returning a list of hash values.
7578
7579 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
7580
7581 * progmodes/ruby-mode.el (ruby-smie--forward-token)
7582 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
7583
7584 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
7585
7586 * textmodes/fill.el (fill-single-char-nobreak-p): New function
7587 checking whether point is after a 1-letter word.
7588
7589 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7590
7591 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
7592 Don't infloop when expanding region over `multiline' syntax-type that
7593 begins a line (bug#15778).
7594
7595 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7596
7597 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
7598 Make it into a proper minor mode.
7599 (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
7600 (rectangle-mark-mode-map): New keymap.
7601 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
7602
7603 2013-11-04 Glenn Morris <rgm@gnu.org>
7604
7605 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
7606
7607 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
7608
7609 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
7610 (ruby-smie-rules): Use smie-rule-parent instead.
7611
7612 * emacs-lisp/smie.el (smie-rule-parent): Always call
7613 smie-indent-virtual rather than only for hanging tokens.
7614 (smie--next-indent-change): New helper command.
7615
7616 2013-11-03 Glenn Morris <rgm@gnu.org>
7617
7618 * Makefile.in (abs_srcdir): Remove.
7619 (emacs): Unset EMACSLOADPATH.
7620
7621 2013-11-02 Glenn Morris <rgm@gnu.org>
7622
7623 * Makefile.in (EMACS): Use a relative filename.
7624 (abs_top_builddir): Remove.
7625 (custom-deps, finder-data, autoloads): Use --chdir.
7626
7627 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
7628
7629 Use relative filenames in TAGS files.
7630 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
7631 (lisptagsfiles4, TAGS): Use relative file names.
7632 (TAGS-LISP): Remove.
7633 (maintainer-clean): No more TAGS-LISP file.
7634
7635 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
7636 (lisptagsfiles4): Use absolute filenames again.
7637 (TAGS, TAGS-LISP): Not everything needs to run in one line.
7638 Remove all *loaddefs files, not just the first. Remove esh-groups.
7639 (maintainer-clean): Delete TAGS, TAGS-LISP.
7640
7641 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7642
7643 * emacs-lisp/package.el (package-version-join):
7644 Recognize snapshot versions.
7645
7646 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7647
7648 * subr.el (version-regexp-alist): Add support for snapshot versions.
7649
7650 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
7651
7652 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
7653 New function, replacement for `smie-rule-parent' for when we want to
7654 skip over our direct parent if it's an assignment token..
7655 (ruby-smie-rules): Use it.
7656
7657 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
7658
7659 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
7660 unconditionally. Remove now unnecessary forward declarations.
7661 Remove XEmacs-specific setup.
7662 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
7663 (ruby-font-lock-syntactic-keywords)
7664 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
7665 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
7666 (ruby-here-doc-end-syntax): Remove.
7667 (ruby-mode): Don't check whether `syntax-propertize-rules' is
7668 defined as function.
7669
7670 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
7671
7672 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
7673
7674 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
7675
7676 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
7677 table and abbrev table, `define-derived-mode' does that for us
7678 anyway.
7679
7680 2013-11-01 Glenn Morris <rgm@gnu.org>
7681
7682 * Makefile.in: Remove manual mh-e dependencies (writing .elc
7683 files is atomic for some time, so no parallel compilation issues).
7684
7685 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
7686
7687 * faces.el (face-x-resources): Add :distant-foreground.
7688 (region): Use :distant-foreground for gtk and ns.
7689
7690 2013-11-01 Tassilo Horn <tsdh@gnu.org>
7691
7692 Allow multiple bibliographies when BibLaTeX is used rather than
7693 BibTeX.
7694 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
7695 (reftex-locate-bibliography-files): Us it.
7696
7697 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
7698
7699 * image.el (image-type-header-regexps): Fix the 'pbm' part to
7700 allow comments in pbm files.
7701
7702 * term/w32-win.el (dynamic-library-alist): Support newer versions
7703 of libjpeg starting with v7: look only for the DLL from the
7704 version against which Emacs was built.
7705 Support versions of libpng beyond 1.4.x.
7706 Support libtiff v4.x.
7707
7708 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
7709
7710 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
7711 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
7712 Add property :safe.
7713 (ruby-deep-arglist): Add property :type.
7714
7715 2013-10-31 Glenn Morris <rgm@gnu.org>
7716
7717 * Makefile.in (custom-deps, finder-data): No need to setq the target
7718 variables, we are in the right directory and the defaults work fine.
7719
7720 2013-10-30 Glenn Morris <rgm@gnu.org>
7721
7722 * Makefile.in (autoloads): Do not use abs_lisp.
7723
7724 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7725 `newline' does not respect `standard-output', so use `princ'.
7726
7727 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
7728
7729 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
7730 * buff-menu.el (Buffer-menu--unmark): New function.
7731 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
7732
7733 2013-10-30 Glenn Morris <rgm@gnu.org>
7734
7735 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
7736
7737 * emacs-lisp/package.el (lm-homepage): Declare.
7738
7739 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
7740 Fix doc typos.
7741
7742 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
7743
7744 * Makefile.in (finder-data, autoloads, update-subdirs)
7745 (compile-main, compile-clean, compile-always, bootstrap-clean):
7746 Check return value of cd.
7747 (compile-calc): Remove.
7748
7749 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7750
7751 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
7752
7753 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
7754 (byte-compile-and-folded): New function.
7755 (=, <, >, <=, >=): Use it.
7756
7757 * dos-w32.el (minibuffer-history-case-insensitive-variables)
7758 (path-separator, null-device, buffer-file-coding-system)
7759 (lpr-headers-switches): Check system-type before modifying them.
7760 (find-buffer-file-type-coding-system): Mark obsolete.
7761 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
7762 find-file-not-found-set-buffer-file-coding-system.
7763 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
7764 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
7765 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
7766 (w32-direct-print-region-helper, w32-direct-print-region-function)
7767 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
7768 * startup.el (normal-top-level-add-subdirs-to-load-path):
7769 * ps-print.el (ps-print-region-function):
7770 * lpr.el (print-region-function): Use new name.
7771
7772 * subr.el (custom-declare-variable-early): Remove function.
7773 (custom-declare-variable-list): Remove var.
7774 (error, user-error): Remove `while' loop.
7775 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
7776 (user-emacs-directory-warning, locate-user-emacs-file):
7777 Move to files.el.
7778 * simple.el (read-quoted-char-radix, read-quoted-char):
7779 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
7780 Move from subr.el.
7781 * custom.el (custom-declare-variable-list): Don't process
7782 custom-declare-variable-list.
7783
7784 * progmodes/python.el (python-shell-get-buffer): New function.
7785 (python-shell-get-process): Use it.
7786 (python-shell-send-string): Always use utf-8 and add a cookie to tell
7787 Python which encoding was used. Don't split-string since we only care
7788 about the first line. Return the temp-file, if applicable.
7789 (python-shell-send-region): Tell compile.el how to turn locations in
7790 the temp-file into locations in the source buffer.
7791
7792 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
7793
7794 * subr.el (undefined): Add missing behavior from the C code for
7795 unbound keys.
7796
7797 * rect.el: Use lexical-binding. Add new rectangular region support.
7798 (rectangle-mark): New command.
7799 (rectangle--region): New var.
7800 (deactivate-mark-hook): Reset rectangle--region.
7801 (rectangle--extract-region, rectangle--insert-for-yank)
7802 (rectangle--highlight-for-redisplay)
7803 (rectangle--unhighlight-for-redisplay): New functions.
7804 (region-extract-function, redisplay-unhighlight-region-function)
7805 (redisplay-highlight-region-function): Use them to handle
7806 rectangular region.
7807 * simple.el (region-extract-function): New var.
7808 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
7809 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
7810 (kill-region): Replace obsolete `yank-handler' arg with `region'.
7811 (copy-region-as-kill, kill-ring-save): Add `region' argument.
7812 (redisplay-unhighlight-region-function)
7813 (redisplay-highlight-region-function): New vars.
7814 (redisplay--update-region-highlight): New function.
7815 (pre-redisplay-function): Use it.
7816 (exchange-point-and-mark): Don't deactivate the mark before
7817 reactivate-it anyway.
7818 * comint.el (comint-kill-region): Remove yank-handler argument.
7819 * delsel.el (delete-backward-char, backward-delete-char-untabify)
7820 (delete-char): Remove property, since it's now part of their
7821 default behavior.
7822 (self-insert-iso): Remove property since this command doesn't exist.
7823
7824 * emacs-lisp/package.el (package--download-one-archive)
7825 (describe-package-1): Don't query the user about final newline.
7826
7827 2013-10-29 Daniel Colascione <dancol@dancol.org>
7828
7829 * net/tramp.el (tramp-methods): Document new functionality.
7830 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
7831 tramp-hostname-checker if method provides one instead of scanning
7832 argument list for "%h" to decide hostname acceptability.
7833
7834 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
7835
7836 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
7837 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
7838 Handle COPY-CONTENTS. (Bug#15737)
7839
7840 2013-10-28 Daiki Ueno <ueno@gnu.org>
7841
7842 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
7843 Document that this option has no effect with GnuPG 2.0 (bug#15552).
7844
7845 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
7846
7847 * image.el (defimage, image-load-path): Doc fixes.
7848
7849 2013-10-27 Alan Mackenzie <acm@muc.de>
7850
7851 Indent statements in macros following "##" correctly.
7852 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7853 Modify the "#" arm of a cond form to handle "#" and "##" operators.
7854
7855 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7856
7857 * linum.el (linum-update-window): Fix boundary test (bug#13446).
7858
7859 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
7860
7861 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
7862 after `=' is probably a new expression.
7863
7864 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7865
7866 * man.el (man-imenu-title): New option.
7867 (Man-mode-map): Add menu. (Bug#15722)
7868 (Man-mode): Add imenu to menu.
7869
7870 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
7871
7872 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
7873 specific in what the first arg can be: a non-keyword word,
7874 string/regexp/percent literal opener, opening paren, or unary
7875 operator followed directly by word.
7876
7877 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7878
7879 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
7880 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
7881 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
7882 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
7883 Remove vars, they do not apply any more.
7884 (prolog-mode-abbrev-table): Remove redundant declaration.
7885 (prolog-upper-case-string, prolog-lower-case-string): Remove.
7886 (prolog-use-smie): Remove.
7887 (prolog-smie-rules): Add indentation rule for the if-then-else layout
7888 supported by prolog-electric-if-then-else-flag.
7889 (prolog-mode-variables, prolog-menu): Use setq-local.
7890 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
7891 Remove binding to `Backspace' since this key doesn't exist anyway.
7892 Remove bindings for electric self-inserting keys.
7893 (prog-mode): Assume it's defined.
7894 (prolog-post-self-insert): New function.
7895 (prolog-mode): Use it.
7896 (prolog-indent-line, prolog-indent-level)
7897 (prolog-find-indent-of-matching-paren)
7898 (prolog-indentation-level-of-line, prolog-goto-comment-column)
7899 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
7900 (prolog-goto-next-paren, prolog-in-string-or-comment)
7901 (prolog-tokenize, prolog-inside-mline-comment)
7902 (prolog-find-start-of-mline-comment): Remove functions.
7903 (prolog-find-unmatched-paren, prolog-clause-end)
7904 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
7905 (prolog-electric--if-then-else): Rename from
7906 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
7907 (prolog-tokenize-searchkey): Remove const.
7908 (prolog-clause-info): Use forward-sexp.
7909 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
7910 (prolog-electric-if-then-else): Remove commands.
7911 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
7912 for use in post-self-insert-hook.
7913 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
7914 for use in post-self-insert-hook.
7915 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
7916 for use in post-self-insert-hook.
7917 (prolog-electric--underscore): Rename from prolog-electric--underscore;
7918 adapt it for use in post-self-insert-hook.
7919
7920 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
7921
7922 * emacs-lisp/ert.el (ert-run-tests-interactively):
7923 Use `completing-read'. (Bug#9756)
7924
7925 2013-10-25 Eli Zaretskii <eliz@gnu.org>
7926
7927 * simple.el (line-move): Call line-move-1 instead of
7928 line-move-visual when the current window hscroll is zero, but
7929 temporary-goal-column indicates we will need to hscroll as result
7930 of the movement. (Bug#15712)
7931
7932 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
7933
7934 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
7935 capitalization. Use :visible instead of :active.
7936 Fix `ruby-indent-exp' reference. Add menu items for the generic
7937 commands that are used with SMIE.
7938 (ruby-do-end-to-brace): Insert space after `{'.
7939
7940 2013-10-25 John Anthony <john@jo.hnanthony.com>
7941
7942 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
7943
7944 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
7945
7946 2013-10-25 Glenn Morris <rgm@gnu.org>
7947
7948 * vc/vc.el (vc-print-log): Don't use a working revision unless
7949 one was explicitly specified. (Bug#15322)
7950
7951 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7952
7953 * subr.el (add-to-list): Preserve return value in compiler-macro
7954 (bug#15692).
7955
7956 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7957
7958 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
7959 result. Ask user to retry using '-all' flag. (Bug#15701)
7960
7961 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7962
7963 * emacs-lisp/smie.el: New smie-config system.
7964 (smie-config): New defcustom.
7965 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
7966 (smie-config-guess, smie-config-save): New commands.
7967 (smie-config--mode-local, smie-config--buffer-local)
7968 (smie-config--trace, smie-config--modefuns): New vars.
7969 (smie-config--advice, smie-config--mode-hook)
7970 (smie-config--setter, smie-config-local, smie-config--get-trace)
7971 (smie-config--guess-value, smie-config--guess): New functions.
7972 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
7973 text properties. Treat "string fence" syntax like string syntax.
7974
7975 * progmodes/sh-script.el (sh-use-smie): Change default.
7976 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
7977 (sh-var-value): Simplify by CSE.
7978 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
7979 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
7980 is used.
7981 (sh-guess-basic-offset): Use cl-incf.
7982 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
7983
7984 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
7985
7986 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
7987 (bug#15699).
7988
7989 2013-10-24 Glenn Morris <rgm@gnu.org>
7990
7991 * Makefile.in (abs_top_srcdir): Remove.
7992 (update-subdirs): Use relative path to update-subdirs.
7993
7994 2013-10-24 Eli Zaretskii <eliz@gnu.org>
7995
7996 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
7997 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
7998 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
7999 Call unmsys--file-name before expand-file-name, not after it.
8000
8001 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
8002
8003 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
8004 (ert-test-skipped): New error.
8005 (ert-skip, ert-stats-skipped): New defuns.
8006 (ert--skip-unless): New macro.
8007 (ert-test-skipped): New struct.
8008 (ert--run-test-debugger, ert-test-result-type-p)
8009 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
8010 (ert--stats-set-test-and-result, ert-char-for-test-result)
8011 (ert-string-for-test-result, ert-run-tests-batch)
8012 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
8013 Handle skipped tests. (Bug#9803)
8014
8015 2013-10-24 Glenn Morris <rgm@gnu.org>
8016
8017 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
8018
8019 * Makefile.in (abs_top_srcdir): New, set by configure.
8020 (update-subdirs): Correct build-aux location.
8021
8022 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
8023
8024 * vc/vc.el (vc-print-root-log): Always set `default-directory'
8025 value, whether we could auto-deduce `backend', or not.
8026
8027 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
8028 with parameters" example. Simplify the "is it block or is it
8029 hash" check, but also make it more thorough.
8030
8031 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
8032
8033 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
8034
8035 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8036
8037 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
8038 { if it is hanging.
8039
8040 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
8041 :before ";".
8042
8043 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
8044
8045 * progmodes/compile.el (compilation-directory-matcher)
8046 (compilation-page-delimiter):
8047 Support GNU Make-4.0 directory quoting. (Bug#15678)
8048
8049 2013-10-23 Leo Liu <sdl.web@gmail.com>
8050
8051 * ido.el (ido-tidy): Handle read-only text.
8052
8053 2013-10-23 Glenn Morris <rgm@gnu.org>
8054
8055 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
8056 (emacs, compile, compile-always):
8057 Quote entities that might contain whitespace.
8058 (custom-deps, finder-data, autoloads): Use abs_lisp.
8059 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
8060 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
8061 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
8062
8063 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
8064
8065 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
8066 Use `following-char'.
8067
8068 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
8069
8070 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
8071 * progmodes/ruby-mode.el (ruby-smie-rules):
8072 Remove corresponding workaround. Fix indentation rule of ";" so it
8073 also applies when ";" is the parent.
8074
8075 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
8076
8077 * frame.el (display-screens, display-pixel-height)
8078 (display-pixel-width, display-mm-width, display-backing-store)
8079 (display-save-under, display-planes, display-color-cells)
8080 (display-visual-class, display-monitor-attributes-list):
8081 Mention the optional ‘display’ argument in doc strings.
8082
8083 2013-10-22 Michael Gauland <mikelygee@amuri.net>
8084
8085 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
8086 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
8087
8088 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
8089
8090 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
8091 TODO. Add "." after " @ ".
8092 (ruby-smie--at-dot-call): New function. Checks if point at method
8093 call with explicit target.
8094 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
8095 to the method name tokens when it precedes them.
8096 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
8097 (ruby-smie-rules): Add rule for indentation before and after "."
8098 token.
8099
8100 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
8101
8102 * textmodes/remember.el (remember-diary-extract-entries):
8103 Avoid add-to-list.
8104
8105 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
8106 an instruction.
8107
8108 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
8109
8110 * progmodes/ruby-mode.el (ruby-smie-grammar):
8111 Add (almost) all infix operators.
8112 (ruby-smie--implicit-semi-p): Add new operator chars.
8113
8114 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
8115 `smie-down-list'.
8116 (ruby-smie--args-separator-p): Check that there's no newline
8117 between method call and its arguments.
8118
8119 2013-10-20 Alan Mackenzie <acm@muc.de>
8120
8121 Allow comma separated lists after Java "implements".
8122
8123 * progmodes/cc-engine.el (c-backward-over-enum-header):
8124 Parse commas.
8125 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
8126 from a "disallowed" list in enum fontification.
8127
8128 2013-10-20 Johan Bockgård <bojohan@gnu.org>
8129
8130 * startup.el (default-frame-background-mode): Remove unused defvar.
8131
8132 * progmodes/verilog-mode.el (verilog-mode): Don't set
8133 comment-indent-function globally.
8134
8135 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
8136
8137 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
8138 Move Info menu item creation to ns-win.el.
8139
8140 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
8141 in menu bar.
8142
8143 * menu-bar.el: Move GNUstep specific menus...
8144
8145 * term/ns-win.el (ns-initialize-window-system): ... to here.
8146
8147 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
8148
8149 * simple.el (newline): Only run post-self-insert-hook when
8150 called interactively.
8151
8152 2013-10-19 Johan Bockgård <bojohan@gnu.org>
8153
8154 * icomplete.el (icomplete-with-completion-tables): Add :version.
8155
8156 2013-10-19 Alan Mackenzie <acm@muc.de>
8157
8158 Fix fontification bugs with constructors and const.
8159
8160 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
8161 CASE 2) Remove the check for the absence of a suffix construct
8162 after a function declaration with only types (no identifiers) in
8163 the parentheses. Also, accept a function declaration with just a
8164 type inside the parentheses, if this type can be positively
8165 recognised as such, or if a prefix keyword like "explicit" nails
8166 down the construct as a declaration.
8167
8168 2013-10-19 Eli Zaretskii <eliz@gnu.org>
8169
8170 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
8171 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
8172 the problem whereby selecting a menu item that leads to a
8173 minibuffer prompt moves the cursor out of the minibuffer window,
8174 making it hard to type at the prompt. Suggested by Stefan Monnier
8175 <monnier@iro.umontreal.ca>.
8176
8177 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
8178
8179 * menu-bar.el: Don't make Services menu.
8180
8181 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8182
8183 * ffap.el: Handle "/usr/include/c++/<version>" directories.
8184 (ffap-alist): Use ffap-c++-mode for c++-mode.
8185 (ffap-c++-path): New variable.
8186 (ffap-c++-mode): New function.
8187
8188 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
8189
8190 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
8191
8192 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
8193
8194 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
8195 introduced on 2013-09-08, which results in an infinite loop
8196 requesting a password.
8197
8198 2013-10-18 Glenn Morris <rgm@gnu.org>
8199
8200 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
8201
8202 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
8203
8204 Sync with upstream verilog-mode revision 1a6ecec7.
8205 * progmodes/verilog-mode.el (verilog-mode-version): Update.
8206 (verilog-mode-release-date): Remove.
8207 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
8208 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
8209 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
8210 (verilog-auto-tieoff-ignore-regexp)
8211 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
8212 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
8213 (verilog-signals-with, verilog-dir-cache-preserving)
8214 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
8215 Doc fixes.
8216 (verilog-case-fold): New option, to control case folding in
8217 regexp searches, bug597.
8218 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
8219 (verilog-string-match-fold, verilog-in-paren-count)
8220 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
8221 (verilog-at-close-struct-p): New functions.
8222 (verilog-beg-block-re-ordered, verilog-extended-case-re)
8223 (verilog-forward-sexp, verilog-set-auto-endcomments)
8224 (verilog-leap-to-case-head): Handle "unique0" case.
8225 (verilog-in-constraint-re): New constant.
8226 (verilog-keywords, verilog-type-font-keywords):
8227 Add some SystemVerilog 1800-2012 keywords.
8228 (verilog-label-be): Remove unimplemented argument, bug669.
8229 (verilog-batch-execute-func): When batch expanding clear
8230 create-lockfiles to prevent spurious user locks when a file ends
8231 up not changing.
8232 (verilog-calculate-indent, verilog-calc-1)
8233 (verilog-at-close-constraint-p, verilog-at-constraint-p)
8234 (verilog-do-indent): Fix indentation of nested constraints
8235 and structures.
8236 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
8237 (verilog-auto-inst-param): Use verilog-string-match-fold.
8238 (verilog-read-inst-module-matcher):
8239 Fix AUTOINST on gate primitives with #1.
8240 (verilog-read-decls): Fix double-declaring user-defined typed signals.
8241 Reads all user-defined typed variables.
8242 (verilog-read-defines): Fix reading definitions inside comments, bug647.
8243 (verilog-signals-matching-regexp)
8244 (verilog-signals-not-matching-regexp, verilog-auto):
8245 Respect verilog-case-fold.
8246 (verilog-diff-report): Fix line count.
8247 (verilog-auto-assign-modport): Remove unused local `modi'.
8248 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
8249 better handle multidimensional arrays.
8250 Fix packed array ports misadding bit index in AUTOINST, bug637.
8251 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
8252 to not double-declare existing outputs and inputs, respectively.
8253 (verilog-template-map): Bind U to verilog-sk-uvm-component.
8254 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
8255 (verilog-sk-uvm-component): New skeleton.
8256 (verilog-submit-bug-report): Add verilog-case-fold,
8257 remove verilog-mode-release-date.
8258
8259 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
8260
8261 * subr.el (sit-for): Call (input-pending-p t) so as to behave
8262 as before.
8263
8264 2013-10-18 Reuben Thomas <rrt@sc3d.org>
8265
8266 * textmodes/remember.el (remember): Set buffer-offer-save in
8267 remember buffers (bug#13566).
8268
8269 2013-10-18 Daniel Colascione <dancol@dancol.org>
8270
8271 When evaluating forms in ielm, direct standard output to ielm
8272 buffer. Add new ielm-return-for-effect command. Remove trailing
8273 whitespace throughout.
8274
8275 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
8276 (ielm-return-for-effect): New command.
8277 (ielm-send-input): Accept optional `for-effect' parameter.
8278 (ielm-eval-input): Accept optional `for-effect' parameter.
8279 Bind `standard-output' to stream we create using
8280 `ielm-standard-output-impl'. Suppress printing result when
8281 `for-effect'.
8282 (ielm-standard-output-impl): New function.
8283 (inferior-emacs-lisp-mode): Explain new features in documentation.
8284
8285 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
8286
8287 Code cleanup.
8288
8289 * net/tramp.el (tramp-debug-message): Do not check for connection
8290 buffer.
8291 (tramp-message): Use "vector" connection property.
8292
8293 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
8294 (tramp-equal-remote, tramp-eshell-directory-change)
8295 * net/tramp-adb.el (tramp-adb-handle-copy-file)
8296 (tramp-adb-handle-rename-file)
8297 * net/tramp-cmds.el (tramp-list-remote-buffers)
8298 (tramp-cleanup-connection, tramp-cleanup-this-connection)
8299 * net/tramp-compat.el (tramp-compat-process-running-p)
8300 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
8301 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
8302 (tramp-gvfs-handle-rename-file)
8303 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
8304 (tramp-set-file-uid-gid)
8305 * net/tramp-smb.el (tramp-smb-handle-copy-file)
8306 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
8307 of `file-remote-p'.
8308
8309 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
8310 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
8311 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
8312 (tramp-gw-open-network-stream): Suppress unrelated traces.
8313
8314 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
8315 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
8316 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
8317 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
8318 connection property.
8319
8320 * net/tramp-cache.el (top): Suppress traces when reading
8321 persistency file.
8322
8323 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
8324 Refactor common code. Improve debug message.
8325 (tramp-maybe-open-connection)
8326 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
8327 connection buffer too early.
8328
8329 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
8330 from `tramp-smb-actions-with-acl'.
8331 (tramp-smb-actions-set-acl): New defconst.
8332 (tramp-smb-handle-copy-directory)
8333 (tramp-smb-action-get-acl): New defun, renamed from
8334 `tramp-smb-action-with-acl'.
8335 (tramp-smb-action-set-acl): New defun.
8336 (tramp-smb-handle-set-file-acl): Rewrite.
8337
8338 2013-10-17 Glenn Morris <rgm@gnu.org>
8339
8340 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
8341
8342 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8343
8344 * skeleton.el (skeleton-newline): Remove.
8345 (skeleton-internal-1): Use (insert "\n") instead.
8346
8347 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
8348 let-bindings.
8349
8350 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
8351 forward-sexp-function while we redo its job (bug#15613).
8352
8353 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
8354
8355 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
8356 represented by lists.
8357
8358 2013-10-16 Glenn Morris <rgm@gnu.org>
8359
8360 * tmm.el (tmm--history): New dynamic variable.
8361 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
8362
8363 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
8364
8365 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
8366 (tramp-smb-errors): Add error messages.
8367 (tramp-smb-actions-with-acl): New defconst.
8368 (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
8369 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
8370 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
8371 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
8372 (tramp-smb-get-stat-capability): Fix tests.
8373
8374 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
8375
8376 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
8377 (bug#15580).
8378
8379 2013-10-16 Glenn Morris <rgm@gnu.org>
8380
8381 * ansi-color.el (ansi-color-drop-regexp):
8382 Add 1J, 1K, 2K. (Bug#15617)
8383
8384 * files.el (hack-local-variables--warned-lexical): New.
8385 (hack-local-variables):
8386 Warn about misplaced lexical-binding. (Bug#15616)
8387
8388 * net/eww.el (eww-render): Always set eww-current-url,
8389 and update header line. (Bug#15622)
8390 (eww-display-html): ... Rather than just doing it here.
8391
8392 2013-10-15 Eli Zaretskii <eliz@gnu.org>
8393
8394 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
8395 menu navigations commands.
8396
8397 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
8398
8399 * progmodes/subword.el (subword-capitalize): Be careful when
8400 the search for [[:alpha:]] fails (bug#15580).
8401
8402 2013-10-14 Eli Zaretskii <eliz@gnu.org>
8403
8404 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
8405 to commands that scroll the menu.
8406
8407 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
8408
8409 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
8410 Handle methods ending with `?' and `!'.
8411
8412 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
8413
8414 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
8415 `japanese-cp932' to `cp932' to fix the problem where saving a
8416 source file written in Shift_JIS twice would end up having
8417 `coding: japanese-cp932' which Ruby could not recognize.
8418 (ruby-mode-set-encoding): Add support for encodings mapped to nil
8419 in `ruby-encoding-map'.
8420 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
8421 doesn't need to be explicitly declared in magic comment.
8422 (ruby-encoding-map): Add type declaration for better customize UI.
8423
8424 2013-10-13 Glenn Morris <rgm@gnu.org>
8425
8426 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
8427 Occur buffers are read-only. http://bugs.debian.org/720775
8428
8429 * emacs-lisp/authors.el (authors-fixed-entries):
8430 Comment out old alpha stuff.
8431
8432 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
8433
8434 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
8435 to `after-save-hook' instead of `before-save-hook'.
8436 (ruby-mode-set-encoding): Use the value of coding system used to
8437 write the file. Call `basic-save-buffer-1' after modifying the
8438 buffer.
8439
8440 2013-10-13 Alan Mackenzie <acm@muc.de>
8441
8442 Fix indentation/fontification of Java enum with
8443 "implements"/generic.
8444
8445 * progmodes/cc-engine.el (c-backward-over-enum-header):
8446 Extracted from the three other places and enhanced to handle generics.
8447 (c-inside-bracelist-p): Uses new function above.
8448 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
8449 function above.
8450 (c-font-lock-enum-tail): Uses new function above.
8451
8452 2013-10-13 Kenichi Handa <handa@gnu.org>
8453
8454 * international/mule-cmds.el (select-safe-coding-system): Remove a
8455 superfluous condition in chekcing whether a coding system is safe
8456 or not.
8457
8458 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
8459
8460 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
8461
8462 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
8463
8464 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
8465
8466 2013-10-13 Glenn Morris <rgm@gnu.org>
8467
8468 * menu-bar.el (menu-bar-update-buffers):
8469 Unify Buffers menu prompt string. (Bug#15576)
8470
8471 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
8472
8473 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
8474 Add some entries.
8475 (authors-fixed-entries): Use accented form of name.
8476
8477 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8478
8479 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
8480 method calls (bug#15594).
8481 (ruby-smie--args-separator-p): New function.
8482 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
8483 recognize paren-free method calls.
8484
8485 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
8486 internals of universal-argument.
8487
8488 2013-10-11 Eli Zaretskii <eliz@gnu.org>
8489
8490 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
8491 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
8492 dropped menu on second mouse click on the menu bar.
8493
8494 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8495
8496 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
8497 (explicit-shell-file-name): Declare.
8498 (sh--vars-before-point, sh--cmd-completion-table): New functions.
8499 (sh-completion-at-point-function): New function.
8500 (sh-mode): Use it.
8501 (sh-smie--keyword-p): Remove unused argument.
8502 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
8503 vars.
8504 (sh-set-shell): Always setup SMIE, even if we use the
8505 old indentation code.
8506
8507 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
8508
8509 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
8510 cases of ? and =.
8511 (ruby-smie-rules): Simplify the "do" rule. The cases when the
8512 predicate would return nil are almost non-existent.
8513 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
8514
8515 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
8516 cache also after commands that modify the buffer but don't move
8517 point.
8518
8519 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
8520
8521 * env.el (substitute-env-in-file-name): New function.
8522 (substitute-env-vars): Extend the meaning of the optional arg.
8523
8524 2013-10-10 Eli Zaretskii <eliz@gnu.org>
8525
8526 * term/w32-win.el (dynamic-library-alist): Define separate lists
8527 of GIF DLLs for versions before and after 5.0.0 of giflib.
8528 (Bug#15531)
8529
8530 2013-10-10 João Távora <joaotavora@gmail.com>
8531
8532 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
8533 not locked, use last revision and current source as
8534 defaults. (Bug#15569)
8535
8536 2013-10-10 Masatake YAMATO <yamato@redhat.com>
8537
8538 * menu-bar.el (menu-bar-open): Don't use popup-menu if
8539 menu-bar is hidden.
8540
8541 2013-10-10 Martin Rudalics <rudalics@gmx.at>
8542
8543 * window.el (pop-to-buffer-same-window): Fix doc-string.
8544 (Bug#15492)
8545
8546 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
8547
8548 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
8549
8550 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
8551
8552 * calendar/icalendar.el (icalendar-import-file):
8553 Fix interactive spec. (Bug#15482)
8554
8555 2013-10-10 Glenn Morris <rgm@gnu.org>
8556
8557 * desktop.el (desktop-save): Default to saving in .emacs.d,
8558 since PWD is no longer in desktop-path by default. (Bug#15319)
8559
8560 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
8561 now that text mode has a menu with the same entry.
8562 (menu-bar-text-mode-auto-fill): Remove now unused func.
8563 * textmodes/text-mode.el (text-mode-map):
8564 Use auto-fill help text from menu-bar.el.
8565
8566 2013-10-10 John Anthony <john@jo.hnanthony.com>
8567
8568 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
8569
8570 2013-10-09 Juri Linkov <juri@jurta.org>
8571
8572 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
8573 instead of this-command-keys. Add universal-argument-more and
8574 universal-argument-minus to the list of prefix commands. (Bug#15568)
8575
8576 2013-10-09 Glenn Morris <rgm@gnu.org>
8577
8578 * vc/vc-svn.el (vc-svn-create-repo):
8579 Expand paths in file://... url. (Bug#15446)
8580
8581 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
8582 Add some entries.
8583 (authors): Remove unused local variables.
8584
8585 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
8586
8587 * profiler.el: Create a more coherent calltree from partial backtraces.
8588 (profiler-format): Hide the tail with `invisible' so that C-s can still
8589 find the hidden elements.
8590 (profiler-calltree-depth): Don't recurse so enthusiastically.
8591 (profiler-function-equal): New hash-table-test.
8592 (profiler-calltree-build-unified): New function.
8593 (profiler-calltree-build): Use it.
8594 (profiler-report-make-name-part): Indent the calltree less.
8595 (profiler-report-mode): Add visibility specs for profiler-format.
8596 (profiler-report-expand-entry, profiler-report-toggle-entry):
8597 Expand the whole subtree when provided with a prefix arg.
8598
8599 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
8600
8601 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
8602 iuwu-mod token.
8603 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
8604 hanging iuwu-mod token.
8605 (ruby-smie--forward-token): Do not include a dot after a token in
8606 that token.
8607 (ruby-smie--backward-token): Likewise.
8608
8609 2013-10-08 Juri Linkov <juri@jurta.org>
8610
8611 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
8612 to isearch-other-control-char.
8613 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
8614 and isearch-post-command-hook to post-command-hook.
8615 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
8616 and isearch-post-command-hook from post-command-hook.
8617 (isearch-unread-key-sequence)
8618 (isearch-reread-key-sequence-naturally)
8619 (isearch-lookup-scroll-key, isearch-other-control-char)
8620 (isearch-other-meta-char): Remove functions.
8621 (isearch-pre-command-hook, isearch-post-command-hook):
8622 New functions based on isearch-other-meta-char rewritten
8623 relying on the new behavior of overriding-terminal-local-map
8624 that does not replace the local keymaps any more. (Bug#15200)
8625
8626 2013-10-08 Eli Zaretskii <eliz@gnu.org>
8627
8628 Support menus on text-mode terminals.
8629 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
8630 functionality.
8631
8632 * tooltip.el (tooltip-mode): Don't error out on TTYs.
8633
8634 * menu-bar.el (popup-menu, popup-menu-normalize-position):
8635 Move here from mouse.el.
8636 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
8637 and arrow keys.
8638 (tty-menu-navigation-map): New map for TTY menu navigation.
8639
8640 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
8641
8642 * frame.el (display-mouse-p): Report text-mode mouse as available
8643 on w32.
8644 (display-popup-menus-p): Report availability if mouse is
8645 available; don't condition on window-system.
8646
8647 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
8648 (tty-menu-selected-face): New faces.
8649
8650 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
8651
8652 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
8653 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
8654 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
8655 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
8656 New constants.
8657 (lisp-mode-variables): New `elisp' argument.
8658 (emacs-lisp-mode): Use it.
8659 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
8660 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
8661
8662 * indent.el: Use lexical-binding.
8663 (indent-region): Add progress reporter.
8664 (tab-stop-list): Make it implicitly extend to infinity by repeating the
8665 last step.
8666 (indent--next-tab-stop): New function to implement this behavior.
8667 (tab-to-tab-stop, move-to-tab-stop): Use it.
8668
8669 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
8670
8671 * indent.el (indent-rigidly--current-indentation): New function.
8672 (indent-rigidly-map): New var.
8673 (indent-rigidly): Use it to provide interactive mode (bug#8196).
8674
8675 2013-10-08 Bastien Guerry <bzg@gnu.org>
8676
8677 * register.el (insert-register): Fix 2013-10-07 change.
8678
8679 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
8680
8681 * progmodes/perl-mode.el: Use lexical-binding.
8682 Remove redundant :group args.
8683 (perl-nochange): Change default to be closer to other major modes's
8684 standard behavior.
8685 (perl-indent-line): Don't consider text on current line as a
8686 valid beginning of function from which to indent.
8687
8688 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
8689 with more than one argument (bug#15538).
8690
8691 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
8692
8693 * vc/pcvs.el: Use lexical-binding.
8694 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
8695 environment of `eval'.
8696 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
8697 than a list of expressions. Adjust callers.
8698 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
8699
8700 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
8701
8702 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
8703 case of the dot in a chained method call being on the following line.
8704
8705 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8706
8707 * electric.el (electric-indent-inhibit): New var.
8708 (electric-indent-post-self-insert-function): Use it.
8709 * progmodes/python.el (python-mode): Set it.
8710
8711 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
8712 open braces.
8713
8714 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
8715
8716 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
8717 (css-mode): Use electric-indent-chars.
8718
8719 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
8720 (font-lock-beg, font-lock-end): Move before first use.
8721 (nxml-mode): Use syntax-propertize-function.
8722 (nxml-after-change, nxml-after-change1): Adjust accordingly.
8723 (nxml-extend-after-change-region): Remove.
8724 * nxml/xmltok.el: Use lexical-binding.
8725 (xmltok-save): Use `declare'.
8726 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
8727 * nxml/nxml-util.el: Use lexical-binding.
8728 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
8729 Use `declare'.
8730 * nxml/nxml-ns.el: Use lexical-binding.
8731 (nxml-ns-save): Use `declare'.
8732 (nxml-ns-prefixes-for): Avoid add-to-list.
8733 * nxml/rng-match.el: Use lexical-binding.
8734 (rng--ipattern): Use cl-defstruct.
8735 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
8736 (rng-cons-group-after, rng-subst-group-after)
8737 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
8738 Use closures instead of `(lambda...).
8739
8740 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
8741
8742 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
8743 of BEG and END.
8744
8745 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
8746 Use `tramp-handle-insert-file-contents'.
8747 (tramp-gvfs-handle-insert-file-contents): Remove function.
8748
8749 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
8750 Use `save-restriction' in order to keep markers.
8751
8752 * net/trampver.el: Update release number.
8753
8754 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8755
8756 * progmodes/compile.el (compilation-parse-errors):
8757 Use compilation--put-prop.
8758 (compilation--ensure-parse): Check compilation-multiline.
8759
8760 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
8761
8762 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
8763 lexical-binding.
8764
8765 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
8766
8767 * progmodes/ruby-mode.el: Fix recently added tests.
8768 (ruby-smie-grammar): Add - and +.
8769 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
8770 (ruby-smie--backward-id): New functions.
8771 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
8772 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
8773 any more.
8774
8775 2013-10-07 Leo Liu <sdl.web@gmail.com>
8776
8777 * register.el (register-preview-delay)
8778 (register-preview-functions): New variables.
8779 (register-read-with-preview, register-preview)
8780 (register-describe-oneline): New functions.
8781 (point-to-register, window-configuration-to-register)
8782 (frame-configuration-to-register, jump-to-register)
8783 (number-to-register, view-register, insert-register)
8784 (copy-to-register, append-to-register, prepend-to-register)
8785 (copy-rectangle-to-register): Use register-read-with-preview to
8786 read register. (Bug#15525)
8787
8788 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
8789
8790 * net/network-stream.el (network-stream-open-starttls): Don't add
8791 --insecure if it's already present, because that gnutls-cli
8792 rejects getting that parameter twice.
8793
8794 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
8795
8796 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
8797 keyword, too.
8798
8799 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
8800
8801 * newcomment.el (comment-use-global-state): Change default value
8802 to t, mark obsolete (Bug#15251).
8803 (comment-beginning): In addition to `comment-to-syntax', check the
8804 value of `comment-use-global-state'.
8805
8806 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8807
8808 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
8809 (ruby-comment-column): Follow the global default, by default.
8810 (ruby-smie-grammar): Add assignment syntax.
8811 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
8812 open-paren, a comma, or a \.
8813 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
8814 and line continuations.
8815 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
8816 followed by implicit semi-colons. Add rule for string concatenation
8817 and for indentation at BOB.
8818 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
8819
8820 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
8821 calling next-sexp, since next-token may have skipped chars which
8822 next-sexp doesn't know should be skipped!
8823
8824 2013-10-05 Leo Liu <sdl.web@gmail.com>
8825
8826 * progmodes/octave.el (octave-send-region):
8827 Call compilation-forget-errors.
8828
8829 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8830
8831 * vc/vc-svn.el (vc-svn-find-admin-dir):
8832 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
8833 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
8834 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
8835 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
8836
8837 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8838
8839 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
8840
8841 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8842
8843 * subr.el (read-passwd): Hide chars even when called within a context
8844 where after-change-functions is disabled (bug#15501).
8845 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
8846 until we removed ourself from overriding-terminal-local-map.
8847
8848 2013-10-04 Leo Liu <sdl.web@gmail.com>
8849
8850 * progmodes/octave.el (inferior-octave-mode):
8851 Call compilation-forget-errors.
8852
8853 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8854
8855 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
8856
8857 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
8858
8859 * net/secrets.el (secrets-create-collection): Add optional
8860 argument ALIAS. Use proper Label keyword. Append ALIAS as
8861 dbus-call-method argument. (Bug#15516)
8862
8863 2013-10-04 Leo Liu <sdl.web@gmail.com>
8864
8865 * progmodes/octave.el (inferior-octave-error-regexp-alist)
8866 (inferior-octave-compilation-font-lock-keywords): New variables.
8867 (compilation-error-regexp-alist)
8868 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
8869 (inferior-octave-mode): Use compilation-shell-minor-mode.
8870
8871 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
8872
8873 * minibuffer.el (completion--replace): Be careful that `end' might be
8874 a marker.
8875
8876 2013-10-03 Daiki Ueno <ueno@gnu.org>
8877
8878 Add support for package signature checking.
8879 * emacs-lisp/package.el (url-http-file-exists-p)
8880 (epg-make-context, epg-context-set-home-directory)
8881 (epg-verify-string, epg-context-result-for)
8882 (epg-signature-status, epg-signature-to-string)
8883 (epg-check-configuration, epg-configuration)
8884 (epg-import-keys-from-file): Declare.
8885 (package-check-signature): New user option.
8886 (package-unsigned-archives): New user option.
8887 (package-desc): Add `signed' field.
8888 (package-load-descriptor): Set `signed' field if .signed file exists.
8889 (package--archive-file-exists-p): New function.
8890 (package--check-signature): New function.
8891 (package-install-from-archive): Check package signature.
8892 (package--download-one-archive): Check archive signature.
8893 (package-delete): Remove .signed file.
8894 (package-import-keyring): New command.
8895 (package-refresh-contents): Import default keyring.
8896 (package-desc-status): Add "unsigned" status.
8897 (describe-package-1, package-menu--print-info)
8898 (package-menu-mark-delete, package-menu--find-upgrades)
8899 (package-menu--status-predicate): Support "unsigned" status.
8900
8901 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8902
8903 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
8904 the new compilation scheme using the new byte-codes.
8905
8906 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
8907 (byte-pophandler): New byte codes.
8908 (byte-goto-ops): Adjust accordingly.
8909 (byte-compile--use-old-handlers): New var.
8910 (byte-compile-catch): Use new byte codes depending on
8911 byte-compile--use-old-handlers.
8912 (byte-compile-condition-case--old): Rename from
8913 byte-compile-condition-case.
8914 (byte-compile-condition-case--new): New function.
8915 (byte-compile-condition-case): New function that dispatches depending
8916 on byte-compile--use-old-handlers.
8917 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
8918 when we can.
8919
8920 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
8921 Optimize under `condition-case' and `catch' if
8922 byte-compile--use-old-handlers is nil.
8923 (disassemble-offset): Handle new bytecodes.
8924
8925 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8926
8927 * subr.el (error): Use `declare'.
8928 (decode-char, encode-char): Use advertised-calling-convention instead
8929 of the docstring to discourage use of the `restriction' arg.
8930
8931 2013-10-03 Daiki Ueno <ueno@gnu.org>
8932
8933 * epg.el (epg-verify-file): Add a comment saying that it does not
8934 notify verification error as a return value nor a signal.
8935 (epg-verify-string): Ditto.
8936
8937 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
8938
8939 * progmodes/compile.el (compilation-start): Try globbing the arg to
8940 `cd' (bug#15417).
8941
8942 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
8943
8944 Sync with Tramp 2.2.8.
8945
8946 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
8947 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
8948 * net/trampver.el: Update release number.
8949
8950 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
8951
8952 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
8953 and default-process-coding-system for darwin only.
8954
8955 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
8956
8957 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
8958
8959 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
8960
8961 * vc/vc-git.el (vc-git-grep): Disable pager.
8962
8963 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
8964
8965 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
8966 Use :url instead of :homepage, as per
8967 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
8968
8969 * newcomment.el (comment-beginning): When `comment-use-syntax' is
8970 non-nil, use `syntax-ppss' (Bug#15251).
8971
8972 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8973
8974 * progmodes/octave.el (inferior-octave-startup-file):
8975 Prefer ~/.emacs.d/init_octave.m.
8976
8977 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
8978
8979 * emacs-lisp/package.el (package-desc-from-define):
8980 Accept additional arguments as plist, convert them to an alist and store
8981 them in the `extras' slot.
8982 (package-generate-description-file): Convert extras alist back to
8983 plist and append to the `define-package' form arguments.
8984 (package--alist-to-plist): New function.
8985 (package--ac-desc): Add `extras' slot.
8986 (package--add-to-archive-contents): Check if the archive-contents
8987 vector is long enough, and if it is, pass its `extras' slot value
8988 to `package-desc-create'.
8989 (package-buffer-info): Call `lm-homepage', pass the returned value
8990 to `package-desc-from-define'.
8991 (describe-package-1): Render the homepage button (Bug#13291).
8992
8993 * emacs-lisp/package-x.el (package-upload-buffer-internal):
8994 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
8995
8996 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
8997
8998 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
8999 and default-process-coding-system to utf-8-unix (Bug#15402).
9000
9001 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
9002
9003 * subr.el (looking-back): Do not recommend using looking-back.
9004
9005 2013-09-28 Alan Mackenzie <acm@muc.de>
9006
9007 Fix indentation/fontification of Java enum with "implements".
9008
9009 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
9010 regexp which matches "implements", etc., in Java.
9011 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
9012 specifier clauses coming after "enum".
9013 * progmodes/cc-fonts.el (c-font-lock-declarations)
9014 (c-font-lock-enum-tail): Check for extra specifier clauses coming
9015 after "enum".
9016
9017 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
9018
9019 * faces.el (region): Change ns_selection_color to
9020 ns_selection_fg_color, add ns_selection_bg_color.
9021
9022 2013-09-28 Leo Liu <sdl.web@gmail.com>
9023
9024 * progmodes/octave.el (inferior-octave-completion-table)
9025 (inferior-octave-completion-at-point): Minor tweaks.
9026
9027 * textmodes/ispell.el (ispell-lookup-words): Rename from
9028 lookup-words. (Bug#15460)
9029 (lookup-words): Obsolete.
9030 (ispell-complete-word, ispell-command-loop): All uses changed.
9031
9032 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9033
9034 * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
9035 (octave-mode-menu): Add octave-send-buffer.
9036 (octave-send-buffer): New function.
9037
9038 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9039
9040 * progmodes/octave.el (octave-mode-map): Add key binding for
9041 octave-lookfor.
9042 (octave-mode-menu): Add octave-lookfor.
9043 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
9044 octave-lookfor.
9045 (octave-lookfor): New function.
9046
9047 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9048
9049 * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
9050 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
9051 its convention.
9052 (cl--loop-set-iterator-function): New function.
9053 (cl-loop): Adjust accordingly, so as not to use cl-subst.
9054 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
9055 Bind `it' with `let' instead of substituting it with `cl-subst'.
9056 (cl--unused-var-p): New function.
9057 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
9058 Eliminate some unused variable warnings (bug#15326).
9059
9060 2013-09-27 Tassilo Horn <tsdh@gnu.org>
9061
9062 * doc-view.el (doc-view-scale-reset): Rename from
9063 `doc-view-reset-zoom-level'.
9064 (doc-view-scale-adjust): New command.
9065 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
9066 `doc-view-scale-adjust'.
9067
9068 2013-09-26 Tassilo Horn <tsdh@gnu.org>
9069
9070 * doc-view.el (doc-view-reset-zoom-level): New command.
9071 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
9072 zoom commands (bug#15466).
9073
9074 2013-09-26 Kenichi Handa <handa@gnu.org>
9075
9076 * international/quail.el (quail-help): Make it not a command.
9077
9078 2013-09-26 Leo Liu <sdl.web@gmail.com>
9079
9080 * minibuffer.el (completion-all-sorted-completions): Make args
9081 optional as they are.
9082
9083 2013-09-25 Daniel Colascione <dancol@dancol.org>
9084
9085 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
9086 specs are and that they're not evaluated.
9087
9088 2013-09-24 Sam Steingold <sds@gnu.org>
9089
9090 * midnight.el (clean-buffer-list-kill-regexps)
9091 (clean-buffer-list-kill-buffer-names): Update for the new Man
9092 buffer naming which includes the object name.
9093
9094 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9095
9096 * eshell/esh-cmd.el (eshell--sep-terms): New var.
9097 (eshell-parse-command, eshell-parse-pipeline): Use it since
9098 eshell-separate-commands requires a dynamic scoped var.
9099 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
9100
9101 2013-09-23 Leo Liu <sdl.web@gmail.com>
9102
9103 * autoinsert.el (auto-insert-alist): Make the value of
9104 lexical-binding match its file setting.
9105
9106 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
9107
9108 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
9109
9110 * autoarg.el (autoarg-kp-digit-argument):
9111 * electric.el (Electric-command-loop):
9112 * kmacro.el (kmacro-step-edit-insert):
9113 Do not set universal-argument-num-events.
9114
9115 2013-09-22 Leo Liu <sdl.web@gmail.com>
9116
9117 * files.el (interpreter-mode-alist): Add octave.
9118
9119 2013-09-21 Alan Mackenzie <acm@muc.de>
9120
9121 C++: fontify identifier in declaration following "public:" correctly.
9122 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
9123 to match "public", etc.
9124 (c-decl-prefix-re): Add ":" into the C++ value.
9125 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
9126 bit. Add a check for a ":" preceded by "public", etc.
9127
9128 2013-09-21 Eli Zaretskii <eliz@gnu.org>
9129
9130 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
9131 recognized by GDB 7.5 and later.
9132
9133 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
9134
9135 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
9136
9137 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9138
9139 * subr.el (internal--call-interactively): New const.
9140 (called-interactively-p): Use it (bug#3984).
9141
9142 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
9143
9144 * vc/pcvs.el (cvs-mode-ignore):
9145 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
9146 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
9147
9148 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9149
9150 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
9151 (eshell-ls-orig-insert-directory): Remove.
9152 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
9153 (eshell-ls-use-in-dired): Use advice-add/remove.
9154 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
9155 Add `orig-fun' arg for use in :around advice.
9156 Make it check (redundantly) eshell-ls-use-in-dired.
9157
9158 2013-09-19 Glenn Morris <rgm@gnu.org>
9159
9160 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
9161
9162 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
9163
9164 * emacs-lisp/eieio.el (class-parent): Undo previous change.
9165
9166 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
9167
9168 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
9169 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
9170 (tramp-get-remote-python): New defuns.
9171 (tramp-get-remote-uid-with-perl)
9172 (tramp-get-remote-gid-with-perl): New defuns. Perl code
9173 contributed by yary <not.com@gmail.com> (tiny change).
9174 (tramp-get-remote-uid-with-python)
9175 (tramp-get-remote-gid-with-python): New defuns. Python code
9176 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
9177 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
9178
9179 2013-09-19 Glenn Morris <rgm@gnu.org>
9180
9181 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
9182
9183 * eshell/em-unix.el (eshell-remove-entries):
9184 Rename argument to avoid name-clash with global `top-level'.
9185
9186 * eshell/esh-proc.el (eshell-kill-process-function):
9187 Remove eshell-reset-after-proc from eshell-kill-hook if present.
9188 (eshell-reset-after-proc): Remove unused arg `proc'.
9189
9190 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
9191 (directory-files-and-attributes): Mark unused arg.
9192
9193 * eshell/em-unix.el (eshell-remove-entries):
9194 Remove unused arg `path'. Update callers.
9195
9196 * eshell/em-hist.el (eshell-hist-parse-arguments):
9197 Remove unused arg `silent'. Update callers.
9198
9199 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
9200 Fix (f)boundp mix-up.
9201
9202 * eshell/em-smart.el (eshell-smart-scroll-window)
9203 (eshell-disable-after-change):
9204 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
9205
9206 2013-09-18 Alan Mackenzie <acm@muc.de>
9207
9208 Fix fontification of type when followed by "const".
9209 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
9210 "known" types from fontification.
9211
9212 2013-09-18 Glenn Morris <rgm@gnu.org>
9213
9214 * emacs-lisp/chart.el (x-display-color-cells): Declare.
9215 (chart-face-list): Drop Emacsen without display-color-p.
9216
9217 * net/eww.el (libxml-parse-html-region): Declare.
9218 (eww-display-html): Explicit error if no libxml2 support.
9219
9220 * doc-view.el (doc-view-mode): Silence --without-x compilation.
9221
9222 * image.el (image-type-from-buffer, image-multi-frame-p):
9223 Remove --without-x warning/error.
9224
9225 * mouse.el (mouse-yank-primary):
9226 * term.el (term-mouse-paste):
9227 Reorder to silence --without-x compilation.
9228
9229 * mpc.el (doc-view-mode): Silence --without-x compilation.
9230
9231 * mail/rmailmm.el (rmail-mime-set-bulk-data):
9232 Silence --without-x compilation.
9233
9234 * progmodes/gud.el (gud-find-file, gud-mode):
9235 Silence --without-x compilation.
9236 (tooltip-mode): Declare.
9237
9238 * wdired.el (dired-backup-overwrite): Remove declaration.
9239 (wdired-mode-map): Add doc string.
9240
9241 * custom.el (x-get-resource): Declare.
9242
9243 * eshell/em-glob.el (ange-cache):
9244 * eshell/em-unix.el (ange-cache): Declare.
9245
9246 * faces.el (x-display-list, x-open-connection, x-get-resource):
9247 Declare.
9248
9249 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
9250 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
9251 Declare.
9252
9253 * frame.el (x-display-grayscale-p, x-display-name): Declare.
9254
9255 * net/gnutls.el (gnutls-log-level): Declare.
9256
9257 * net/shr.el (image-size, image-animate): Declare.
9258
9259 * simple.el (font-info): Declare.
9260
9261 * subr.el (x-popup-dialog): Declare.
9262
9263 * term/common-win.el (x-select-enable-primary)
9264 (x-last-selected-text-primary, x-last-selected-text-clipboard):
9265 Declare.
9266
9267 * term/ns-win.el (x-handle-args): Declare.
9268
9269 * term/x-win.el (x-select-enable-clipboard): Declare.
9270
9271 * term/w32-win.el (create-default-fontset): Declare.
9272
9273 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
9274 Declare.
9275
9276 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
9277 (fit-frame-to-buffer): Explicit error if --without-x.
9278 (mouse-autoselect-window-select): Silence compiler.
9279
9280 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
9281
9282 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
9283 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
9284 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
9285 * eshell/esh-util.el (eshell-sublist):
9286 Remove unused local variables.
9287
9288 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
9289
9290 * textmodes/two-column.el: Make 2C-split work for --without-x.
9291 (scroll-bar-columns): Autoload.
9292 (top-level): Require fringe when compiling.
9293
9294 2013-09-18 Leo Liu <sdl.web@gmail.com>
9295
9296 * subr.el (add-hook): Robustify to handle closure as well.
9297
9298 2013-09-17 Glenn Morris <rgm@gnu.org>
9299
9300 * simple.el (messages-buffer-mode-map): Unbind "g".
9301
9302 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9303
9304 * help-mode.el (help-mode-finish): Use derived-mode-p.
9305 Remove obsolete highlighting.
9306
9307 * play/life.el (life-mode): Use define-derived-mode. Derive from
9308 special-mode.
9309 (life): Let-bind inhibit-read-only.
9310 (life-setup): Avoid `setq'. Use `life-mode'.
9311
9312 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
9313 which should not be needed any more.
9314 (package-menu-refresh, package-menu-describe-package): Use user-error.
9315
9316 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
9317 (eshell-post-rewrite-command-hook): Make obsolete.
9318 (eshell-parse-command): Simplify.
9319 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
9320 (eshell--cmd): Declare.
9321 (eshell-parse-pipeline): Remove unused var `final-p'.
9322 Pass a dynvar to eshell-post-rewrite-command-hook.
9323 Implement the new eshell-post-rewrite-command-function.
9324 (eshell-invoke-directly): Remove unused arg `input'.
9325 * eshell/esh-io.el (eshell-io-initialize):
9326 Use eshell-post-rewrite-command-function (bug#15399).
9327 (eshell--apply-redirections): Rename from eshell-apply-redirections;
9328 adjust to new calling convention.
9329 (eshell-create-handles): Rename args to avoid clashing with dynvar
9330 `standard-output'.
9331
9332 2013-09-17 Glenn Morris <rgm@gnu.org>
9333
9334 * simple.el (messages-buffer-mode): New major mode.
9335 (messages-buffer): New function.
9336 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
9337 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
9338 (ert-run-test): Use `messages-buffer' function.
9339 (ert--force-message-log-buffer-truncation): Ignore read-only.
9340 * help.el (view-echo-area-messages): Use `messages-buffer' function.
9341 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
9342
9343 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9344
9345 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
9346
9347 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
9348
9349 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9350
9351 * icomplete.el (icomplete-in-buffer): New var.
9352 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
9353 vars and replace them with functions.
9354 (icomplete-minibuffer-setup): Adjust accordingly.
9355 (icomplete--completion-table, icomplete--completion-predicate)
9356 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
9357 New functions.
9358 (icomplete-forward-completions, icomplete-backward-completions)
9359 (icomplete-simple-completing-p, icomplete-exhibit)
9360 (icomplete-completions): Use them.
9361 (icomplete--in-region-buffer): New var.
9362 (icomplete--in-region-setup): New function.
9363 (icomplete-mode): Use it.
9364
9365 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
9366 (bug#15379).
9367 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
9368 return args and options.
9369 (eshell-eval-using-options): Use the new return value of
9370 eshell--do-opts to set the options's vars in their scope.
9371 (eshell--set-option): Rename from eshell-set-option.
9372 Add arg `opt-vals'.
9373 (eshell--process-option): Rename from eshell-process-option.
9374 Add arg `opt-vals'.
9375 (eshell--process-args): Use an `opt-vals' alist to store the options's
9376 values during their processing and return them additionally to the
9377 remaining args.
9378
9379 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
9380
9381 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
9382 continuation character an operator, as far as indentation is
9383 concerned (Bug#15369).
9384
9385 2013-09-15 Martin Rudalics <rudalics@gmx.at>
9386
9387 * window.el (window--state-put-2): Don't process buffer state
9388 when buffer doesn't exist any more (Bug#15382).
9389
9390 2013-09-15 Glenn Morris <rgm@gnu.org>
9391
9392 * eshell/em-unix.el (eshell/rm):
9393 Make -f ignore missing files. (Bug#15373)
9394
9395 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
9396 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
9397 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
9398
9399 2013-09-14 Glenn Morris <rgm@gnu.org>
9400
9401 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
9402
9403 2013-09-13 Glenn Morris <rgm@gnu.org>
9404
9405 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
9406 (dired-guess-default): Make `file' available in the env. (Bug#15363)
9407
9408 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
9409
9410 * frame.el (x-focus-frame): Mark as declared in frame.c.
9411
9412 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
9413
9414 * ls-lisp.el: Use advice-add.
9415 (original-insert-directory): Remove.
9416 (ls-lisp--insert-directory): Rename from insert-directory; add
9417 `orig-fun' argument.
9418 (insert-directory): Advise.
9419
9420 2013-09-13 Eli Zaretskii <eliz@gnu.org>
9421
9422 * term.el (term-emulate-terminal): Decode the command string
9423 before passing it to term-command-hook. (Bug#15337)
9424
9425 2013-09-13 Glenn Morris <rgm@gnu.org>
9426
9427 * eshell/esh-util.el (ange-cache): Move declaration earlier.
9428
9429 * eshell/esh-ext.el (eshell-search-path): Declare.
9430
9431 * eshell/em-prompt.el (eshell/pwd): Autoload it.
9432 Otherwise an error occurs if eshell-dirs module not loaded.
9433
9434 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
9435
9436 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
9437
9438 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
9439 `tramp-check-proper-host'. Check for a valid method name.
9440
9441 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
9442 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
9443 * net/tramp-sh.el (tramp-maybe-open-connection):
9444 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
9445
9446 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
9447 also for hash values.
9448
9449 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9450
9451 * term/ns-win.el (parameters): Don't declare as dynamic.
9452 (before-make-frame-hook): Don't add ineffective function.
9453
9454 * eshell/*.el: Use lexical-binding (bug#15231).
9455
9456 2013-09-12 Kenichi Handa <handa@gnu.org>
9457
9458 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
9459
9460 2013-09-12 Glenn Morris <rgm@gnu.org>
9461
9462 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
9463 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
9464
9465 * subr.el (do-after-load-evaluation): Also give compiler warnings
9466 when obsolete files are used (except by obsolete files).
9467
9468 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
9469 in the status output, assume `filename' is the first. (Bug#15322)
9470
9471 * vc/vc.el (vc-deduce-fileset): Doc fix.
9472
9473 * calc/calc-help.el (Info-goto-node):
9474 * progmodes/cperl-mode.el (Info-find-node):
9475 * vc/ediff.el (Info-goto-node): Update declarations.
9476
9477 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
9478
9479 * vc/vc-bzr.el (vc-compilation-mode): Declare.
9480 (vc-bzr-pull): Require vc-dispatcher.
9481 * vc/vc-git.el (vc-compilation-mode): Declare.
9482 (vc-git-pull): Require vc-dispatcher.
9483
9484 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
9485
9486 * progmodes/octave.el (help-button-action): Declare.
9487
9488 * shell.el (shell-directory-tracker): Output error as a message
9489 rather than just returning it as a string.
9490 (shell-process-pushd): Remove useless use of message.
9491
9492 * dframe.el (dframe-timer-fn):
9493 * files.el (dir-locals-read-from-file):
9494 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
9495 (mpc-format):
9496 * reveal.el (reveal-post-command):
9497 * saveplace.el (load-save-place-alist-from-file):
9498 * shell.el (shell-resync-dirs):
9499 * w32-common-fns.el (x-get-selection-value):
9500 * emacs-lisp/copyright.el (copyright-find-copyright):
9501 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
9502 * emulation/tpu-edt.el (tpu-copy-keyfile):
9503 * play/bubbles.el (bubbles--mark-neighbourhood):
9504 * progmodes/executable.el
9505 (executable-make-buffer-file-executable-if-script-p):
9506 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
9507
9508 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9509
9510 Cleanup Eshell to rely less on dynamic scoping.
9511 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
9512 last-value, and ext-command here. Bind `args' closer to `body'.
9513 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
9514 (eshell--args): Declare new dynamic var.
9515 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
9516 last-value, and ext-command. Pass `args' to `body'.
9517 (eshell-process-args): Bind eshell--args.
9518 (eshell-set-option): Use eshell--args.
9519 * eshell/eshell.el (eshell): Use derived-mode-p.
9520 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
9521 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
9522 (eshell-glob-function): Declare.
9523 * eshell/esh-util.el: Require cl-lib.
9524 (eshell-read-hosts-file): Avoid add-to-list.
9525 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
9526 `err'.
9527 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
9528 Declare.
9529 (eshell/diff): Remove unused var `err'.
9530 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
9531 `killflag'.
9532 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
9533 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
9534 first use.
9535 * eshell/em-glob.el (eshell-glob-matches, message-shown):
9536 Move declaration before first use.
9537 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
9538 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
9539 rely on cl-return.
9540
9541 2013-09-12 Glenn Morris <rgm@gnu.org>
9542
9543 * term/ns-win.el (global-map): Remove binding for ispell-next,
9544 deleted 1999-05-29. (Bug#15357)
9545
9546 2013-09-11 Glenn Morris <rgm@gnu.org>
9547
9548 * echistory.el (electric-command-history): Remove call to deleted func.
9549
9550 * play/landmark.el (landmark-mode): Fix typos.
9551
9552 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
9553 Check cvs-sort-ignore-file is bound.
9554
9555 * savehist.el: No need for cl when compiling on Emacs.
9556
9557 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9558
9559 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
9560 (bug#15338).
9561 (eshell-self-insert-command, eshell-send-invisible):
9562 Remove unused argument.
9563 (eshell-handle-control-codes): Remove unused var `orig'.
9564 Avoid delete-backward-char.
9565
9566 * files.el (set-auto-mode): Simplify a bit further.
9567
9568 2013-09-11 Glenn Morris <rgm@gnu.org>
9569
9570 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
9571 (set-auto-mode): Don't regexp-quote elements.
9572 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
9573 * progmodes/cc-mode.el (interpreter-mode-alist):
9574 * progmodes/ruby-mode.el (interpreter-mode-alist):
9575 Revert previous change.
9576
9577 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9578
9579 * play/snake.el (snake-mode):
9580 * play/mpuz.el (mpuz-mode):
9581 * play/landmark.el (lm-mode):
9582 * play/blackbox.el (blackbox-mode):
9583 * play/5x5.el (5x5-mode):
9584 * obsolete/options.el (Edit-options-mode):
9585 * net/quickurl.el (quickurl-list-mode):
9586 * net/newst-treeview.el (newsticker-treeview-mode):
9587 * mail/rmailsum.el (rmail-summary-mode):
9588 * mail/mspools.el (mspools-mode):
9589 * locate.el (locate-mode):
9590 * ibuffer.el (ibuffer-mode):
9591 * emulation/ws-mode.el (wordstar-mode):
9592 * emacs-lisp/debug.el (debugger-mode):
9593 * array.el (array-mode):
9594 * net/eudc.el (eudc-mode): Use define-derived-mode.
9595 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
9596 Move initialization into declaration.
9597 (mairix-searches-mode): Use define-derived-mode.
9598 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
9599 (eudc-edit-hotlist): Use dolist.
9600 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
9601 (Man-mode): Use define-derived-mode.
9602 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
9603 (Info-edit-mode): Use define-derived-mode.
9604 (Info-cease-edit): Use Info-mode.
9605 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
9606 into declaration.
9607 (eshell-mode): Use define-derived-mode.
9608 * chistory.el (command-history-mode-map): Rename from
9609 command-history-map.
9610 (command-history-mode): Use define-derived-mode.
9611 (Command-history-setup): Remove function.
9612 * calc/calc.el (calc-trail-mode-map): New var.
9613 (calc-trail-mode): Use define-derived-mode.
9614 (calc-trail-buffer): Set calc-main-buffer manually.
9615 * bookmark.el (bookmark-insert-annotation): New function.
9616 (bookmark-edit-annotation): Use it.
9617 (bookmark-edit-annotation-mode): Make it a proper major mode.
9618 (bookmark-send-edited-annotation): Use derived-mode-p.
9619 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
9620 closer to its ideal place. Use \' to match EOS.
9621
9622 * profiler.el (profiler-calltree-find): Use function-equal.
9623
9624 2013-09-10 Glenn Morris <rgm@gnu.org>
9625
9626 * files.el (interpreter-mode-alist): Convert to regexps.
9627 (set-auto-mode): Adapt for this. (Bug#15306)
9628 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
9629 Comment out unused variable.
9630 * progmodes/cc-mode.el (interpreter-mode-alist):
9631 * progmodes/python.el (interpreter-mode-alist):
9632 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
9633 * progmodes/sh-script.el (sh-set-shell):
9634 No longer use interpreter-mode-alist to get list of shells.
9635
9636 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
9637
9638 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
9639
9640 * simple.el: Use set-temporary-overlay-map for universal-argument.
9641 (universal-argument-map): Don't use default-bindings (bug#15317).
9642 Bind switch-frame explicitly. Replace universal-argument-minus with
9643 a conditional binding.
9644 (universal-argument-num-events, saved-overriding-map): Remove.
9645 (restore-overriding-map): Remove.
9646 (universal-argument--mode): Rename from save&set-overriding-map,
9647 and rewrite.
9648 (universal-argument, universal-argument-more, negative-argument)
9649 (digit-argument): Adjust accordingly.
9650 (universal-argument-minus): Remove.
9651 (universal-argument-other-key): Remove.
9652
9653 * subr.el (with-demoted-errors): Add `format' argument.
9654
9655 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
9656
9657 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
9658 `tramp-cleanup-connection'.
9659
9660 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
9661 parameters KEEP-DEBUG and KEEP-PASSWORD.
9662
9663 * net/tramp.el (tramp-file-name-handler):
9664 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
9665 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
9666 (tramp-maybe-open-connection):
9667 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
9668 Use `tramp-cleanup-connection'.
9669
9670 * net/tramp-sh.el (tramp-maybe-open-connection):
9671 Catch 'uname-changed inside the progress reporter.
9672
9673 2013-09-10 Glenn Morris <rgm@gnu.org>
9674
9675 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
9676
9677 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
9678 returns "alternate access method" in mode (eg "-rw-r--r--.").
9679
9680 2013-09-08 Glenn Morris <rgm@gnu.org>
9681
9682 * saveplace.el (load-save-place-alist-from-file):
9683 Demote errors. (Bug#15305)
9684
9685 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
9686
9687 Improve compatibility with older Emacsen, and XEmacs.
9688
9689 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
9690 only if it is bound. It isn't for XEmacs.
9691 (with-tramp-progress-reporter): Do not let-bind `result'.
9692 This yields to scoping errors in XEmacs.
9693 (tramp-handle-make-auto-save-file-name): New function, moved from
9694 tramp-sh.el.
9695
9696 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
9697 for `make-auto-save-file-name'.
9698 (tramp-adb--gnu-switches-to-ash):
9699 Use `tramp-compat-replace-regexp-in-string'.
9700
9701 * net/tramp-cache.el (tramp-cache-print): Call
9702 `substring-no-properties' only if it is bound. It isn't for XEmacs.
9703
9704 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
9705 bound. It isn't for XEmacs.
9706
9707 * net/tramp-compat.el (tramp-compat-copy-file):
9708 Catch `wrong-number-of-arguments' error.
9709 (tramp-compat-replace-regexp-in-string): New defun.
9710
9711 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
9712 for `make-auto-save-file-name'.
9713 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
9714 `copy-file'.
9715 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
9716 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
9717 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
9718
9719 * net/tramp-gw.el (tramp-gw-open-network-stream):
9720 Use `tramp-compat-replace-regexp-in-string'.
9721
9722 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
9723 Call `tramp-handle-make-auto-save-file-name'.
9724 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
9725 (tramp-sh-file-gvfs-monitor-dir-process-filter)
9726 (tramp-sh-file-inotifywait-process-filter):
9727 Use `tramp-compat-replace-regexp-in-string'.
9728 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
9729
9730 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
9731 for `make-auto-save-file-name'.
9732 (tramp-smb-handle-copy-directory):
9733 Call `tramp-compat-replace-regexp-in-string'.
9734 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
9735 (tramp-smb-handle-copy-file): Improve error message.
9736 (tramp-smb-handle-rename-file): Rename directly only in case
9737 `newname' does not exist yet. This is a restriction of smbclient.
9738 (tramp-smb-maybe-open-connection): Rerun the function only when
9739 `auth-sources' is non-nil.
9740
9741 2013-09-08 Kenichi Handa <handa@gnu.org>
9742
9743 * international/characters.el: Set category "^" (Combining) for
9744 more characters.
9745
9746 2013-09-07 Alan Mackenzie <acm@muc.de>
9747
9748 Correctly fontify Java class constructors.
9749 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
9750 in Java Mode.
9751 (c-recognize-typeless-decls): Set the Java value to t.
9752 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
9753 While handling a "(", add a check for, effectively, Java, and handle a
9754 "typeless" declaration there.
9755
9756 2013-09-07 Roland Winkler <winkler@gnu.org>
9757
9758 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
9759 field subtitle for entry type book.
9760
9761 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9762
9763 * minibuffer.el: Make minibuffer-complete call completion-in-region
9764 rather than other way around.
9765 (completion--some, completion-pcm--find-all-completions):
9766 Don't delay signals when debugging.
9767 (minibuffer-completion-contents): Beware fields within the
9768 minibuffer contents.
9769 (completion-all-sorted-completions): Use defvar-local.
9770 (completion--do-completion, completion--cache-all-sorted-completions)
9771 (completion-all-sorted-completions, minibuffer-force-complete):
9772 Add args `beg' and `end'.
9773 (completion--in-region-1): New fun, extracted from minibuffer-complete.
9774 (minibuffer-complete): Use completion-in-region.
9775 (completion-complete-and-exit): New fun, extracted from
9776 minibuffer-complete-and-exit.
9777 (minibuffer-complete-and-exit): Use it.
9778 (completion--complete-and-exit): Rename from
9779 minibuffer--complete-and-exit.
9780 (completion-in-region--single-word): New function, extracted from
9781 minibuffer-complete-word.
9782 (minibuffer-complete-word): Use it.
9783 (display-completion-list): Make `common-substring' argument obsolete.
9784 (completion--in-region): Call completion--in-region-1 instead of
9785 minibuffer-complete.
9786 (completion-help-at-point): Pass boundaries to
9787 minibuffer-completion-help as args rather than via an overlay.
9788 (completion-pcm--string->pattern): Use `any-delim'.
9789 (completion-pcm--optimize-pattern): New function.
9790 (completion-pcm--pattern->regex): Handle `any-delim'.
9791 * icomplete.el (icomplete-forward-completions)
9792 (icomplete-backward-completions, icomplete-completions):
9793 Adjust calls to completion-all-sorted-completions and
9794 completion--cache-all-sorted-completions.
9795 (icomplete-with-completion-tables): Default to t.
9796 * emacs-lisp/crm.el (crm--current-element): Rename from
9797 crm--select-current-element. Don't put an overlay but return the
9798 boundaries instead.
9799 (crm--completion-command): Take two new args to bind to the boundaries.
9800 (crm-completion-help): Adjust accordingly.
9801 (crm-complete): Use completion-in-region.
9802 (crm-complete-word): Use completion-in-region--single-word.
9803 (crm-complete-and-exit): Use completion-complete-and-exit.
9804
9805 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9806
9807 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
9808 than dynamically.
9809
9810 2013-09-06 Juri Linkov <juri@jurta.org>
9811
9812 * info.el (Info-display-images-node): When image file doesn't exist
9813 display text version of the image if it's provided in the Info file.
9814 Otherwise, display the location of missing image from SRC attribute.
9815 Add help-echo text property from ALT attribute. (Bug#15279)
9816
9817 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9818
9819 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
9820 (edit-abbrevs-mode): Use define-derived-mode.
9821
9822 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
9823 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
9824 that it's defined.
9825 (epa-key-list-mode, epa-key-mode, epa-info-mode):
9826 Use define-derived-mode.
9827
9828 * epg.el (epg-start-encrypt): Minor CSE simplification.
9829
9830 2013-09-06 William Xu <william.xwl@gmail.com>
9831
9832 * arc-mode.el: Add support for 7za (bug#15264).
9833 (archive-7z-program): New var.
9834 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
9835 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
9836 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
9837
9838 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
9839
9840 Remove URL syntax.
9841
9842 * net/tramp.el (tramp-syntax, tramp-prefix-format)
9843 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
9844 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
9845 (tramp-postfix-host-format, tramp-file-name-regexp)
9846 (tramp-completion-file-name-regexp)
9847 (tramp-completion-dissect-file-name)
9848 (tramp-handle-substitute-in-file-name): Remove 'url case.
9849 (tramp-file-name-regexp-url)
9850 (tramp-completion-file-name-regexp-url): Remove constants.
9851
9852 2013-09-06 Glenn Morris <rgm@gnu.org>
9853
9854 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
9855
9856 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
9857
9858 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
9859 keywords" below "here-doc beginnings" (Bug#15270).
9860
9861 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9862
9863 * subr.el (pop): Use `car-safe'.
9864 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
9865 to detect unused `pop' return value.
9866
9867 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
9868 var `block-regexp'.
9869 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
9870 (python-fill-string): Remove unused var `marker'.
9871 (python-skeleton-add-menu-items): Remove unused var `items'.
9872
9873 * international/mule-cmds.el: Require CL.
9874 (find-coding-systems-for-charsets): Avoid add-to-list.
9875 (sanitize-coding-system-list): New function, extracted from
9876 select-safe-coding-system-interactively.
9877 (select-safe-coding-system-interactively): Use it.
9878 (read-input-method-name): Accept symbols for `default'.
9879
9880 * emacs-lisp/advice.el (defadvice): Add indent rule.
9881
9882 2013-09-05 Daniel Hackney <dan@haxney.org>
9883
9884 * dired-x.el:
9885 * net/ange-ftp.el:
9886 * net/browse-url.el:
9887 * net/dbus.el:
9888 * net/eudc.el:
9889 * net/eudcb-ldap.el:
9890 * net/eww.el:
9891 * net/imap.el:
9892 * printing.el:
9893 * vc/ediff-diff.el:
9894 * vc/ediff-init.el:
9895 * vc/ediff-merg.el:
9896 * vc/ediff-mult.el:
9897 * vc/ediff-util.el:
9898 * vc/ediff-wind.el:
9899 * vc/ediff.el:
9900 * vc/emerge.el:
9901 * vc/pcvs.el:
9902 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
9903 byte compiler. Remove some unused let-bound variables.
9904
9905 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9906
9907 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
9908 a "ref-cell", since it gets better optimized (bug#14883).
9909
9910 2013-09-05 Glenn Morris <rgm@gnu.org>
9911
9912 * progmodes/cc-awk.el (c-forward-sws): Declare.
9913
9914 2013-09-04 Glenn Morris <rgm@gnu.org>
9915
9916 * generic-x.el [rul-generic-mode]: Require cc-mode.
9917 (c++-mode-syntax-table): Declare.
9918 (rul-generic-mode-syntax-table): Init in the defvar.
9919
9920 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
9921
9922 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
9923 (vc-do-command, vc-set-async-update):
9924 * vc/vc-mtn.el (vc-mtn-dir-status):
9925 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
9926 (vc-hg-pull, vc-hg-merge-branch):
9927 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
9928 (vc-git-merge-branch):
9929 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
9930 (vc-cvs-dir-status-files):
9931 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
9932 (vc-bzr-dir-status-files):
9933 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
9934 * vc/vc-annotate.el: Use lexical-binding.
9935 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
9936 (vc-sentinel-movepoint): Declare.
9937 (vc-annotate): Don't use `goto-line'.
9938 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
9939 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
9940 (vc-sentinel-movepoint): Declare.
9941 * vc/vc-svn.el: Use lexical-binding.
9942 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
9943 * vc/vc-sccs.el:
9944 * vc/vc-rcs.el: Use lexical-binding.
9945
9946 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
9947 `deleted'. Don't drop errors silently.
9948
9949 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
9950
9951 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
9952
9953 * vc/vc.el (vc-ignore): Rewrite.
9954 (vc-default-ignore): New function.
9955 (vc-default-ignore-completion-table): Use find-ignore-file.
9956
9957 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
9958 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
9959 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
9960 Remove. Most code moved to vc.el.
9961
9962 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
9963
9964 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
9965 * net/tramp-smb.el (tramp-smb-get-file-entries):
9966 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
9967 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
9968
9969 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
9970 Update call to it.
9971 (eww-change-select): Remove unused var `properties'.
9972 (eww-make-unique-file-name): Remove unused var `base'.
9973
9974 * finder.el (finder-compile-keywords): Don't mess with windows.
9975
9976 * calculator.el (calculator-funcall): Fix typo in last change.
9977
9978 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
9979
9980 * emacs-lisp/package.el (package-activate-1): Don't let a missing
9981 <pkg>-autoloads.el file stop us.
9982
9983 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
9984 warnings, and factor out common code.
9985
9986 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
9987
9988 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
9989 two-character operators and whether the character preceding them
9990 changes their meaning (Bug#15208).
9991
9992 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
9993
9994 Format code sent to Python shell for robustness.
9995 * progmodes/python.el (python-shell-buffer-substring):
9996 New function.
9997 (python-shell-send-region, python-shell-send-buffer): Use it.
9998
9999 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
10000
10001 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
10002 * net/tramp.el (tramp-user-error): ... here.
10003 (tramp-find-method, tramp-check-proper-host)
10004 (tramp-dissect-file-name, tramp-debug-message)
10005 (tramp-handle-shell-command):
10006 * net/tramp-adb.el (tramp-adb-handle-shell-command):
10007 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
10008
10009 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
10010
10011 2013-09-02 Martin Rudalics <rudalics@gmx.at>
10012
10013 * avoid.el (mouse-avoidance-point-position)
10014 (mouse-avoidance-too-close-p): Handle case where posn-at-point
10015 returns nil.
10016
10017 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
10018
10019 * progmodes/python.el (python-shell-completion-get-completions):
10020 Drop use of deleted `comint-last-prompt-overlay'.
10021 (python-nav-if-name-main): New command.
10022
10023 2013-09-01 Glenn Morris <rgm@gnu.org>
10024
10025 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
10026 Avoid leading space in $wins. Otherwise the sed command used by
10027 eg compile-main ends up containing "/*.el". (Bug#15170)
10028
10029 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
10030
10031 2013-08-30 Glenn Morris <rgm@gnu.org>
10032
10033 * emacs-lisp/bytecomp.el (byte-recompile-directory):
10034 Fix is-this-a-directory logic. (Bug#15220)
10035
10036 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10037
10038 * textmodes/css-mode.el: Use SMIE.
10039 (css-smie-grammar): New var.
10040 (css-smie--forward-token, css-smie--backward-token)
10041 (css-smie-rules): New functions.
10042 (css-mode): Use them.
10043 (css-navigation-syntax-table): Remove var.
10044 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
10045 (css-indent-calculate, css-indent-line): Remove functions.
10046
10047 Misc changes to reduce use of `(lambda...); and other cleanups.
10048 * cus-edit.el: Use lexical-binding.
10049 (customize-push-and-save, customize-apropos)
10050 (custom-buffer-create-internal): Use closures.
10051 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
10052 * progmodes/ada-xref.el: Use setq.
10053 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
10054 * dframe.el: Use lexical-binding.
10055 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
10056 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
10057 * descr-text.el: Use lexical-binding.
10058 (describe-text-widget, describe-text-sexp, describe-property-list):
10059 Use closures.
10060 * comint.el (comint-history-isearch-push-state): Use a closure.
10061 * calculator.el: Use lexical-binding.
10062 (calculator-number-to-string): Make it work with lexical-binding.
10063 (calculator-funcall): Same and use cl-letf.
10064
10065 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
10066 (lisp--company-doc-string, lisp--company-location): New functions.
10067 (lisp-completion-at-point): Use them to improve Company support.
10068
10069 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
10070 params of lambda expressions.
10071 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
10072 (ruby-smie--opening-pipe-p): New function.
10073 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
10074 symbols and matched |...| for formal params.
10075 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
10076 from being treated as hanging. Handle "rescue".
10077
10078 2013-08-29 Glenn Morris <rgm@gnu.org>
10079
10080 * progmodes/cc-engine.el (c-pull-open-brace):
10081 Move definition before use.
10082
10083 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10084
10085 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
10086 are immutable. Don't use `unsafe' any more.
10087 (cl--defsubst-expand): Don't substitute at the same time as keeping
10088 a residual unused let-binding. Don't use `unsafe' any more.
10089
10090 2013-08-29 Glenn Morris <rgm@gnu.org>
10091
10092 * calendar/cal-china.el (calendar-chinese-year-cache):
10093 Recenter on 2015.
10094
10095 * nxml/nxml-util.el (nxml-debug-clear-inside):
10096 Use cl-loop rather than loop.
10097
10098 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
10099
10100 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
10101
10102 2013-08-28 Glenn Morris <rgm@gnu.org>
10103
10104 * progmodes/antlr-mode.el: No need to require cc-mode twice.
10105
10106 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
10107
10108 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
10109
10110 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10111
10112 * simple.el (repeat-complex-command--called-interactively-skip):
10113 New function.
10114 (repeat-complex-command): Use it (bug#14136).
10115
10116 * progmodes/cc-mode.el: Minor cleanup of var declarations.
10117 (c-define-abbrev-table): Add `doc' argument.
10118 (c-mode-abbrev-table, c++-mode-abbrev-table)
10119 (objc-mode-abbrev-table, java-mode-abbrev-table)
10120 (idl-mode-abbrev-table, pike-mode-abbrev-table)
10121 (awk-mode-abbrev-table): Use it.
10122 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
10123 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
10124 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
10125 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
10126 Move initialization into the declaration; and remove any
10127 autoload cookie.
10128
10129 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
10130 and dynamic let binding.
10131
10132 * vc/smerge-mode.el: Remove redundant :group args.
10133
10134 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
10135 to load-path.
10136
10137 2013-08-28 Juri Linkov <juri@jurta.org>
10138
10139 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
10140 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
10141 (isearch-other-meta-char): Handle an undefined shifted printing
10142 character by downshifting it. (Bug#15200)
10143
10144 2013-08-28 Juri Linkov <juri@jurta.org>
10145
10146 * isearch.el (isearch-search): Change regexp error message for
10147 non-regexp searches. (Bug#15166)
10148
10149 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
10150
10151 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
10152 for portability to hosts where /bin/sh has problems.
10153
10154 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10155
10156 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
10157
10158 2013-08-27 Juri Linkov <juri@jurta.org>
10159
10160 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
10161 in the keyboard macro. (Bug#15126)
10162
10163 2013-08-27 Juri Linkov <juri@jurta.org>
10164
10165 * isearch.el (isearch-quote-char): Comment out converting unibyte
10166 to multibyte, thus syncing with its `quoted-insert' counterpart.
10167 (Bug#15166)
10168
10169 2013-08-27 Martin Rudalics <rudalics@gmx.at>
10170
10171 * window.el (display-buffer-use-some-window): Add missing
10172 argument in call of get-largest-window (Bug#15185).
10173 Reported by Stephen Leake.
10174
10175 2013-08-27 Glenn Morris <rgm@gnu.org>
10176
10177 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
10178
10179 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
10180
10181 * progmodes/python.el (python-font-lock-keywords): Don't return nil
10182 from a matcher-function unless there's no more matches (bug#15161).
10183
10184 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
10185
10186 * minibuffer.el: Revert change from 2013-08-20.
10187
10188 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
10189 with text property `tramp-default', if appropriate.
10190 (tramp-check-proper-host): New defun.
10191 (tramp-dissect-file-name): Do not check hostname. Revert change
10192 of 2013-03-18.
10193 (tramp-backtrace): Make VEC-OR-PROC optional.
10194
10195 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
10196 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
10197 * net/tramp-sh.el (tramp-maybe-open-connection):
10198 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
10199 Apply `tramp-check-proper-host'.
10200
10201 2013-08-26 Tassilo Horn <tsdh@gnu.org>
10202
10203 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
10204 lambda expression in order to have `describe-variable' display it.
10205
10206 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
10207
10208 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
10209 BUF can be optional. (Bug#15186)
10210
10211 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
10212
10213 * progmodes/flymake.el (flymake-get-real-file-name-function):
10214 Fix broken customization. (Bug#15184)
10215
10216 2013-08-25 Alan Mackenzie <acm@muc.de>
10217
10218 Improve indentation of bracelists defined by macros (without "=").
10219
10220 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
10221 expansion begins with "{", regard it as bracelist when it doesn't
10222 contain a ";".
10223
10224 Parse C++ inher-intro when there's a template split over 2 lines.
10225
10226 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
10227 rigorously the search for "class" etc. followed by ":".
10228
10229 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
10230 random languages a regexp which never matches rather than nil.
10231
10232 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
10233
10234 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
10235 (c-awk-regexp-one-line-possibly-open-char-list-re)
10236 (c-awk-one-line-possibly-open-regexp-re)
10237 (c-awk-one-line-non-syn-ws*-re): Remove.
10238 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
10239 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
10240 (c-awk-space*-unclosed-regexp-/-re): New constants.
10241 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
10242 aren't regexp delimiters.
10243
10244 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
10245 handling for a rare situation in AWK Mode involving unterminated
10246 strings/regexps.
10247
10248 2013-08-23 Glenn Morris <rgm@gnu.org>
10249
10250 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
10251
10252 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
10253
10254 * files.el (create-file-buffer): If the result would begin with
10255 spaces, prepend a "|" instead of removing them. (Bug#15162)
10256
10257 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10258
10259 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
10260 text-properties (bug#15155).
10261
10262 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
10263 exist any more.
10264 (calc-keypad-redraw): Remove unused var `pad'.
10265 (calc-keypad-press): Remove unused var `menu'.
10266
10267 2013-08-23 Martin Rudalics <rudalics@gmx.at>
10268
10269 * window.el (display-buffer-pop-up-frame):
10270 Call pop-up-frame-function with BUFFER current so `make-frame' will
10271 use it as the new frame's buffer (Bug#15133).
10272
10273 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
10274
10275 * calendar/timeclock.el: Minor cleanups.
10276 (timeclock-ask-before-exiting, timeclock-use-display-time):
10277 Use `symbol'.
10278 (timeclock-modeline-display): Define as alias before the
10279 actual definition.
10280 (timeclock-mode-line-display): Use define-minor-mode.
10281 (timeclock-day-list-template): Make it a function, add an argument.
10282 (timeclock-day-list-required, timeclock-day-list-length)
10283 (timeclock-day-list-debt, timeclock-day-list-span)
10284 (timeclock-day-list-break): Adjust calls accordingly.
10285
10286 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
10287
10288 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
10289 Use read--expression so that completion works again.
10290
10291 2013-08-21 Sam Steingold <sds@gnu.org>
10292
10293 Add rudimentary inferior shell interaction
10294 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
10295 (sh-set-shell): Reset it.
10296 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
10297 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
10298
10299 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
10300
10301 * align.el: Use lexical-binding.
10302 (align-region): Simplify accordingly.
10303
10304 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
10305
10306 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
10307
10308 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
10309 `non-essential' up.
10310
10311 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
10312
10313 * net/tramp.el:
10314 * net/tramp-adb.el:
10315 * net/tramp-cmds.el:
10316 * net/tramp-ftp.el:
10317 * net/tramp-gvfs.el:
10318 * net/tramp-gw.el:
10319 * net/tramp-sh.el: Don't wrap external variable declarations by
10320 `eval-when-compile'.
10321
10322 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10323
10324 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
10325 now that Emacs supports ImageMagick animations.
10326
10327 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
10328
10329 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
10330 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
10331
10332 2013-08-16 Martin Rudalics <rudalics@gmx.at>
10333
10334 * window.el (mouse-autoselect-window-select): Do autoselect when
10335 mouse pointer is on margin.
10336
10337 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
10338
10339 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
10340
10341 2013-08-16 Glenn Morris <rgm@gnu.org>
10342
10343 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
10344 Handle "Remote Directory" response of some clients. (Bug#15058)
10345
10346 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
10347 Tweak warning. (Bug#14926)
10348
10349 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
10350 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
10351
10352 * image-mode.el (image-mode-map): Add menu items to reverse,
10353 increase, decrease, reset animation speed.
10354 (image--set-speed, image-increase-speed, image-decrease-speed)
10355 (image-reverse-speed, image-reset-speed): New functions.
10356 (image-mode-map): Add bindings for speed commands.
10357
10358 * image.el (image-animate-get-speed, image-animate-set-speed):
10359 New functions.
10360 (image-animate-timeout): Respect image :speed property.
10361
10362 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
10363
10364 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
10365 previous line (bug#15101).
10366 (debugger-eval-expression, debugger-record-expression):
10367 Use read--expression (bug#15102).
10368
10369 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
10370
10371 Remove byte compiler warnings, visible when compiling with
10372 `byte-compile-force-lexical-warnings' set to t.
10373
10374 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
10375 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
10376 (tramp-handle-unhandled-file-name-directory)
10377 (tramp-handle-file-notify-add-watch, tramp-action-login)
10378 (tramp-action-succeed, tramp-action-permission-denied)
10379 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
10380 arguments with "_".
10381
10382 * net/tramp-adb.el (tramp-adb-parse-device-names)
10383 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
10384 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
10385 (tramp-adb-handle-file-truename): Remove unused arguments.
10386
10387 * net/tramp-cache.el (tramp-flush-directory-property)
10388 (tramp-flush-connection-property, tramp-list-connections)
10389 (tramp-parse-connection-properties): Prefix unused arguments with "_".
10390
10391 * net/tramp-compat.el (tramp-compat-make-temp-file):
10392 Rename FILENAME to F.
10393
10394 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
10395 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
10396 (tramp-zeroconf-parse-workstation-device-names)
10397 (tramp-zeroconf-parse-webdav-device-names)
10398 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
10399
10400 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
10401 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
10402
10403 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
10404 arguments.
10405 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
10406 (tramp-sh-handle-insert-file-contents-literally)
10407 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
10408 with "_".
10409 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
10410 Remove unused variables.
10411
10412 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
10413 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
10414 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
10415
10416 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
10417 Make them a defconst.
10418 (tramp-uuencode-region): Remove unused variable.
10419
10420 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
10421
10422 * frameset.el (frameset--prop-setter): New function.
10423 (frameset-prop): Add gv-setter declaration.
10424 (frameset-filter-minibuffer): Deal with the case that the minibuffer
10425 parameter was already set in FILTERED. Doc fix.
10426 (frameset--record-minibuffer-relationships): Allow saving a
10427 minibufferless frame without its corresponding minibuffer frame.
10428 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
10429 frame, if the frame id matches.
10430 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
10431 frames before orphaned ones.
10432 (frameset-restore): Warn about orphaned windows, instead of error out.
10433
10434 2013-08-14 Martin Rudalics <rudalics@gmx.at>
10435
10436 * window.el (window-make-atom): Don't overwrite parameter
10437 already present.
10438 (display-buffer-in-atom-window): Handle special case where we
10439 split an already atomic window.
10440 (window--major-non-side-window, display-buffer-in-side-window)
10441 (window--side-check): Ignore minibuffer window when walking
10442 window tree.
10443 (window-deletable-p): Return 'frame only if no other frame uses
10444 our minibuffer window.
10445 (record-window-buffer): Run buffer-list-update-hook.
10446 (split-window): Make sure window--check-frame won't destroy an
10447 existing atomic window in case the new window gets nested
10448 inside.
10449 (display-buffer-at-bottom): Ignore minibuffer window when
10450 walking window tree. Don't split a side window.
10451 (pop-to-buffer): Don't set-buffer here, the select-window call
10452 should do that.
10453 (mouse-autoselect-window-select): Autoselect only if we are in the
10454 text portion of the window.
10455
10456 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10457
10458 * net/shr.el (shr-parse-image-data): New function to grab both the
10459 data itself and the Content-Type.
10460 (shr-put-image): Use it.
10461
10462 * net/eww.el (eww-display-image): Ditto.
10463
10464 * image.el (image-content-type-suffixes): New variable.
10465
10466 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
10467
10468 * progmodes/python.el (python-imenu--build-tree)
10469 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
10470
10471 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
10472
10473 * simple.el (backward-word): Mention the optional argument.
10474
10475 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
10476
10477 * frameset.el (frameset--make): Rename constructor from make-frameset.
10478 (frameset-p, frameset-valid-p): Don't autoload.
10479 (frameset-valid-p): Use normal accessors.
10480
10481 2013-08-13 Glenn Morris <rgm@gnu.org>
10482
10483 * progmodes/compile.el (compile-command): Tweak example in doc.
10484 * obsolete/scribe.el (scribe-mode):
10485 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
10486
10487 * mail/feedmail.el (feedmail-confirm-outgoing)
10488 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
10489
10490 * cus-start.el (truncate-partial-width-windows): Fix type.
10491
10492 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
10493
10494 * net/shr.el (shr-table-horizontal-line): Fix custom type.
10495
10496 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
10497
10498 * emacs-lisp/timer.el (timer--time-setter): New function.
10499 (timer--time): Use it as gv-setter.
10500
10501 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
10502 setter is not a symbol.
10503
10504 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
10505
10506 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
10507 if sending fails. This makes debugging easier.
10508
10509 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
10510
10511 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
10512 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
10513 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
10514
10515 2013-08-12 Eli Zaretskii <eliz@gnu.org>
10516
10517 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
10518
10519 2013-08-12 Glenn Morris <rgm@gnu.org>
10520
10521 * format.el (format-annotate-function):
10522 Handle read-only text properties in the source. (Bug#14887)
10523
10524 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10525
10526 * net/eww.el (eww-display-html): Ignore coding system errors.
10527 One web site uses "utf-8lias" as the coding system.
10528
10529 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
10530
10531 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
10532
10533 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
10534
10535 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
10536 (tutorial--detailed-help): Remove unused local variables.
10537 (tutorial--save-tutorial-to): Use ignore-errors.
10538 (help-with-tutorial): Use looking-at-p.
10539
10540 * view.el (view-buffer-other-window, view-buffer-other-frame):
10541 Mark unused arguments.
10542
10543 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
10544 (woman-select-symbol-fonts, woman, woman-find-file)
10545 (woman-insert-file-contents, woman-non-underline-faces):
10546 Use string-match-p.
10547 (woman1-unquote): Move declaration.
10548
10549 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
10550 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
10551 argument. Remove unused local variable.
10552 (xml-parse-elem-type): Use string-match-p.
10553 (xml-substitute-numeric-entities): Use ignore-errors.
10554
10555 * calculator.el (calculator): Mark unused argument.
10556 (calculator-paste, calculator-quit, calculator-integer-p):
10557 Use ignore-errors.
10558 (calculator-string-to-number, calculator-decimal, calculator-exp)
10559 (calculator-op-or-exp): Use string-match-p.
10560
10561 * dired.el (dired-buffer-more-recently-used-p): Declare.
10562 (dired-insert-set-properties, dired-insert-old-subdirs):
10563 Use ignore-errors.
10564
10565 * dired-aux.el (dired-compress): Use ignore-errors.
10566 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
10567 (dired-do-async-shell-command, dired-do-shell-command)
10568 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
10569 (dired-insert-subdir-validate): Use string-match-p.
10570 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
10571 (dired-add-entry): Use string-match-p, looking-at-p.
10572 (dired-insert-subdir-newpos): Remove unused local variable.
10573
10574 * filenotify.el (file-notify-callback): Remove unused local variable.
10575
10576 * filesets.el (filesets-error): Mark unused argument.
10577 (filesets-which-command-p, filesets-filter-dir-names)
10578 (filesets-directory-files, filesets-get-external-viewer)
10579 (filesets-ingroup-get-data): Use string-match-p.
10580
10581 * find-file.el (ff-other-file-name, ff-other-file-name)
10582 (ff-find-the-other-file, ff-cc-hh-converter):
10583 Remove unused local variables.
10584 (ff-get-file-name): Use string-match-p.
10585 (ff-all-dirs-under): Use ignore-errors.
10586
10587 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
10588 (follow-select-if-visible): Remove unused local variable.
10589
10590 * forms.el (read-file-filter): Move declaration.
10591 (forms--make-format, forms--make-parser, forms-insert-record):
10592 Quote function with #'.
10593 (forms--update): Use string-match-p. Quote function with #'.
10594
10595 * help-mode.el (help-dir-local-var-def): Mark unused argument.
10596 (help-make-xrefs): Use looking-at-p.
10597 (help-xref-on-pp): Use looking-at-p, ignore-errors.
10598
10599 * ibuffer.el (ibuffer-ext-visible-p): Declare.
10600 (ibuffer-confirm-operation-on): Use string-match-p.
10601
10602 * msb.el (msb-item-handler, msb-dired-item-handler):
10603 Mark unused arguments.
10604
10605 * ses.el (ses-decode-cell-symbol)
10606 (ses-kill-override): Remove unused local variable.
10607 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
10608 (ses-load): Use ignore-errors, looking-at-p.
10609 (ses-jump-safe): Use ignore-errors.
10610 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
10611
10612 * tabify.el (untabify, tabify): Mark unused arguments.
10613
10614 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
10615 Mark unused argument.
10616 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
10617 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
10618
10619 * emacs-lisp/timer.el (timer--time): Define setter with
10620 gv-define-setter to avoid deprecation warning.
10621
10622 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
10623 (*record-cmpl-statistics-p*): Remove (was commented out).
10624 (cmpl-statistics-block): Remove (body was commented out).
10625 All callers changed.
10626 (add-completions-from-buffer, load-completions-from-file):
10627 Remove unused variables.
10628
10629 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
10630
10631 * filecache.el (file-cache-delete-file-list):
10632 Print message only when told so.
10633 (file-cache-files-matching): Use #' in mapconcat argument.
10634
10635 * ffap.el (ffap-url-at-point): Fix reference to variable
10636 thing-at-point-default-mail-uri-scheme.
10637
10638 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
10639
10640 * subr.el (define-error): New function.
10641 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
10642 error-file-not-found and define with define-error.
10643 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
10644 and define with define-error.
10645 * userlock.el (file-locked, file-supersession):
10646 * simple.el (mark-inactive):
10647 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
10648 * progmodes/ada-mode.el (ada-mode-errors):
10649 * play/life.el (life-extinct):
10650 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
10651 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
10652 * nxml/rng-util.el (rng-error):
10653 * nxml/rng-uri.el (rng-uri-error):
10654 * nxml/rng-match.el (rng-compile-error):
10655 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
10656 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
10657 * nxml/nxml-rap.el (nxml-scan-error):
10658 * nxml/nxml-outln.el (nxml-outline-error):
10659 * net/soap-client.el (soap-error):
10660 * net/gnutls.el (gnutls-error):
10661 * net/ange-ftp.el (ftp-error):
10662 * mpc.el (mpc-proc-error):
10663 * json.el (json-error, json-readtable-error, json-unknown-keyword)
10664 (json-number-format, json-string-escape, json-string-format)
10665 (json-key-format, json-object-format):
10666 * jka-compr.el (compression-error):
10667 * international/quail.el (quail-error):
10668 * international/kkc.el (kkc-error):
10669 * emacs-lisp/ert.el (ert-test-failed):
10670 * calc/calc.el (calc-error, inexact-result, math-overflow)
10671 (math-underflow):
10672 * bookmark.el (bookmark-error-no-filename):
10673 * epg.el (epg-error): Define with define-error.
10674
10675 * time.el (display-time-event-handler)
10676 (display-time-next-load-average): Don't call sit-for since it seems
10677 unnecessary (bug#15045).
10678
10679 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
10680 Use #' instead of ' to quote functions.
10681 (checkdoc-output-mode): Use setq-local.
10682 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
10683 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
10684 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
10685 (checkdoc-ispell, checkdoc-ispell-current-buffer)
10686 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
10687 (checkdoc-ispell-message-text, checkdoc-ispell-start)
10688 (checkdoc-ispell-continue, checkdoc-ispell-comments)
10689 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
10690
10691 * ido.el (ido-completion-help): Fix up compiler warning.
10692
10693 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
10694
10695 * frameset.el (frameset-p): Add autoload cookie.
10696 (frameset--jump-to-register): New function, based on code moved from
10697 register.el.
10698 (frameset-to-register): Move from register.el. Adapt to `registerv'.
10699
10700 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
10701 (frameset-restore, frameset-save, frameset-session-filter-alist):
10702 Remove declarations.
10703 (register-alist): Doc fix.
10704 (frameset-to-register): Move to frameset.el.
10705 (jump-to-register, describe-register-1): Remove frameset-specific code.
10706
10707 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10708
10709 * allout-widgets.el (allout-widgets-pre-command-business)
10710 (allout-widgets-post-command-business)
10711 (allout-widgets-after-change-handler)
10712 (allout-decorate-item-and-context, allout-set-boundary-marker)
10713 (allout-body-modification-handler)
10714 (allout-graphics-modification-handler): Mark ignored arguments.
10715 (allout-widgets-post-command-business)
10716 (allout-widgets-exposure-change-processor)
10717 (allout-widgets-exposure-undo-processor)
10718 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
10719 (allout-parse-item-at-point, allout-decorate-item-guides)
10720 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
10721 * allout.el (epa-passphrase-callback-function): Declare.
10722 (allout-overlay-insert-in-front-handler)
10723 (allout-overlay-interior-modification-handler)
10724 (allout-isearch-end-handler, allout-chart-siblings)
10725 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
10726 (allout-yank-processing, allout-process-exposed)
10727 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
10728 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
10729 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
10730 (lisp-indent-defform): Mark ignored arguments.
10731 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
10732 (calculate-lisp-indent): Remove unused variables.
10733 * international/characters.el (indian-2-column, arabic-2-column)
10734 (tibetan): Mark ignored arguments.
10735 (use-cjk-char-width-table): Mark ignored arguments.
10736 Remove unused variables.
10737 * international/fontset.el (build-default-fontset-data)
10738 (x-compose-font-name, create-fontset-from-fontset-spec):
10739 Mark ignored arguments.
10740 (fontset-plain-name): Remove unused variables.
10741 * international/mule.el (charset-id, charset-bytes, generic-char-p)
10742 (keyboard-coding-system): Mark ignored arguments.
10743 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
10744 * help.el (resize-temp-buffer-window):
10745 * window.el (display-buffer-in-major-side-window)
10746 (display-buffer-in-side-window, display-buffer-in-previous-window):
10747 Remove unused variables.
10748 * isearch.el (isearch-forward-symbol):
10749 * version.el (emacs-bzr-version-bzr):
10750 * international/mule-cmds.el (current-language-environment):
10751 * term/common-win.el (x-handle-iconic, x-handle-geometry)
10752 (x-handle-display):
10753 * term/pc-win.el (x-list-fonts, x-display-planes)
10754 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
10755 (x-server-version, x-display-screens, x-display-mm-height)
10756 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
10757 (x-selection-owner-p, x-own-selection-internal)
10758 (x-disown-selection-internal, x-get-selection-internal)
10759 (msdos-initialize-window-system):
10760 * term/tty-colors.el (tty-color-alist, tty-color-clear):
10761 * term/x-win.el (x-handle-no-bitmap-icon):
10762 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
10763 (vc-default-find-file-hook, vc-default-extra-menu):
10764 Mark ignored arguments.
10765
10766 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10767
10768 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
10769 break-condition in the context of the debugged code (bug#12685).
10770
10771 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
10772
10773 * comint.el:
10774 Do not use an overlay to highlight the last prompt. (Bug#14744)
10775 (comint-mode): Make comint-last-prompt buffer local.
10776 (comint-last-prompt): New variable.
10777 (comint-last-prompt-overlay): Remove. Superseded by
10778 comint-last-prompt.
10779 (comint-snapshot-last-prompt, comint-output-filter):
10780 Use comint-last-prompt.
10781
10782 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10783
10784 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
10785 (frameset-save): Check validity of the resulting frameset.
10786
10787 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
10788
10789 * ido.el (ido-record-command): Add doc string.
10790
10791 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10792
10793 * frameset.el (frameset): Do not disable creation of the default
10794 frameset-p predicate. Doc fix.
10795 (frameset-valid-p): New function, copied from the old predicate-p.
10796 Add additional checks.
10797 (frameset-restore): Check with frameset-valid-p.
10798 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
10799 (frameset-name, frameset-description, frameset-properties)
10800 (frameset-states): Add docstring.
10801 (frameset-session-filter-alist, frameset-persistent-filter-alist)
10802 (frameset-filter-alist): Doc fixes.
10803
10804 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10805
10806 * frameset.el (frameset-p, frameset-prop): Doc fixes.
10807
10808 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10809
10810 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
10811 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
10812 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
10813 (byte-compile-normal-call): Remove obsolescence check.
10814
10815 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10816
10817 * frameset.el (frameset-restore): Doc fix.
10818
10819 * register.el (frameset-frame-id, frameset-frame-with-id)
10820 (frameset-p, frameset-restore, frameset-save): Declare.
10821 (register-alist): Document framesets.
10822 (frameset-session-filter-alist): Declare.
10823 (frameset-to-register): New function.
10824 (jump-to-register): Implement jumping to framesets. Doc fix.
10825 (describe-register-1): Describe framesets.
10826
10827 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
10828
10829 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
10830
10831 * desktop.el (desktop-save-frameset): Use new frameset-save args.
10832 Use lexical-binding.
10833
10834 * frameset.el (frameset): Use type vector, not list (incompatible
10835 change). Do not declare a new constructor, use the default one.
10836 Upgrade suggested properties `app', `name' and `desc' to slots `app',
10837 `name' and `description', respectively, and add read-only slot
10838 `timestamp'. Doc fixes.
10839 (frameset-copy, frameset-persistent-filter-alist)
10840 (frameset-filter-alist, frameset-switch-to-gui-p)
10841 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
10842 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
10843 (frameset-filter-iconified, frameset-keep-original-display-p):
10844 Doc fixes.
10845 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
10846 Rename from frameset-filter-(save|restore)-param. All callers changed.
10847 Doc fix.
10848 (frameset-p): Adapt to change to vector and be more thorough.
10849 Change arg name to OBJECT. Doc fix.
10850 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
10851 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
10852 All callers changed.
10853 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
10854 All callers changed.
10855 (frameset--record-minibuffer-relationships): Rename from
10856 frameset--process-minibuffer-frames. All callers changed.
10857 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
10858 Use new default constructor (again). Doc fix.
10859 (frameset--find-frame-if): Rename from `frameset--find-frame'.
10860 All callers changed.
10861 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
10862 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
10863 Doc fix.
10864 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
10865 PARAMETERS and WINDOW-STATE, respectively.
10866 (frameset-restore): Add new keyword argument PREDICATE.
10867 Reset frameset--target-display to nil. Doc fix.
10868
10869 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
10870
10871 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
10872 (bat-mode): Use it.
10873 (bat-mode-syntax-table): Mark \n as end-of-comment.
10874 (bat-font-lock-keywords): Remove comment rule.
10875
10876 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
10877 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
10878
10879 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
10880 (byte-compile-callargs-warn): Use `push'.
10881 (byte-compile-arglist-warn): Ignore higher-order "calls".
10882 (byte-compile-file-form-autoload): Use `pcase'.
10883 (byte-compile-function-form): If quoting a symbol, check that it exists.
10884
10885 2013-08-07 Eli Zaretskii <eliz@gnu.org>
10886
10887 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
10888 and add a few popular commands found in batch files.
10889 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
10890 (dos-mode): Doc fixes.
10891
10892 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
10893
10894 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
10895 (dos-mode): Use setq-local. Add space after "rem".
10896 (dos-mode-syntax-table): Don't use "w" for symbol chars.
10897 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
10898
10899 2013-08-07 Arni Magnusson <arnima@hafro.is>
10900
10901 * progmodes/dos.el: New file.
10902 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
10903 dos-mode.
10904
10905 2013-08-06 Glenn Morris <rgm@gnu.org>
10906
10907 * calendar/calendar.el: Add new faces, and day-header-array.
10908 (calendar-weekday-header, calendar-weekend-header)
10909 (calendar-month-header): New faces.
10910 (calendar-day-header-construct): New function.
10911 (calendar-day-header-width): Also :set calendar-day-header-array.
10912 (calendar-american-month-header, calendar-european-month-header)
10913 (calendar-iso-month-header): Use calendar- faces.
10914 (calendar-generate-month):
10915 Use calendar-day-header-array for day headers; apply faces to them.
10916 (calendar-mode): Check calendar-font-lock-keywords non-nil.
10917 (calendar-abbrev-construct): Add optional maxlen argument.
10918 (calendar-day-name-array): Doc fix.
10919 (calendar-day-name-array, calendar-abbrev-length)
10920 (calendar-day-abbrev-array):
10921 Also :set calendar-day-header-array, and maybe redraw.
10922 (calendar-day-header-array): New option. (Bug#15007)
10923 (calendar-font-lock-keywords): Set to nil and make obsolete.
10924 (calendar-day-name): Add option to use header array.
10925
10926 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10927
10928 * net/shr.el (shr-render-td): Remove debugging.
10929 (shr-render-td): Make width computation consistent by defaulting
10930 all zero-width columns to 10 characters. This may not be optimal,
10931 but it's at least consistent.
10932 (shr-make-table-1): Redo last change to fix the real problem in
10933 colspan handling.
10934
10935 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
10936
10937 * files.el (cache-long-line-scans):
10938 Make obsolete alias to `cache-long-scans'.
10939
10940 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
10941
10942 * frameset.el (frameset, frameset-filter-alist)
10943 (frameset-filter-params, frameset-save, frameset--reuse-frame)
10944 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
10945 (frameset-compute-pos): Rename from frameset--compute-pos,
10946 and add docstring.
10947 (frameset-move-onscreen): Use frameset-compute-pos.
10948 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
10949
10950 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
10951 Fix typos in docstrings.
10952
10953 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
10954
10955 * frame.el (get-other-frame): Tiny cleanup.
10956
10957 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
10958
10959 * vc/vc.el (vc-default-ignore-completion-table):
10960 Silence byte-compiler warning.
10961
10962 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
10963 slot, which can indeed be nil.
10964 (frameset-live-filter-alist, frameset-persistent-filter-alist):
10965 Move entry for `left' from persistent to live filter alist.
10966 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
10967 Doc fixes.
10968 (frameset-filter-params): When restoring a frame, copy items added to
10969 `filtered', to avoid unwittingly modifying the original parameters.
10970 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
10971 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
10972
10973 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
10974 to use looking-at-p instead of looking-at. (Bug#15028)
10975
10976 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
10977
10978 Revert introduction of isearch-filter-predicates (bug#14714).
10979 Rely on add-function instead.
10980 * isearch.el (isearch-filter-predicates): Rename it back to
10981 isearch-filter-predicate.
10982 (isearch-message-prefix): Use advice-function-mapc and advice
10983 properties to get the isearch-message-prefix.
10984 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
10985 instead of run-hook-with-args-until-failure.
10986 (isearch-filter-visible): Not obsolete any more.
10987 * loadup.el: Preload nadvice.
10988 * replace.el (perform-replace): Revert to funcall
10989 instead of run-hook-with-args-until-failure.
10990 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
10991 * dired-aux.el (dired-isearch-filenames-mode): Rename from
10992 dired-isearch-filenames-toggle; make it into a proper minor mode.
10993 Use add/remove-function.
10994 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
10995 Call the minor-mode rather than add/remove-hook.
10996 (dired-isearch-filter-filenames):
10997 Remove isearch-message-prefix property.
10998 * info.el (Info--search-loop): New function, extracted from Info-search.
10999 Funcall isearch-filter-predicate instead of
11000 run-hook-with-args-until-failure isearch-filter-predicates.
11001 (Info-search): Use it.
11002 (Info-mode): Use isearch-filter-predicate instead of
11003 isearch-filter-predicates.
11004
11005 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
11006
11007 Do not call to `selected-window' where it is assumed by default.
11008 Affected functions are `window-minibuffer-p', `window-dedicated-p',
11009 `window-hscroll', `window-width', `window-height', `window-buffer',
11010 `window-frame', `window-start', `window-point', `next-window'
11011 and `window-display-table'.
11012 * abbrev.el (abbrev--default-expand):
11013 * bs.el (bs--show-with-configuration):
11014 * buff-menu.el (Buffer-menu-mouse-select):
11015 * calc/calc.el (calc):
11016 * calendar/calendar.el (calendar-generate-window):
11017 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
11018 (diary-make-entry):
11019 * comint.el (send-invisible, comint-dynamic-complete-filename)
11020 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
11021 * completion.el (complete):
11022 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
11023 * disp-table.el (describe-current-display-table):
11024 * doc-view.el (doc-view-insert-image):
11025 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
11026 * ehelp.el (with-electric-help):
11027 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11028 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
11029 * emacs-lisp/helper.el (Helper-help-scroller):
11030 * emulation/cua-base.el (cua--post-command-handler-1):
11031 * eshell/esh-mode.el (eshell-output-filter):
11032 * ffap.el (ffap-gnus-wrapper):
11033 * help-macro.el (make-help-screen):
11034 * hilit-chg.el (highlight-compare-buffers):
11035 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
11036 * hl-line.el (global-hl-line-highlight):
11037 * icomplete.el (icomplete-simple-completing-p):
11038 * isearch.el (isearch-done):
11039 * jit-lock.el (jit-lock-stealth-fontify):
11040 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
11041 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
11042 * mpc.el (mpc-tagbrowser, mpc):
11043 * net/rcirc.el (rcirc-any-buffer):
11044 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
11045 * play/landmark.el (landmark-max-width, landmark-max-height):
11046 * play/zone.el (zone):
11047 * progmodes/compile.el (compilation-goto-locus):
11048 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
11049 * progmodes/etags.el (find-tag-other-window):
11050 * progmodes/fortran.el (fortran-column-ruler):
11051 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
11052 * progmodes/verilog-mode.el (verilog-point-text):
11053 * reposition.el (reposition-window):
11054 * rot13.el (toggle-rot13-mode):
11055 * server.el (server-switch-buffer):
11056 * shell.el (shell-dynamic-complete-command)
11057 (shell-dynamic-complete-environment-variable):
11058 * simple.el (insert-buffer, set-selective-display)
11059 (delete-completion-window):
11060 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
11061 (speedbar-recenter):
11062 * startup.el (fancy-splash-head):
11063 * textmodes/ispell.el (ispell-command-loop):
11064 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
11065 * tutorial.el (help-with-tutorial):
11066 * vc/add-log.el (add-change-log-entry):
11067 * vc/compare-w.el (compare-windows):
11068 * vc/ediff-help.el (ediff-indent-help-message):
11069 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
11070 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
11071 (ediff-setup-control-frame):
11072 * vc/emerge.el (emerge-position-region):
11073 * vc/pcvs-util.el (cvs-bury-buffer):
11074 * window.el (walk-windows, mouse-autoselect-window-select):
11075 * winner.el (winner-set-conf, winner-undo): Related users changed.
11076
11077 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
11078
11079 * frameset.el (frameset--set-id): Doc fix.
11080 (frameset-frame-id, frameset-frame-id-equal-p)
11081 (frameset-locate-frame-id): New functions.
11082 (frameset--process-minibuffer-frames, frameset--reuse-frame)
11083 (frameset-restore): Use them.
11084
11085 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
11086
11087 Do not call to `selected-frame' where it is assumed by default.
11088 Affected functions are `raise-frame', `redraw-frame',
11089 `frame-first-window', `frame-terminal' and `delete-frame'.
11090 * calendar/appt.el (appt-disp-window):
11091 * epg.el (epg-wait-for-completion):
11092 * follow.el (follow-delete-other-windows-and-split)
11093 (follow-avoid-tail-recenter):
11094 * international/mule.el (set-terminal-coding-system):
11095 * mail/rmail.el (rmail-mail-return):
11096 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
11097 * progmodes/f90.el (f90-add-imenu-menu):
11098 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
11099 * server.el (server-switch-buffer):
11100 * simple.el (delete-completion-window):
11101 * talk.el (talk):
11102 * term/xterm.el (terminal-init-xterm-modify-other-keys)
11103 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
11104 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
11105 * vc/ediff.el (ediff-documentation): Related users changed.
11106 * frame.el (selected-terminal): Remove the leftover.
11107
11108 2013-08-05 Glenn Morris <rgm@gnu.org>
11109
11110 * calendar/calendar.el (calendar-generate-month):
11111 Fix for calendar-column-width != 1 + calendar-day-digit-width.
11112 (calendar-generate-month, calendar-font-lock-keywords):
11113 Fix for calendar-day-header-width > length of any day name.
11114
11115 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
11116
11117 * desktop.el (desktop-clear): Use new name of sort predicate.
11118
11119 * frameset.el (frameset): Add docstring. Move :version property to its
11120 own `version' slot.
11121 (frameset-copy): Rename from copy-frameset.
11122 (frameset-p): Check more thoroughly.
11123 (frameset-prop): Do not check for :version, which is no longer a prop.
11124 (frameset-live-filter-alist, frameset-persistent-filter-alist):
11125 Use new :never value instead of t.
11126 (frameset-filter-alist): Expand and clarify docstring.
11127 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
11128 (frameset-filter-minibuffer, frameset-filter-save-param)
11129 (frameset-filter-restore-param, frameset-filter-iconified):
11130 Add pointer to docstring of frameset-filter-alist.
11131 (frameset-filter-params): Rename filter values to be more meaningful:
11132 :never instead of t, and reverse the meanings of :save and :restore.
11133 (frameset--process-minibuffer-frames): Clarify error message.
11134 (frameset-save): Avoid unnecessary and confusing call to framep.
11135 Use new BOA constructor for framesets.
11136 (frameset--reuse-list): Doc fix.
11137 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
11138 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
11139 (frameset-minibufferless-first-p): Doc fix.
11140 Rename from frameset-sort-frames-for-deletion.
11141 (frameset-restore): Doc fixes. Use new function names.
11142 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
11143
11144 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
11145
11146 * desktop.el (desktop-restore-forces-onscreen)
11147 (desktop-restore-reuses-frames): Document :keyword constant values.
11148 (desktop-filter-parameters-alist): Remove, now identical to
11149 frameset-filter-alist.
11150 (desktop--filter-tty*): Remove, moved to frameset.el.
11151 (desktop-save-frameset, desktop-restore-frameset):
11152 Do not pass :filters argument.
11153
11154 * frameset.el (frameset-live-filter-alist)
11155 (frameset-persistent-filter-alist): New variables.
11156 (frameset-filter-alist): Use them. Add autoload cookie.
11157 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
11158 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
11159 `frameset--id' (it's supposed to be internal to frameset.el).
11160 (frameset--process-minibuffer-frames): Ditto. Doc fix.
11161 (frameset--initial-params): New function.
11162 (frameset--get-frame): Use it. Doc fix.
11163 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
11164 Accept :all, not 'all.
11165 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
11166 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
11167 with fbound symbols. Fix frame id matching, and remove matching ids if
11168 the frame being restored is deleted. Obey :delete.
11169
11170 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
11171
11172 * subr.el (macrop): New function.
11173 (text-clone--maintaining): New var.
11174 (text-clone--maintain): Rename from text-clone-maintain. Use it
11175 instead of inhibit-modification-hooks.
11176
11177 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
11178 a proxy, so as handle autoloads and redefinitions of the target.
11179 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
11180
11181 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
11182 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
11183 (pcase--mutually-exclusive-p): New function.
11184 (pcase--split-consp): Use it.
11185 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
11186 mutually exclusive with the current predicate.
11187
11188 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
11189 (edebug-macrop): Remove. Use `macrop' instead.
11190 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
11191 (ad-macro-p):
11192 * eshell/esh-cmd.el (eshell-macrop):
11193 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
11194
11195 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
11196
11197 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
11198 (advice-mapc): New function, using it.
11199 (advice-function-member-p): New function.
11200 (advice--normalize): Store the cdr in advice--saved-rewrite since
11201 that's the part that will be changed.
11202 (advice--symbol-function): New function.
11203 (advice-remove): Handle removal before the function is defined.
11204 Adjust to new advice--saved-rewrite.
11205 (advice-member-p): Use advice-function-member-p and
11206 advice--symbol-function.
11207
11208 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
11209
11210 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
11211 (frameset-filter-minibuffer): Doc fix.
11212 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
11213 (frameset--set-id, frameset--process-minibuffer-frames)
11214 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
11215 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
11216
11217 * desktop.el (desktop-clear): Only delete frames when called
11218 interactively and desktop-restore-frames is non-nil. Doc fix.
11219 (desktop-read): Set desktop-saved-frameset to nil.
11220
11221 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
11222
11223 * vc/vc.el (vc-ignore): Rewrite.
11224 (vc-default-ignore-completion-table, vc--read-lines)
11225 (vc--add-line, vc--remove-regexp): New functions.
11226
11227 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
11228 (vc-svn-ignore-completion-table): New function.
11229
11230 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
11231 (vc-hg-ignore-completion-table)
11232 (vc-hg-find-ignore-file): New functions.
11233
11234 * vc/vc-git.el (vc-git-ignore): Rewrite.
11235 (vc-git-ignore-completion-table)
11236 (vc-git-find-ignore-file): New functions.
11237
11238 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
11239
11240 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
11241 (vc-bzr-ignore-completion-table)
11242 (vc-bzr-find-ignore-file): New functions.
11243
11244 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
11245
11246 * frameset.el (frameset-prop): New function and setter.
11247 (frameset-save): Do not modify frame list passed by the caller.
11248
11249 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
11250
11251 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
11252
11253 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
11254
11255 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
11256 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
11257
11258 * custom.el (custom-initialize-default, custom-initialize-set)
11259 (custom-initialize-reset, custom-initialize-changed): Affect the
11260 toplevel-default-value (bug#6275, bug#14586).
11261 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
11262 for bug#6275.
11263
11264 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
11265
11266 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11267 Add cl-def* expressions.
11268
11269 * frameset.el (frameset-filter-params): Fix order of arguments.
11270
11271 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
11272
11273 Move code related to saving frames to frameset.el.
11274 * desktop.el: Require frameset.
11275 (desktop-restore-frames): Doc fix.
11276 (desktop-restore-reuses-frames): Rename from
11277 desktop-restoring-reuses-frames.
11278 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
11279 (desktop-clear): Clear frames too.
11280 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
11281 (desktop--filter-tty*, desktop-save, desktop-read):
11282 Use frameset functions.
11283 (desktop-before-saving-frames-functions, desktop--filter-*-color)
11284 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
11285 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
11286 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
11287 (desktop--process-minibuffer-frames, desktop-save-frames)
11288 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
11289 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
11290 (desktop--sort-states, desktop-restoring-frames-p)
11291 (desktop-restore-frames): Remove. Most code moved to frameset.el.
11292 (desktop-restoring-frameset-p, desktop-restore-frameset)
11293 (desktop--check-dont-save, desktop-save-frameset): New functions.
11294 (desktop--app-id): New constant.
11295 (desktop-first-buffer, desktop-buffer-ok-count)
11296 (desktop-buffer-fail-count): Move before first use.
11297 * frameset.el: New file.
11298
11299 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
11300
11301 * files.el: Use lexical-binding.
11302 (dir-locals-read-from-file): Remove unused `err' variable.
11303 (hack-dir-local-variables--warned-coding): New var.
11304 (hack-dir-local-variables): Use it to avoid repeated warnings.
11305 (make-backup-file-name--default-function): New function.
11306 (make-backup-file-name-function): Use it as default.
11307 (buffer-stale--default-function): New function.
11308 (buffer-stale-function): Use it as default.
11309 (revert-buffer-insert-file-contents--default-function): New function.
11310 (revert-buffer-insert-file-contents-function): Use it as default.
11311 (insert-directory): Avoid add-to-list.
11312
11313 * autorevert.el (auto-revert-handler): Simplify.
11314 Use buffer-stale--default-function.
11315
11316 2013-08-01 Tassilo Horn <tsdh@gnu.org>
11317
11318 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
11319
11320 * whitespace.el (whitespace-ensure-local-variables): New function.
11321 (whitespace-cleanup-region): Call it.
11322 (whitespace-turn-on): Call it.
11323
11324 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
11325
11326 Complete file name handlers.
11327
11328 * net/tramp.el (tramp-handle-set-visited-file-modtime)
11329 (tramp-handle-verify-visited-file-modtime)
11330 (tramp-handle-file-notify-rm-watch): New functions.
11331 (tramp-call-process): Do not bind `default-directory'.
11332
11333 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11334 Order alphabetically.
11335 <access-file, add-name-to-file, dired-call-process>:
11336 <dired-compress-file, file-acl, file-notify-rm-watch>:
11337 <file-ownership-preserved-p, file-selinux-context>:
11338 <make-directory-internal, make-symbolic-link, set-file-acl>:
11339 <set-file-selinux-context, set-visited-file-modtime>:
11340 <verify-visited-file-modtime>: Add handler.
11341 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
11342
11343 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
11344 <file-notify-add-watch, file-notify-rm-watch>:
11345 <set-file-times, set-visited-file-modtime>:
11346 <verify-visited-file-modtime>: Add handler.
11347 (with-tramp-gvfs-error-message)
11348 (tramp-gvfs-handle-set-visited-file-modtime)
11349 (tramp-gvfs-fuse-file-name): Remove.
11350 (tramp-gvfs-handle-file-notify-add-watch)
11351 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
11352 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
11353
11354 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
11355 Order alphabetically.
11356 <file-notify-rm-watch>: Use default Tramp handler.
11357 <executable-find>: Remove private handler.
11358 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
11359 `default-directory'.
11360 (tramp-sh-handle-executable-find)
11361 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
11362 (tramp-sh-file-gvfs-monitor-dir-process-filter)
11363 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
11364 Do not use `format' in `tramp-message'.
11365
11366 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
11367 <file-notify-rm-watch, set-visited-file-modtime>:
11368 <verify-visited-file-modtime>: Add handler.
11369 (tramp-smb-call-winexe): Do not bind `default-directory'.
11370
11371 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
11372
11373 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
11374
11375 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
11376
11377 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
11378 use it.
11379 (log-view-diff-changeset): Same.
11380 (log-view-diff-common): Call backend command `previous-revision'
11381 to find out the previous revision, in both cases. Swap the
11382 variables `to' and `fr', so that `fr' usually refers to the
11383 earlier revision (Bug#14989).
11384
11385 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
11386
11387 * ibuf-ext.el (ibuffer-filter-by-filename):
11388 Make it work with dired buffers too.
11389
11390 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
11391
11392 * emacs-lisp/re-builder.el (reb-color-display-p):
11393 * files.el (save-buffers-kill-terminal):
11394 * net/browse-url.el (browse-url):
11395 * server.el (server-save-buffers-kill-terminal):
11396 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
11397 Prefer nil to selected-frame for the first arg of frame-parameter.
11398
11399 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
11400
11401 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
11402
11403 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
11404
11405 * minibuffer.el (completion--twq-all): Try and preserve each
11406 completion's case choice (bug#14907).
11407
11408 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11409
11410 * net/network-stream.el (open-network-stream): Mention the new
11411 :nogreeting parameter.
11412 (network-stream-open-starttls): Use the :nogreeting parameter
11413 (bug#14938).
11414
11415 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
11416
11417 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
11418 more natural than popping.
11419
11420 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
11421 (shr-urlify): Highlight under mouse.
11422
11423 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
11424
11425 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
11426
11427 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
11428
11429 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
11430 buffer for output.
11431
11432 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
11433 point-min==1. Fix search string. Fix parentheses missing.
11434
11435 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
11436 assume point-min==1. Fix search string. Fix parentheses missing.
11437
11438 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
11439
11440 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
11441 buffer for output.
11442
11443 2013-07-29 Eli Zaretskii <eliz@gnu.org>
11444
11445 * frame.el (frame-notice-user-settings): Avoid inflooping when the
11446 initial frame is minibuffer-less. (Bug#14841)
11447
11448 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
11449
11450 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
11451 option.
11452
11453 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
11454 (tramp-maybe-open-connection): Use it.
11455
11456 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
11457
11458 * desktop.el (desktop--make-frame): Include `minibuffer' in the
11459 minimal set of parameters passed when creating a frame, because
11460 the minibuffer status of a frame cannot be changed later.
11461
11462 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
11463
11464 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
11465 replace-regexp-in-string and inadvertent omissions in previous change.
11466 (todo-filter-items): Ensure only file names are comma-separated in
11467 name of filtered items buffer.
11468
11469 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
11470
11471 * desktop.el: Optionally force offscreen frames back onscreen.
11472 (desktop-restoring-reuses-frames): New option.
11473 (desktop--compute-pos, desktop--move-onscreen): New functions.
11474 (desktop--make-frame): Use desktop--move-onscreen.
11475
11476 2013-07-27 Alan Mackenzie <acm@muc.de>
11477
11478 Fontify a Java generic method as a function.
11479 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
11480 value to t.
11481
11482 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
11483
11484 * calendar/todo-mode.el: Add command to rename todo files.
11485 (todo-rename-file): New command.
11486 (todo-key-bindings-t): Add key binding for it. Change the
11487 bindings of todo-filter-regexp-items(-multifile) to use `x'
11488 instead of `r', since the latter is better suited to the new
11489 renaming command.
11490
11491 2013-07-27 Alan Mackenzie <acm@muc.de>
11492
11493 Make Java try-with-resources statement parse properly.
11494 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
11495 (c-block-stmt-1-2-key): New language constants/variables.
11496 * progmodes/cc-engine.el (c-beginning-of-statement-1)
11497 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
11498 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
11499 with c-block-stmt-1-2-key.
11500
11501 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
11502
11503 * desktop.el (desktop--make-frame): Apply most frame parameters after
11504 creating the frame to force (partially or totally) offscreen frames to
11505 be restored as such.
11506
11507 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
11508
11509 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
11510 (Bug#14948)
11511
11512 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11513
11514 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
11515 `base' arg of backtrace-frame.
11516
11517 2013-07-26 Eli Zaretskii <eliz@gnu.org>
11518
11519 * simple.el (list-processes): Doc fix.
11520
11521 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
11522
11523 * desktop.el (desktop--select-frame):
11524 Try harder to reuse existing frames.
11525
11526 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11527
11528 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
11529 (edebug-eval): Use backtrace-eval.
11530 (edebug--display, edebug--recursive-edit): Don't let-bind the
11531 edebug-outer-* vars that keep track of variables we locally let-bind.
11532 (edebug-outside-excursion): Don't restore outside values of locally
11533 let-bound vars.
11534 (edebug--display): Use user-error.
11535 (cl-lexical-debug, cl-debug-env): Remove.
11536
11537 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
11538
11539 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
11540 are restored to be sure that they are visible before deleting any
11541 remaining ones.
11542
11543 2013-07-26 Matthias Meulien <orontee@gmail.com>
11544
11545 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
11546 vc-print-root-log. (Bug#14948)
11547
11548 2013-07-26 Richard Stallman <rms@gnu.org>
11549
11550 Add aliases for encrypting mail.
11551 * epa.el (epa-mail-aliases): New option.
11552 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
11553 Bind inhibit-read-only so read-only text doesn't ruin everything.
11554 (epa-mail-default-recipients): New subroutine broken out.
11555 Handle epa-mail-aliases.
11556
11557 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11558
11559 Add support for lexical variables to the debugger's `e' command.
11560 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
11561 vars, except for debugger-outer-match-data.
11562 (debugger-frame-number): Move check for "on a function call" from
11563 callers into it. Add `skip-base' argument.
11564 (debugger-frame, debugger-frame-clear): Simplify accordingly.
11565 (debugger-env-macro): Only reset the state stored in non-variables,
11566 i.e. current-buffer and match-data.
11567 (debugger-eval-expression): Rewrite using backtrace-eval.
11568 * subr.el (internal--called-interactively-p--get-frame): Remove.
11569 (called-interactively-p):
11570 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
11571 `base' arg of backtrace-frame instead.
11572
11573 2013-07-26 Glenn Morris <rgm@gnu.org>
11574
11575 * align.el (align-regexp): Doc fix. (Bug#14857)
11576 (align-region): Explicit error if subexpression missing/does not match.
11577
11578 * simple.el (global-visual-line-mode):
11579 Do not duplicate the mode lighter. (Bug#14858)
11580
11581 2013-07-25 Martin Rudalics <rudalics@gmx.at>
11582
11583 * window.el (display-buffer): In display-buffer bind
11584 split-window-keep-point to t, bug#14829.
11585
11586 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
11587
11588 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
11589 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
11590 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
11591 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
11592 Change accordingly.
11593 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
11594 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
11595
11596 2013-07-25 Glenn Morris <rgm@gnu.org>
11597
11598 * dired-x.el (dired-mark-extension): Convert comment to doc string.
11599
11600 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
11601
11602 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
11603 parameter to modify-frame-parameters if the value has not changed;
11604 this is a workaround for bug#14949.
11605 (desktop--make-frame): On cl-delete-if call, check parameter name,
11606 not full parameter.
11607
11608 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
11609
11610 * vc/vc.el (vc-ignore): New function.
11611
11612 * vc/vc-svn.el (vc-svn-ignore): New function.
11613
11614 * vc/vc-hg.el (vc-hg-ignore): New function.
11615
11616 * vc/vc-git.el (vc-git-ignore): New function.
11617
11618 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
11619 (vc-dir-ignore): New function.
11620
11621 * vc/vc-cvs.el (vc-cvs-ignore): New function.
11622 (cvs-append-to-ignore): Move here from pcvs.el.
11623
11624 * vc/vc-bzr.el (vc-bzr-ignore): New function.
11625
11626 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
11627
11628 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
11629
11630 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
11631 (desktop-restore-frames): Warn when deleting an existing frame failed.
11632
11633 2013-07-24 Glenn Morris <rgm@gnu.org>
11634
11635 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
11636
11637 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
11638
11639 * filenotify.el (file-notify-supported-p):
11640 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
11641 Remove functions.
11642
11643 * autorevert.el (auto-revert-use-notify)
11644 (auto-revert-notify-add-watch):
11645 * net/tramp.el (tramp-file-name-for-operation):
11646 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11647 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11648 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
11649 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11650 Remove `file-notify-supported-p' entry.
11651
11652 2013-07-24 Glenn Morris <rgm@gnu.org>
11653
11654 * printing.el: Replace all uses of deleted ps-windows-system,
11655 ps-lp-system, ps-flatten-list with lpr- versions.
11656
11657 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
11658
11659 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
11660 checked with memq (bug#14935).
11661
11662 * files.el (revert-buffer-function): Use a non-nil default.
11663 (revert-buffer-preserve-modes): Declare var to
11664 provide access to the `preserve-modes' argument.
11665 (revert-buffer): Let-bind it.
11666 (revert-buffer--default): New function, extracted from revert-buffer.
11667
11668 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
11669
11670 * lpr.el: Signal print errors more prominently.
11671 (print-region-function): Don't default to nil.
11672 (lpr-print-region): New function, extracted from print-region-1.
11673 Check lpr's return value and signal an error in case of problem.
11674 (print-region-1): Use it.
11675 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
11676 versions instead.
11677 (ps-printer-name): Default to nil.
11678 (ps-printer-name-option): Default to lpr-printer-switch.
11679 (ps-print-region-function): Don't default to nil.
11680 (ps-postscript-code-directory): Simplify default.
11681 (ps-do-despool): Use lpr-print-region to properly check the outcome.
11682 (ps-string-list, ps-eval-switch, ps-flatten-list)
11683 (ps-flatten-list-1): Remove.
11684 (ps-multibyte-buffer): Avoid setq.
11685 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
11686 (print-region-function, ps-print-region-function): Don't set them here.
11687
11688 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
11689
11690 * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
11691 (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
11692 (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
11693 (ido-decorations): Doc fix.
11694
11695 * ansi-color.el: Fix old URL.
11696
11697 2013-07-23 Michael R. Mauger <michael@mauger.com>
11698
11699 * progmodes/sql.el: Version 3.3
11700 (sql-product-alist): Improve oracle :prompt-cont-regexp.
11701 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
11702 (sql-interactive-remove-continuation-prompt): Rewrite, use
11703 functions above. Fix continuation prompt and complete output line
11704 handling.
11705 (sql-redirect-one, sql-execute): Use `read-only-mode' on
11706 redirected output buffer.
11707 (sql-mode): Restore deleted code (Bug#13591).
11708
11709 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
11710
11711 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
11712
11713 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
11714
11715 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
11716
11717 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11718 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11719 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
11720
11721 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
11722
11723 * desktop.el (desktop-clear): Simplify; remove useless checks
11724 against invalid buffer names.
11725 (desktop-list*): Use cl-list*.
11726 (desktop-buffer-info, desktop-create-buffer): Simplify.
11727
11728 2013-07-23 Leo Liu <sdl.web@gmail.com>
11729
11730 * bookmark.el (bookmark-make-record): Restore NAME as a default
11731 value. (Bug#14933)
11732
11733 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
11734
11735 * emacs-lisp/autoload.el (autoload--setup-output): New function,
11736 extracted from autoload--insert-text.
11737 (autoload--insert-text): Remove.
11738 (autoload--print-cookie-text): New function, extracted from
11739 autoload--insert-cookie-text.
11740 (autoload--insert-cookie-text): Remove.
11741 (autoload-generate-file-autoloads): Adjust calls accordingly.
11742
11743 * winner.el (winner-hook-installed-p): Remove.
11744 (winner-mode): Simplify accordingly.
11745
11746 * subr.el (add-to-list): Fix compiler-macro when `append' is
11747 not constant. Don't use `cl-member' for the base case.
11748
11749 * progmodes/subword.el: Fix boundary case (bug#13758).
11750 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
11751 own group.
11752 (subword-backward-regexp): Make it a constant.
11753 (subword-forward-internal): Don't treat a trailing capital as the
11754 beginning of a word.
11755
11756 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
11757
11758 * emacs-lisp/package.el (package-menu-mode): Don't modify the
11759 global value of tabulated-list-revert-hook (bug#14930).
11760
11761 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
11762
11763 * desktop.el: Require 'cl-lib.
11764 (desktop-before-saving-frames-functions): New hook.
11765 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
11766 for frames being saved. Rename from desktop--save-minibuffer-frames.
11767 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
11768 Do not save frames with non-nil `desktop-dont-save' parameter.
11769 Filter out deleted frames.
11770 (desktop--find-frame): Use cl-find-if.
11771 (desktop--select-frame): Use cl-(first|second|third) to access values
11772 of desktop-mini.
11773 (desktop--make-frame): Use cl-delete-if.
11774 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
11775 (desktop-restore-frames): Use cl-(first|second|third) to access values
11776 of desktop-mini. Look for visible frame at the end, not while
11777 restoring frames.
11778
11779 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
11780 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
11781 Use string-match-p, looking-at-p (bug#14927).
11782
11783 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
11784
11785 * desktop.el (desktop-saved-frame-states):
11786 Rename from desktop--saved-states; all users changed.
11787 (desktop-save-frames): Rename from desktop--save-frames.
11788 Do not save state to desktop file.
11789 (desktop-save): Save desktop-saved-frame-states to desktop file
11790 and reset to nil.
11791 (desktop-restoring-frames-p): New function.
11792 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
11793 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
11794 buffer-lists when restoring frames. Suggested by Martin Rudalics.
11795
11796 * desktop.el: Correctly restore iconified frames.
11797 (desktop--filter-iconified-position): New function.
11798 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
11799
11800 2013-07-20 Glenn Morris <rgm@gnu.org>
11801
11802 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
11803 Let `message' do the formatting.
11804 (def-gdb-preempt-display-buffer): Add explicit format.
11805
11806 * image-dired.el (image-dired-track-original-file):
11807 Use with-current-buffer.
11808 (image-dired-track-thumbnail): Use with-current-buffer.
11809 Avoid changing point of wrong window.
11810
11811 * image-dired.el (image-dired-track-original-file):
11812 Avoid changing point of wrong window. (Bug#14909)
11813
11814 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
11815
11816 * progmodes/gdb-mi.el (gdb-done-or-error):
11817 Guard against "%" in gdb output. (Bug#14127)
11818
11819 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
11820
11821 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
11822 (Bug#14826)
11823
11824 * international/mule.el (coding-system-iso-2022-flags): Fix last
11825 change.
11826
11827 2013-07-20 Kenichi Handa <handa@gnu.org>
11828
11829 * international/mule.el (coding-system-iso-2022-flags):
11830 Add `8-bit-level-4'. (Bug#8522)
11831
11832 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11833
11834 * net/shr.el (shr-mouse-browse-url): New command and keystroke
11835 (bug#14815).
11836
11837 * net/eww.el (eww-process-text-input): Allow inputting when the
11838 point is at the start of the line, as the properties aren't
11839 front-sticky.
11840
11841 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
11842 degenerate widths.
11843
11844 2013-07-19 Richard Stallman <rms@gnu.org>
11845
11846 * epa.el (epa-popup-info-window): Doc fix.
11847
11848 * subr.el (split-string): New arg TRIM.
11849
11850 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
11851
11852 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
11853 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
11854
11855 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
11856
11857 * filenotify.el (file-notify--library): Rename from
11858 `file-notify-support'. Do not autoload. Adapt all uses.
11859 (file-notify-supported-p): New defun.
11860
11861 * autorevert.el (auto-revert-use-notify):
11862 Use `file-notify-supported-p' instead of `file-notify-support'.
11863 Adapt docstring.
11864 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
11865
11866 * net/tramp.el (tramp-file-name-for-operation):
11867 Add `file-notify-supported-p'.
11868
11869 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
11870 New defun.
11871 (tramp-sh-file-name-handler-alist): Add it as handler for
11872 `file-notify-supported-p '.
11873
11874 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11875 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11876 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11877 Add `ignore' as handler for `file-notify-*' functions.
11878
11879 2013-07-17 Eli Zaretskii <eliz@gnu.org>
11880
11881 * simple.el (line-move-partial, line-move): Don't start vscroll or
11882 scroll-up if the current line is not taller than the window.
11883 (Bug#14881)
11884
11885 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
11886
11887 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
11888 highlight question marks in the method names as strings.
11889 (ruby-block-beg-keywords): Inline.
11890 (ruby-font-lock-keyword-beg-re): Extract from
11891 `ruby-font-lock-keywords'.
11892
11893 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
11894
11895 * frame.el (blink-cursor-blinks): New defcustom.
11896 (blink-cursor-blinks-done): New defvar.
11897 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
11898 (blink-cursor-timer-function): Check if number of blinks has been
11899 done on X and NS.
11900 (blink-cursor-suspend, blink-cursor-check): New defuns.
11901
11902 2013-07-15 Glenn Morris <rgm@gnu.org>
11903
11904 * edmacro.el (edmacro-format-keys): Fix previous change.
11905
11906 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
11907
11908 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
11909 The hack didn't work outside English locales anyway.
11910
11911 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
11912
11913 * simple.el (define-alternatives): Rename from alternatives-define,
11914 per RMS' suggestion.
11915
11916 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
11917
11918 * desktop.el (desktop-restore-frames): Change default to t.
11919 (desktop-restore-in-current-display): Now offer more options.
11920 (desktop-restoring-reuses-frames): New customization option.
11921 (desktop--saved-states): Doc fix.
11922 (desktop-filter-parameters-alist): New variable, renamed and expanded
11923 from desktop--excluded-frame-parameters.
11924 (desktop--target-display): New variable.
11925 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
11926 (desktop--filter-tty*, desktop--filter-*-color)
11927 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
11928 (desktop--filter-save-desktop-parm)
11929 (desktop-restore-in-original-display-p): New functions.
11930 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
11931 (desktop--save-minibuffer-frames): New function, inspired by a similar
11932 function from Martin Rudalics.
11933 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
11934 (desktop--restore-in-this-display-p): Remove.
11935 (desktop--find-frame): Rename from desktop--find-frame-in-display
11936 and add predicate argument.
11937 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
11938 (desktop--reuse-list): New variable.
11939 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
11940 New functions.
11941 (desktop--restore-frames): Add support for "minibuffer-special" frames.
11942
11943 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
11944
11945 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
11946
11947 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
11948
11949 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
11950 Highlight conversion methods on Kernel.
11951
11952 2013-07-13 Alan Mackenzie <acm@muc.de>
11953
11954 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
11955 and comment it out. This out-commenting enables certain C++
11956 declarations to be parsed correctly.
11957
11958 2013-07-13 Eli Zaretskii <eliz@gnu.org>
11959
11960 * international/mule.el (define-coding-system): Doc fix.
11961
11962 * simple.el (default-font-height): Don't call font-info if the
11963 frame's default font didn't change since the frame was created.
11964 (Bug#14838)
11965
11966 2013-07-13 Leo Liu <sdl.web@gmail.com>
11967
11968 * ido.el (ido-read-file-name): Guard against non-symbol value.
11969
11970 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
11971
11972 * progmodes/python.el (python-imenu--build-tree): Fix corner case
11973 in nested defuns.
11974
11975 2013-07-13 Leo Liu <sdl.web@gmail.com>
11976
11977 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
11978 ido-set-matches call. (Bug#6852)
11979
11980 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
11981
11982 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
11983 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
11984 Ruby 2.0.
11985 (ruby-font-lock-keywords): Distinguish calls to functions with
11986 module-like names from module references. Highlight character
11987 literals.
11988
11989 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
11990
11991 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
11992 (gdb-send): Handle continued commands. (Bug#14847)
11993
11994 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
11995
11996 * desktop.el (desktop--v2s): Remove unused local variable.
11997 (desktop-save-buffer): Make defvar-local; adjust docstring.
11998 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
11999 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
12000
12001 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
12002
12003 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
12004
12005 2013-07-12 Eli Zaretskii <eliz@gnu.org>
12006
12007 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
12008 (Bug#14842)
12009
12010 2013-07-12 Glenn Morris <rgm@gnu.org>
12011
12012 * doc-view.el: Require cl-lib at runtime too.
12013 (doc-view-remove-if): Remove.
12014 (doc-view-search-next-match, doc-view-search-previous-match):
12015 Use cl-remove-if.
12016
12017 * edmacro.el: Require cl-lib at runtime too.
12018 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
12019 (edmacro-mismatch, edmacro-subseq): Remove.
12020
12021 * shadowfile.el: Require cl-lib.
12022 (shadow-remove-if): Remove.
12023 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
12024 Use cl-remove-if.
12025
12026 * wid-edit.el: Require cl-lib.
12027 (widget-choose): Use cl-remove-if.
12028 (widget-remove-if): Remove.
12029
12030 * progmodes/ebrowse.el: Require cl-lib at runtime too.
12031 (ebrowse-delete-if-not): Remove.
12032 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
12033 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
12034 Use cl-delete-if-not.
12035
12036 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
12037
12038 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
12039 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
12040
12041 2013-07-12 Leo Liu <sdl.web@gmail.com>
12042
12043 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
12044
12045 2013-07-11 Glenn Morris <rgm@gnu.org>
12046
12047 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
12048 (edebug-gensym-index, edebug-gensym):
12049 Remove reimplementation of cl-gensym.
12050 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
12051
12052 * thumbs.el: Require cl-lib at run-time too.
12053 (thumbs-gensym-counter, thumbs-gensym):
12054 Remove reimplementation of cl-gensym.
12055 (thumbs-temp-file): Use cl-gensym.
12056
12057 * emacs-lisp/ert.el: Require cl-lib at runtime too.
12058 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
12059 (ert--intersection, ert--set-difference, ert--set-difference-eq)
12060 (ert--union, ert--gensym-counter, ert--gensym-counter)
12061 (ert--coerce-to-vector, ert--remove*, ert--string-position)
12062 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
12063 (ert-make-test-unbound, ert--expand-should-1)
12064 (ert--expand-should, ert--should-error-handle-error)
12065 (should-error, ert--explain-equal-rec)
12066 (ert--plist-difference-explanation, ert-select-tests)
12067 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
12068 Use cl-lib functions rather than reimplementations.
12069
12070 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
12071
12072 * net/tramp.el (tramp-methods): Extend docstring.
12073 (tramp-connection-timeout): New defcustom.
12074 (tramp-error-with-buffer): Reset timestamp only when appropriate.
12075 (with-tramp-progress-reporter): Simplify.
12076 (tramp-process-actions): Improve messages.
12077
12078 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
12079 * net/tramp-sh.el (tramp-maybe-open-connection):
12080 Use `tramp-connection-timeout'.
12081 (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
12082 (Bug#14808)
12083
12084 2013-07-11 Leo Liu <sdl.web@gmail.com>
12085
12086 * ido.el (ido-read-file-name): Conform to the requirements of
12087 read-file-name. (Bug#11861)
12088 (ido-read-directory-name): Conform to the requirements of
12089 read-directory-name.
12090
12091 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
12092
12093 * subr.el (delay-warning): New function.
12094
12095 2013-07-10 Eli Zaretskii <eliz@gnu.org>
12096
12097 * simple.el (default-line-height): New function.
12098 (line-move-partial, line-move): Use it instead of computing the
12099 line height inline.
12100 (line-move-partial): Always compute ROWH. If the last line is
12101 partially-visible, but its text is completely visible, allow
12102 cursor to enter such a partially-visible line.
12103
12104 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
12105
12106 Improve error messages. (Bug#14808)
12107
12108 * net/tramp.el (tramp-current-connection): New defvar, moved from
12109 tramp-sh.el.
12110 (tramp-message-show-progress-reporter-message): Remove, not
12111 needed anymore.
12112 (tramp-error-with-buffer): Show message in minibuffer.
12113 Discard input before waiting. Reset connection timestamp.
12114 (with-tramp-progress-reporter): Improve messages.
12115 (tramp-process-actions): Use progress reporter. Delete process in
12116 case of error. Improve messages.
12117
12118 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
12119 Call `tramp-error-with-buffer' with vector and buffer.
12120 (tramp-current-connection): Remove.
12121 (tramp-maybe-open-connection): The car of
12122 `tramp-current-connection' are the first 3 slots of the vector.
12123
12124 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
12125
12126 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
12127 inside continued strings.
12128
12129 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
12130
12131 Timestamp fixes for undo (Bug#14824).
12132 * files.el (clear-visited-file-modtime): Move here from fileio.c.
12133
12134 2013-07-10 Leo Liu <sdl.web@gmail.com>
12135
12136 * files.el (require-final-newline): Allow safe local value.
12137 (Bug#14834)
12138
12139 2013-07-09 Leo Liu <sdl.web@gmail.com>
12140
12141 * ido.el (ido-read-directory-name): Handle fallback.
12142 (ido-read-file-name): Update DIR to ido-current-directory.
12143 (Bug#1516)
12144 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
12145
12146 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
12147
12148 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
12149 "autoload". Remove "warn lower camel case" section, previously
12150 commented out. Highlight negation char. Do not highlight the
12151 target in singleton method definitions.
12152
12153 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
12154
12155 * faces.el (tty-setup-hook): Declare the hook.
12156
12157 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
12158 and detect when a guard/pred depends on local vars (bug#14773).
12159 (pcase--u1): Adjust caller.
12160
12161 2013-07-08 Eli Zaretskii <eliz@gnu.org>
12162
12163 * simple.el (line-move-partial, line-move): Account for
12164 line-spacing.
12165 (line-move-partial): Avoid setting vscroll when the last
12166 partially-visible line in window is of default height.
12167
12168 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
12169
12170 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
12171 been used a while.
12172
12173 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
12174
12175 * subr.el (read-quoted-char): Remove unused local variable `char'.
12176
12177 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
12178
12179 * ediff.el (ediff-version): Version update.
12180 (ediff-files-command, ediff3-files-command, ediff-merge-command)
12181 (ediff-merge-with-ancestor-command, ediff-directories-command)
12182 (ediff-directories3-command, ediff-merge-directories-command)
12183 (ediff-merge-directories-with-ancestor-command): New functions.
12184 All are command-line interfaces to ediff: to facilitate calling
12185 Emacs with the appropriate ediff functions invoked.
12186
12187 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
12188 (viper-save-kill-buffer): Check if buffer is modified.
12189
12190 * viper.el (viper-version): Version update.
12191 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
12192
12193 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
12194
12195 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
12196 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
12197 (viper-intercept-ESC-key): Simplify.
12198 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
12199 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
12200 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
12201 (viper-setup-ESC-to-escape): New functions.
12202 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
12203 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
12204
12205 2013-07-07 Eli Zaretskii <eliz@gnu.org>
12206
12207 * simple.el (default-font-height, window-screen-lines):
12208 New functions.
12209 (line-move, line-move-partial): Use them instead of
12210 frame-char-height and window-text-height. This makes scrolling
12211 text smoother when the buffer's default face uses a font that is
12212 different from the frame's default font.
12213
12214 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
12215
12216 * files.el (write-file): Do not display confirm dialog for NS,
12217 it does its own dialog, which can't be canceled (Bug#14578).
12218
12219 2013-07-06 Eli Zaretskii <eliz@gnu.org>
12220
12221 * simple.el (line-move-partial): Adjust the row returned by
12222 posn-at-point for the current window-vscroll. (Bug#14567)
12223
12224 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
12225
12226 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
12227 (tramp-sh-file-inotifywait-process-filter): Handle file names with
12228 spaces.
12229
12230 2013-07-06 Martin Rudalics <rudalics@gmx.at>
12231
12232 * window.el (window-state-put-stale-windows): New variable.
12233 (window--state-put-2): Save list of windows without matching buffer.
12234 (window-state-put): Remove "bufferless" windows if possible.
12235
12236 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
12237
12238 * simple.el (alternatives-define): Remove leftover :group keyword.
12239 Tweak docstring.
12240
12241 2013-07-06 Leo Liu <sdl.web@gmail.com>
12242
12243 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
12244 (ido-enable-virtual-buffers): New variable.
12245 (ido-buffer-internal, ido-toggle-virtual-buffers)
12246 (ido-make-buffer-list): Use it.
12247 (ido-exhibit): Support turning on and off virtual buffers
12248 automatically.
12249
12250 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
12251
12252 * simple.el (alternatives-define): New macro.
12253
12254 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
12255
12256 * subr.el (read-quoted-char): Use read-key.
12257 (sit-for): Let read-event decode tty input (bug#14782).
12258
12259 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
12260
12261 * calendar/todo-mode.el: Add handling of file deletion, both by
12262 mode command and externally. Fix various related bugs.
12263 Clarify Commentary and improve some documentation strings and code.
12264 (todo-delete-file): New command.
12265 (todo-check-file): New function.
12266 (todo-show): Handle external deletion of the file we're trying to
12267 show (bug#14688). Replace called-interactively-p by an optional
12268 prefix argument to avoid problematic interaction with catch form
12269 when byte compiled (bug#14702).
12270 (todo-quit): Handle external deletion of the archive's todo file.
12271 Make sure the buffer that was visiting the archive file is still
12272 live before trying to bury it.
12273 (todo-category-completions): Handle external deletion of any
12274 category completion files.
12275 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
12276 of todo files, in case of external deletion.
12277 (todo-add-file): Replace unnecessary setq by let-binding.
12278 (todo-find-archive): Check whether there are any archives.
12279 Replace unnecessary setq by let-binding.
12280 (todo-archive-done-item): Use find-file-noselect to get the
12281 archive buffer whether or not the archive already exists.
12282 Remove superfluous code. Use file size instead of buffer-file-name to
12283 check if the archive is new; if it is, update list of archives.
12284 (todo-default-todo-file): Allow nil to be a valid value for when
12285 there are no todo files.
12286 (todo-reevaluate-default-file-defcustom): Use corrected definition
12287 of todo-default-todo-file.
12288 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
12289 (todo-delete-category, todo-show-categories-table)
12290 (todo-category-number): Clarify comment.
12291 (todo-filter-items): Clarify documentation string.
12292 (todo-show-current-file, todo-display-as-todo-file)
12293 (todo-reset-and-enable-done-separator): Tweak documentation string.
12294 (todo-done-separator): Make separator length window-width, since
12295 bug#2749 is now fixed.
12296
12297 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
12298
12299 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
12300 Support both "gvfs-monitor-dir" and "inotifywait".
12301 (tramp-sh-file-inotifywait-process-filter): Rename from
12302 `tramp-sh-file-notify-process-filter'.
12303 (tramp-sh-file-gvfs-monitor-dir-process-filter)
12304 (tramp-get-remote-gvfs-monitor-dir): New defuns.
12305
12306 2013-07-05 Leo Liu <sdl.web@gmail.com>
12307
12308 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
12309
12310 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12311
12312 * frame.el (display-pixel-height, display-pixel-width)
12313 (display-mm-height, display-mm-width): Mention behavior on
12314 multi-monitor setups in docstrings.
12315 (w32-display-monitor-attributes-list): Declare function.
12316 (display-monitor-attributes-list): Use it.
12317
12318 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
12319
12320 * filenotify.el: New package.
12321
12322 * autorevert.el (top): Require filenotify.el.
12323 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
12324 instead.
12325 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
12326 (auto-revert-notify-handler): Use `file-notify-*' functions.
12327
12328 * subr.el (file-notify-handle-event): Move function to filenotify.el.
12329
12330 * net/tramp.el (tramp-file-name-for-operation):
12331 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
12332
12333 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
12334 for `file-notify-add-watch' and `file-notify-rm-watch'.
12335 (tramp-process-sentinel): Improve trace.
12336 (tramp-sh-handle-file-notify-add-watch)
12337 (tramp-sh-file-notify-process-filter)
12338 (tramp-sh-handle-file-notify-rm-watch)
12339 (tramp-get-remote-inotifywait): New defuns.
12340
12341 2013-07-03 Juri Linkov <juri@jurta.org>
12342
12343 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
12344 call of `occur-read-primary-args' to interactive spec.
12345
12346 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
12347 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
12348
12349 2013-07-03 Matthias Meulien <orontee@gmail.com>
12350
12351 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
12352 `Buffer-menu-multi-occur'. Add it to the menu.
12353 (Buffer-menu-mode): Document it in docstring.
12354 (Buffer-menu-multi-occur): New command. (Bug#14673)
12355
12356 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
12357
12358 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
12359 keywords and built-ins.
12360
12361 2013-07-03 Glenn Morris <rgm@gnu.org>
12362
12363 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
12364
12365 Make info-xref checks case-sensitive by default
12366 * info.el (Info-find-node, Info-find-in-tag-table)
12367 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
12368 Add option for exact case matching of nodes.
12369 * info-xref.el (info-xref): New custom group.
12370 (info-xref-case-fold): New option.
12371 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
12372
12373 2013-07-03 Leo Liu <sdl.web@gmail.com>
12374
12375 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
12376
12377 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
12378
12379 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
12380 middle of block statement initially, lower the depth. Remove
12381 FIXME comment, not longer valid. Remove middle of block statement
12382 detection, no need to do that anymore since we've been using
12383 `ruby-parse-region' here.
12384
12385 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
12386
12387 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
12388
12389 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
12390
12391 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
12392
12393 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
12394
12395 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
12396 (desktop-restore-in-current-display): New customization option.
12397 (desktop--excluded-frame-parameters): Add `font'.
12398 (desktop--save-frames): Rename from desktop--save-windows.
12399 (desktop--restore-in-this-display-p): New function.
12400 (desktop--make-full-frame): Remove unwanted width/height from
12401 full(width|height) frames.
12402 (desktop--restore-frames): Rename from desktop--restore-windows.
12403 Obey desktop-restore-current-display. Do not delete old frames or
12404 select a new frame unless we were able to restore at least one frame.
12405
12406 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
12407
12408 * files.el (find-file-noselect): Simplify conditional expression.
12409
12410 * textmodes/remember.el (remember-append-to-file):
12411 Don't mix `find-buffer-visiting' and `get-file-buffer'.
12412
12413 Add `remember-notes' function to store random notes across Emacs
12414 restarts.
12415 * textmodes/remember.el (remember-data-file): Add :set callback to
12416 affect notes buffer (if any).
12417 (remember-notes): New command.
12418 (remember-notes-buffer-name, bury-remember-notes-on-kill):
12419 New defcustoms for the `remember-notes' function.
12420 (remember-notes-save-and-bury-buffer): New command.
12421 (remember-notes-mode-map): New variable.
12422 (remember-mode): New minor mode.
12423 (remember-notes--kill-buffer-query): New function.
12424 * startup.el (initial-buffer-choice): Add notes to custom type.
12425
12426 2013-06-30 Eli Zaretskii <eliz@gnu.org>
12427
12428 * bindings.el (right-char, left-char): Don't call sit-for, this is
12429 no longer needed. Use arithmetic comparison only for numerical
12430 arguments.
12431
12432 * international/mule-cmds.el (select-safe-coding-system):
12433 Handle the case of FROM being a string correctly. (Bug#14755)
12434
12435 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12436
12437 * net/shr.el (shr-make-table-1): Add a sanity check that allows
12438 progression on degenerate tables.
12439 (shr-rescale-image): ImageMagick animated images currently don't work.
12440
12441 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
12442
12443 Some fixes and improvements for desktop frame restoration.
12444 It is still experimental and disabled by default.
12445 * desktop.el (desktop--save-windows): Put the selected frame at
12446 the head of the list.
12447 (desktop--make-full-frame): New function.
12448 (desktop--restore-windows): Try to re-select the frame that was
12449 selected upon saving. Do not abort if some frames fail to restore,
12450 just show an error message and continue. Set up maximized frames
12451 so they have default non-maximized dimensions.
12452
12453 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
12454
12455 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
12456 Don't start heredoc inside a string or comment.
12457
12458 2013-06-29 Eli Zaretskii <eliz@gnu.org>
12459
12460 * bindings.el (visual-order-cursor-movement): New defcustom.
12461 (right-char, left-char): Provide visual-order cursor motion by
12462 calling move-point-visually. Update the doc strings.
12463
12464 2013-06-28 Kenichi Handa <handa@gnu.org>
12465
12466 * international/mule.el (define-coding-system): New coding system
12467 properties :inhibit-null-byte-detection,
12468 :inhibit-iso-escape-detection, and :prefer-utf-8.
12469 (set-buffer-file-coding-system): If :charset-list property of
12470 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
12471 appropriate for setting.
12472
12473 * international/mule-cmds.el (select-safe-coding-system):
12474 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
12475 multibyte characters, return utf-8 (or one of its siblings).
12476
12477 * international/mule-conf.el (prefer-utf-8): New coding system.
12478 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
12479 files.
12480
12481 2013-06-28 Ivan Kanis <ivan@kanis.fr>
12482
12483 * net/shr.el (shr-render-region): New function.
12484
12485 * net/eww.el: Autoload `eww-browse-url'.
12486
12487 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
12488
12489 * emacs-lisp/package-x.el (package-upload-buffer-internal):
12490 Adapt to `package-desc-version' being a list.
12491 Use `package--ac-desc-version' to retrieve version from a package
12492 archive element.
12493
12494 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
12495
12496 New experimental feature to save&restore window and frame setup.
12497 * desktop.el (desktop-save-windows): New defcustom.
12498 (desktop--saved-states): New var.
12499 (desktop--excluded-frame-parameters): New defconst.
12500 (desktop--filter-frame-parms, desktop--find-frame-in-display)
12501 (desktop--restore-windows, desktop--save-windows): New functions.
12502 (desktop-save): Call `desktop--save-windows'.
12503 (desktop-read): Call `desktop--restore-windows'.
12504
12505 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
12506
12507 * net/shr.el (add-face-text-property): Remove compat definition.
12508
12509 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
12510
12511 * info.el (Info-try-follow-nearest-node): Move search for footnote
12512 above search for node name to prevent missing a footnote (bug#14717).
12513
12514 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
12515
12516 * obsolete/otodo-mode.el: Add obsolescence info to file header.
12517
12518 2013-06-27 Leo Liu <sdl.web@gmail.com>
12519
12520 * net/eww.el (eww-read-bookmarks): Check file size.
12521
12522 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
12523
12524 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
12525 advice--pending if newdef is nil or an autoload (bug#13820).
12526 (advice-mapc): New function.
12527
12528 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
12529
12530 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
12531 probably.
12532 (eww-mode-map): Add a menu bar.
12533 (eww-add-bookmark): New command.
12534 (eww-bookmark-mode): New mode and commands.
12535 (eww-add-bookmark): Remove newlines from the title.
12536 (eww-bookmark-browse): Don't bug out if it's the only window.
12537
12538 2013-06-26 Glenn Morris <rgm@gnu.org>
12539
12540 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
12541 (hfy-size): Handle ttys. (Bug#14668)
12542
12543 * info-xref.el: Update for Texinfo 5 change in *note format.
12544 (info-xref-node-re, info-xref-note-re): New constants.
12545 (info-xref-check-buffer): Use info-xref-note-re.
12546
12547 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
12548
12549 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
12550
12551 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
12552 nil terminate the loop (bug#14718).
12553
12554 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12555
12556 * net/eww.el: Rework history traversal. When going forward/back,
12557 put these actions into the history, too, so that they can be
12558 replayed.
12559 (eww-render): Move the history reset to the correct buffer.
12560
12561 2013-06-25 Juri Linkov <juri@jurta.org>
12562
12563 * files-x.el (modify-dir-local-variable): Change the header comment
12564 in the file with directory local variables. (Bug#14692)
12565
12566 * files-x.el (read-file-local-variable-value): Add `default'.
12567 (Bug#14710)
12568
12569 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12570
12571 * net/eww.el (eww-make-unique-file-name): Create a unique file
12572 name before saving to entering `y' accidentally asynchronously.
12573
12574 2013-06-25 Ivan Kanis <ivan@kanis.fr>
12575
12576 * net/eww.el (eww-download): New command and keystroke.
12577
12578 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12579
12580 * net/eww.el (eww-copy-page-url): Change name of command.
12581
12582 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
12583 be more consistent with Info and dired.
12584
12585 * net/eww.el (eww-mode-map): Ditto.
12586
12587 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12588
12589 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
12590 packages from archives.
12591 (package-archive-contents): Change format; include obsolete packages.
12592 (package-desc): Use `dir' to mark builtin packages.
12593 (package--from-builtin): Set the `dir' field to `builtin'.
12594 (generated-autoload-file, version-control): Declare.
12595 (package-compute-transaction): Change first arg and return value to be
12596 lists of package-descs. Adjust to new package-archive-contents format.
12597 (package--add-to-archive-contents): Adjust to new
12598 package-archive-contents format.
12599 (package-download-transaction): Arg is now a list of package-descs.
12600 (package-install): If `pkg' is a package name, pass it as
12601 a requirement, so it is subject to the usual (e.g. disabled) checks.
12602 (describe-package): Accept package-desc as well.
12603 (describe-package-1): Describe a specific package-desc. Add links to
12604 other package-descs for the same package name.
12605 (package-menu-describe-package): Pass the actual package-desc.
12606 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
12607 works correctly.
12608 (package-desc-status): New function.
12609 (package-menu--refresh): New function, extracted
12610 from package-menu--generate.
12611 (package-menu--generate): Use it.
12612 (package-delete): Update package-alist.
12613 (package-menu-execute): Don't call package-initialize.
12614
12615 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
12616 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
12617 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
12618 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
12619 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
12620 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
12621
12622 2013-06-25 Martin Rudalics <rudalics@gmx.at>
12623
12624 * window.el (window--state-get-1): Workaround for bug#14527.
12625 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
12626
12627 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
12628
12629 * net/eww.el (eww-back-url): Implement the history by stashing all
12630 the data into a list.
12631 (eww-forward-url): Allow going forward in the history, too.
12632
12633 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12634
12635 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
12636 for values and use read--expression for expressions (bug#14710).
12637 (read-file-local-variable): Avoid setq.
12638 (read-file-local-variable-mode): Use minor-mode-list.
12639
12640 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12641
12642 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
12643 for DOI URLs.
12644
12645 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12646
12647 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
12648 Update imenu-support when dialect changes.
12649
12650 2013-06-25 Leo Liu <sdl.web@gmail.com>
12651
12652 * ido.el (ido-read-internal): Allow forward slash on windows.
12653
12654 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
12655
12656 * net/eww.el (eww): Start of strings is \\`, not ^.
12657
12658 2013-06-24 Ivan Kanis <ivan@kanis.fr>
12659
12660 * net/shr.el (shr-browse-url): Fix interactive spec.
12661
12662 * net/eww.el (eww): Add a trailing slash to domain names.
12663
12664 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
12665
12666 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
12667
12668 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
12669
12670 * net/shr.el (shr-browse-url): Use an external browser if given a
12671 prefix.
12672
12673 * net/eww.el (eww-external-browser): Move to shr.
12674
12675 2013-06-24 Ivan Kanis <ivan@kanis.fr>
12676
12677 * net/eww.el (eww): Work more correctly for file: URLs.
12678 (eww-detect-charset): Allow quoted charsets.
12679 (eww-yank-page-url): New command and keystroke.
12680
12681 2013-06-24 Daiki Ueno <ueno@gnu.org>
12682
12683 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
12684 file name of gpg executable.
12685 (epg-context-program): New function.
12686 (epg-context-home-directory): New function.
12687 (epg-context-set-program): New function.
12688 (epg-context-set-home-directory): New function.
12689 (epg--start): Use `epg-context-program' instead of
12690 'epg-gpg-program'.
12691 (epg--list-keys-1): Likewise.
12692
12693 2013-06-24 Leo Liu <sdl.web@gmail.com>
12694
12695 * ido.el (ido-read-internal): Fix bug#14620.
12696
12697 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
12698
12699 * faces.el (face-documentation): Simplify.
12700 (read-face-attribute, tty-find-type, x-resolve-font-name):
12701 Use `string-match-p'.
12702 (list-faces-display): Use `string-match-p'. Simplify.
12703 (face-spec-recalc): Check face to avoid face alias loops.
12704 (read-color): Use `string-match-p' and non-capturing parenthesis.
12705
12706 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
12707
12708 * net/shr.el (shr-rescale-image): Use the new
12709 :max-width/:max-height functionality.
12710
12711 2013-06-23 Ivan Kanis <ivan@kanis.fr>
12712
12713 * net/eww.el (eww-search-prefix): New variable.
12714 (eww): Use it.
12715 (eww-external-browser): New variable.
12716 (eww-mode-map): New keystroke.
12717 (eww-browse-with-external-browser): New command.
12718
12719 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
12720
12721 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
12722
12723 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
12724 Don't skip aligning the next header field when padding is 0;
12725 otherwise, field width is not respected unless the title is as
12726 wide as the field.
12727
12728 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
12729
12730 * emacs-lisp/package.el (package-el-version): Remove.
12731 (package-process-define-package): Fix inf-loop.
12732 (package-install): Allow symbols as arguments again.
12733
12734 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
12735
12736 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
12737 add some more keyword-like methods.
12738 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
12739
12740 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
12741
12742 * bs.el (bs-buffer-show-mark): Make defvar-local.
12743 (bs-mode): Use setq-local.
12744
12745 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
12746 (emacs-lock--try-unlocking): Make defvar-local.
12747
12748 2013-06-22 Glenn Morris <rgm@gnu.org>
12749
12750 * play/cookie1.el (cookie-apropos): Minor simplification.
12751
12752 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
12753
12754 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
12755
12756 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
12757 `regexp-opt', it breaks the build during dumping.
12758
12759 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
12760
12761 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
12762 Highlight keyword-like methods on Kernel and Module with
12763 font-lock-builtin-face.
12764 (auto-mode-alist): Consolidate different entries into one regexp
12765 and add more *file-s.
12766
12767 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
12768
12769 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
12770
12771 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
12772 (diary-entry): Use it in the action of this button type instead of
12773 diary-goto-entry.
12774
12775 * calendar/todo-mode.el: New version.
12776 (todo-add-category): Append new category to end of file and give
12777 it the highest number, instead of putting it at the beginning and
12778 giving it 0. Incorporate noninteractive functionality.
12779 (todo-forward-category): Adapt to 1-based category numbering.
12780 Allow skipping over archived categories.
12781 (todo-backward-category): Derive from todo-forward-category.
12782 (todo-backward-item, todo-forward-item): Make noninteractive and
12783 delegate interactive part to new commands. Make sensitive to done items.
12784 (todo-categories): Make value an alist of category names and
12785 vectors of item counts.
12786 (todo-category-beg): Make a defconst.
12787 (todo-category-number): Use 1 instead of 0 as initial value.
12788 (todo-category-select): Make sensitive to overlays, optional item
12789 highlighting and done items.
12790 (todo-delete-item): Make sensitive to overlays and marked and done items.
12791 (todo-edit-item): Make sensitive to overlays and editing of
12792 date/time header optional. Add format checks.
12793 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
12794 no-op if point is not on an item. Advertise using todo-edit-quit.
12795 (todo-edit-mode): Make sensitive to new format, font-locking, and
12796 multiple todo files.
12797 (todo-insert-item, todo-insert-item-here): Derive from
12798 todo-basic-insert-item and extend functionality.
12799 (todo-item-end, todo-item-start): Make sensitive to done items.
12800 (todo-item-string): Don't return text properties. Restore point.
12801 (todo-jump-to-category): Make sensitive to multiple todo files and
12802 todo archives. Use extended category completion.
12803 (todo-lower-item, todo-raise-item): Rename to *-priority and
12804 derive from todo-set-item-priority.
12805 (todo-mode): Derive from special-mode. Make sensitive to new
12806 format, font-locking and multiple todo files. Make read-only.
12807 (todo-mode-map): Don't suppress digit keys, so they can supply
12808 prefix arguments. Add many new key bindings.
12809 (todo-prefix): Insert as an overlay instead of file text.
12810 Change semantics from diary date expression to purely visual mark.
12811 (todo-print): Rename to todo-print-buffer. Make buffer display
12812 features printable. Remove option to restrict number of items
12813 printed. Add option to print to file.
12814 (todo-print-function): Rename to todo-print-buffer-function.
12815 (todo-quit): Extend to handle exiting new todo modes.
12816 (todo-remove-item): Make sensitive to overlays.
12817 (todo-save): Extend to buffers of filtered items.
12818 (todo-show): Make sensitive to done items, multiple todo files and
12819 new todo modes. Offer to convert legacy todo file before creating
12820 first new todo file.
12821 (todo-show-priorities): Rename to todo-top-priorities.
12822 Change semantics of value 0.
12823 (todo-top-priorities): Rename to todo-filter-top-priorities,
12824 derive from todo-filter-items and extend functionality.
12825 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
12826 and extend functionality to other types of filtered items.
12827 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
12828 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
12829 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
12830 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
12831 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
12832 (todo-edit-mode-hook, todo-entry-prefix-function)
12833 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
12834 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
12835 (todo-initials, todo-insert-threshold, todo-item-string-start)
12836 (todo-line-string, todo-menu, todo-mode-hook)
12837 (todo-more-important-p, todo-previous-answer, todo-previous-line)
12838 (todo-print-priorities, todo-remove-separator)
12839 (todo-save-top-priorities-too, todo-string-count-lines)
12840 (todo-string-multiline-p, todo-time-string-format)
12841 (todo-tmp-buffer-name): Remove.
12842 (todo-add-file, todo-archive-done-item, todo-choose-archive)
12843 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
12844 (todo-edit-category-diary-inclusion)
12845 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
12846 (todo-edit-file, todo-edit-item-date-day)
12847 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
12848 (todo-edit-item-date-month, todo-edit-item-date-to-today)
12849 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
12850 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
12851 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
12852 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
12853 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
12854 (todo-filter-top-priorities-multifile, todo-find-archive)
12855 (todo-find-filtered-items-file, todo-go-to-source-item)
12856 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
12857 (todo-jump-to-archive-category, todo-lower-category)
12858 (todo-mark-category, todo-marked-item-p, todo-merge-category)
12859 (todo-move-category, todo-move-item, todo-next-button)
12860 (todo-next-item, todo-padded-string, todo-powerset)
12861 (todo-previous-button, todo-previous-item)
12862 (todo-print-buffer-to-file, todo-raise-category)
12863 (todo-rename-category, todo-repair-categories-sexp, todo-search)
12864 (todo-set-category-number, todo-set-item-priority)
12865 (todo-set-top-priorities-in-category)
12866 (todo-set-top-priorities-in-file, todo-show-categories-table)
12867 (todo-sort-categories-alphabetically-or-numerically)
12868 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
12869 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
12870 (todo-toggle-item-header, todo-toggle-item-highlighting)
12871 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
12872 (todo-toggle-view-done-items, todo-toggle-view-done-only)
12873 (todo-unarchive-items, todo-unmark-category): New commands.
12874 (todo-absolute-file-name, todo-add-to-buffer-list)
12875 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
12876 (todo-basic-insert-item, todo-category-completions)
12877 (todo-category-number, todo-category-string-matcher-1)
12878 (todo-category-string-matcher-2, todo-check-filtered-items-file)
12879 (todo-check-format, todo-clear-matches)
12880 (todo-comment-string-matcher, todo-convert-legacy-date-time)
12881 (todo-current-category, todo-date-string-matcher)
12882 (todo-define-insertion-command, todo-diary-expired-matcher)
12883 (todo-diary-goto-entry, todo-diary-item-p)
12884 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
12885 (todo-display-categories, todo-display-sorted, todo-done-item-p)
12886 (todo-done-item-section-p, todo-done-separator)
12887 (todo-done-string-matcher, todo-files, todo-filter-items)
12888 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
12889 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
12890 (todo-insert-category-line, todo-insert-item-from-calendar)
12891 (todo-insert-sort-button, todo-insert-with-overlays)
12892 (todo-insertion-command-name, todo-insertion-key-bindings)
12893 (todo-label-to-key, todo-longest-category-name-length)
12894 (todo-make-categories-list, todo-mode-external-set)
12895 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
12896 (todo-modes-set-3, todo-multiple-filter-files)
12897 (todo-nondiary-marker-matcher, todo-prefix-overlays)
12898 (todo-read-category, todo-read-date, todo-read-dayname)
12899 (todo-read-file-name, todo-read-time)
12900 (todo-reevaluate-category-completions-files-defcustom)
12901 (todo-reevaluate-default-file-defcustom)
12902 (todo-reevaluate-filelist-defcustoms)
12903 (todo-reevaluate-filter-files-defcustom)
12904 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
12905 (todo-reset-done-separator, todo-reset-done-separator-string)
12906 (todo-reset-done-string, todo-reset-global-current-todo-file)
12907 (todo-reset-highlight-item, todo-reset-nondiary-marker)
12908 (todo-reset-prefix, todo-set-categories)
12909 (todo-set-date-from-calendar, todo-set-show-current-file)
12910 (todo-set-top-priorities, todo-short-file-name)
12911 (todo-show-current-file, todo-sort, todo-time-string-matcher)
12912 (todo-total-item-counts, todo-update-buffer-list)
12913 (todo-update-categories-display, todo-update-categories-sexp)
12914 (todo-update-count, todo-validate-name, todo-y-or-n-p):
12915 New functions.
12916 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
12917 New major modes.
12918 (todo-categories, todo-display, todo-edit, todo-faces)
12919 (todo-filtered): New defgroups.
12920 (todo-archived-only, todo-button, todo-category-string, todo-date)
12921 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
12922 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
12923 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
12924 (todo-add-item-if-new-category, todo-always-add-time-string)
12925 (todo-categories-align, todo-categories-archived-label)
12926 (todo-categories-category-label, todo-categories-diary-label)
12927 (todo-categories-done-label, todo-categories-number-separator)
12928 (todo-categories-todo-label, todo-categories-totals-label)
12929 (todo-category-completions-files, todo-completion-ignore-case)
12930 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
12931 (todo-done-separator-string, todo-done-string)
12932 (todo-files-function, todo-filter-done-items, todo-filter-files)
12933 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
12934 (todo-initial-category, todo-initial-file, todo-item-mark)
12935 (todo-legacy-date-time-regexp, todo-mode-line-function)
12936 (todo-nondiary-marker, todo-number-prefix)
12937 (todo-print-buffer-function, todo-show-current-file)
12938 (todo-show-done-only, todo-show-first, todo-show-with-done)
12939 (todo-skip-archived-categories, todo-top-priorities-overrides)
12940 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
12941 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
12942 New defcustoms.
12943 (todo-category-done, todo-date-pattern, todo-date-string-start)
12944 (todo-diary-items-buffer, todo-done-string-start)
12945 (todo-filtered-items-buffer, todo-item-start)
12946 (todo-month-abbrev-array, todo-month-name-array)
12947 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
12948 (todo-top-priorities-buffer): New defconsts.
12949 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
12950 (todo-categories-with-marks, todo-category-string-face)
12951 (todo-comment-face, todo-comment-string, todo-current-todo-file)
12952 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
12953 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
12954 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
12955 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
12956 (todo-font-lock-keywords, todo-global-current-todo-file)
12957 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
12958 (todo-insertion-commands-args)
12959 (todo-insertion-commands-args-genlist)
12960 (todo-insertion-commands-names, todo-insertion-map)
12961 (todo-key-bindings-t, todo-key-bindings-t+a)
12962 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
12963 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
12964 (todo-nondiary-face, todo-print-buffer, todo-time-face)
12965 (todo-visited): New variables.
12966
12967 2013-06-21 Glenn Morris <rgm@gnu.org>
12968
12969 * play/cookie1.el (cookie-apropos): Add optional display argument.
12970 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
12971 (psychoanalyze-pinhead): Use cookie-doctor.
12972
12973 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
12974
12975 * emacs-lisp/package.el (tar-get-file-descriptor)
12976 (tar--extract): Declare.
12977
12978 2013-06-21 Eduard Wiebe <usenet@pusto.de>
12979
12980 Extend flymake's warning predicate to be a function (bug#14217).
12981 * progmodes/flymake.el (flymake-warning-predicate): New.
12982 (flymake-parse-line): Use it.
12983 (flymake-warning-re): Make obsolete alias to
12984 `flymake-warning-predicate'.
12985
12986 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12987
12988 * emacs-lisp/package.el (package-alist): Include obsolete packages.
12989 (package-obsolete-list): Remove.
12990 (package-activate): Remove min-version argument. Add `force' argument.
12991 Adjust to new package-alist format.
12992 (package-mark-obsolete): Remove.
12993 (package-unpack): Force reload of the package's autoloads.
12994 (package-installed-p): Check builtins if the installed package is not
12995 recent enough.
12996 (package-initialize): Don't reset package-obsolete-list.
12997 Don't specify which package version to activate.
12998 (package-process-define-package, describe-package-1)
12999 (package-menu--generate): Adjust to new package-alist format.
13000
13001 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
13002
13003 * allout-widgets.el (allout-widgets-mode-off)
13004 (allout-widgets-mode-on, allout-widgets-pre-command-business)
13005 (allout-widgets-post-command-business)
13006 (allout-widgets-after-copy-or-kill-function)
13007 (allout-widgets-after-undo-function, allout-test-range-overlaps)
13008 (allout-decorate-item-and-context)
13009 (allout-graphics-modification-handler): Fix typos in docstrings.
13010 (allout-get-or-create-parent-widget): Use `looking-at-p'.
13011
13012 * cmuscheme.el (scheme-start-file): Doc fix.
13013 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
13014 (scheme-input-filter): Use `string-match-p'.
13015
13016 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
13017
13018 * dired-x.el: Use Dired consistently in docstrings.
13019
13020 * dired.el: Use Dired consistently in docstrings.
13021 (dired-readin, dired-mode): Use `setq-local'.
13022 (dired-switches-alist): Make defvar-local.
13023 (dired-buffers-for-dir): Use `zerop'.
13024 (dired-safe-switches-p, dired-switches-escape-p)
13025 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
13026 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
13027 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
13028 (dired-goto-next-nontrivial-file): Use `string-match-p'.
13029 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
13030 (dired-toggle-marks, dired-mark-files-containing-regexp)
13031 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
13032 (dired-flag-auto-save-files, dired-flag-backup-files):
13033 Use `looking-at-p'.
13034 (dired-mark-files-regexp, dired-build-subdir-alist):
13035 Use `string-match-p', `looking-at-p'.
13036
13037 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
13038 (direct-print-region-helper): Use `string-match-p'.
13039
13040 2013-06-21 Leo Liu <sdl.web@gmail.com>
13041
13042 * comint.el (comint-redirect-results-list-from-process):
13043 Fix infinite loop.
13044
13045 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
13046
13047 * net/eww.el (eww-update-header-line-format): Quote % characters.
13048
13049 2013-06-21 Glenn Morris <rgm@gnu.org>
13050
13051 * play/cookie1.el (cookie): New custom group.
13052 (cookie-file): New option.
13053 (cookie-check-file): New function.
13054 (cookie): Make it interactive. Make start and end messages optional.
13055 Interactively, display the result. Default to cookie-file.
13056 (cookie-insert): Default to cookie-file.
13057 (cookie-snarf): Make start and end messages optional.
13058 Default to cookie-file. Use with-temp-buffer.
13059 (cookie-read): Rename from read-cookie.
13060 Make start and end messages optional. Default to cookie-file.
13061 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
13062 Do not autoload it.
13063 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
13064 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
13065
13066 2013-06-21 Leo Liu <sdl.web@gmail.com>
13067
13068 * progmodes/octave.el (octave-mode): Backward compatibility fix.
13069
13070 2013-06-21 Glenn Morris <rgm@gnu.org>
13071
13072 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
13073
13074 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13075 Daniel Hackney <dan@haxney.org>
13076
13077 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
13078 Consolidate the single-file vs tarball code.
13079 (package-desc-suffix): New function.
13080 (package-desc-full-name): Don't bother inlining it.
13081 (package-load-descriptor): Return the new package-desc.
13082 (package-mark-obsolete): Remove unused arg `package'.
13083 (package-unpack): Make it work for single files as well.
13084 Make it update package-alist.
13085 (package--make-autoloads-and-stuff): Rename from
13086 package--make-autoloads-and-compile. Don't compile any more.
13087 (package--compile): New function.
13088 (package-generate-description-file): New function, extracted from
13089 package-unpack-single.
13090 (package-unpack-single): Remove.
13091 (package--with-work-buffer): Add indentation and debugging info.
13092 (package-download-single): Remove.
13093 (package-install-from-archive): Rename from package-download-tar, make
13094 it take a pkg-desc, and make it work for single files as well.
13095 (package-download-transaction): Simplify.
13096 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
13097 external tar program.
13098 (package-install-from-buffer): Remove `pkg-desc' argument.
13099 Use package-tar-file-info for tar-mode buffers.
13100 (package-install-file): Simplify accordingly.
13101 (package-archive-base): Change to take a pkg-desc.
13102 * tar-mode.el (tar--check-descriptor): New function, extracted from
13103 tar-get-descriptor.
13104 (tar-get-descriptor): Use it.
13105 (tar-get-file-descriptor): New function.
13106 (tar--extract): New function, extracted from tar-extract.
13107 (tar--extract): Use it.
13108 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
13109 case the summary uses non-ascii. Adjust to new calling convention of
13110 package-tar-file-info.
13111
13112 2013-06-21 Leo Liu <sdl.web@gmail.com>
13113
13114 * comint.el (comint-redirect-results-list-from-process):
13115 Fix random delay. (Bug#14681)
13116
13117 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
13118
13119 * profiler.el (profiler-format-number): Use log, not log10.
13120
13121 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
13122
13123 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
13124
13125 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
13126
13127 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
13128 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
13129 yet available.
13130 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
13131 (AUTOGENEL): ... here.
13132 * emacs-lisp/cl-macs.el (cl--sublis): New function.
13133 (cl--defsubst-expand): Use it.
13134
13135 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
13136
13137 * subr.el (log10): Move here from C code, and declare as obsolete.
13138 All uses of (log10 X) replaced with (log X 10).
13139
13140 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
13141
13142 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
13143 Declare with `defvar-local'.
13144 (tabulated-list-use-header-line, tabulated-list-entries)
13145 (tabulated-list-padding, tabulated-list-printer)
13146 (tabulated-list-sort-key): Declare with `defvar-local'.
13147 (tabulated-list-init-header, tabulated-list-print-fake-header):
13148 Use `setq-local'.
13149
13150 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
13151
13152 * arc-mode.el (archive-mode): Add `archive-write-file' to
13153 `write-contents-functions' also for remote files. (Bug#14652)
13154
13155 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
13156
13157 * cus-edit.el (custom-commands): Fix typos.
13158 (custom-display): Fix tooltip text.
13159 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
13160 Fix typos in docstrings.
13161 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
13162 (custom-unlispify-menu-entry, custom-magic-value-create)
13163 (custom-add-see-also, custom-group-value-create): Use ?\s.
13164 (custom-guess-type, customize-apropos, editable-field)
13165 (custom-face-value-create): Use `string-match-p'.
13166 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
13167
13168 * custom.el (custom-load-symbol): Use `string-match-p'.
13169
13170 * ansi-color.el: Convert to lexical binding.
13171 (ansi-colors): Fix URL.
13172 (ansi-color-context, ansi-color-context-region): Use defvar-local.
13173 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
13174 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
13175
13176 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13177
13178 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
13179
13180 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
13181
13182 2013-06-19 Tom Tromey <tromey@redhat.com>
13183
13184 * net/eww.el (eww-top-url): Remove.
13185 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
13186 (eww-render): Set new variables. Don't set eww-top-url.
13187 (eww-handle-link): Handle "prev", "home", and "contents".
13188 Downcase the rel text.
13189 (eww-top-url): Choose best top URL.
13190
13191 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13192
13193 * net/eww.el: Rewrite to implement form elements "by hand" instead of
13194 relying in widget.el. Using widget.el leads to too many
13195 user interface inconsistencies.
13196 (eww-self-insert): Implement entering commands in text fields.
13197 (eww-process-text-input): New function to make text input field editing
13198 work.
13199 (eww-submit): Rewrite to use the new-style form methods.
13200 (eww-select-display): Display the correct selected item.
13201 (eww-change-select): Implement changing the select value.
13202 (eww-toggle-checkbox): Implement radio/checkboxes.
13203 (eww-update-field): Fix compilation error.
13204 (eww-tag-textarea): Implement <textarea>.
13205
13206 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
13207 we don't shadow mode-specific bindings.
13208
13209 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
13210 nothing to push.
13211
13212 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
13213
13214 2013-06-19 Glenn Morris <rgm@gnu.org>
13215
13216 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
13217
13218 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
13219
13220 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
13221 not needed.
13222
13223 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
13224
13225 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13226
13227 * net/browse-url.el (browse-url-browser-function):
13228 `eww-browse-url' has the right calling signature, `eww' does not.
13229
13230 2013-06-19 Glenn Morris <rgm@gnu.org>
13231
13232 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
13233 Only eval autoloaded macros.
13234 (byte-compile-autoload): Only give the macro warning for macros.
13235
13236 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
13237 (ps-underlined-faces): Declare.
13238
13239 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
13240 (speedbar-add-supported-extension): Declare.
13241
13242 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
13243 Don't include a date stamp in the header of the generated file;
13244 it leads to needless differences between output files.
13245
13246 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
13247
13248 * net/secrets.el (secrets-struct-secret-content-type):
13249 Replace check of introspection data by a test call of "CreateItem".
13250 Some servers do not offer introspection.
13251
13252 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
13253
13254 * electric.el (electric-pair-mode): Improve interaction with
13255 electric-layout-mode.
13256 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
13257 (electric-pair-syntax): Use text-mode-syntax-table in comments
13258 and strings.
13259 (electric-pair--insert): New function.
13260 (electric-pair-post-self-insert-function): Use it and
13261 electric--after-char-pos.
13262
13263 2013-06-19 Leo Liu <sdl.web@gmail.com>
13264
13265 * progmodes/octave.el (octave-help): Fix regexp.
13266
13267 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
13268
13269 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
13270 (shr-table-horizontal-line): Allow nil as a value, and change the
13271 default.
13272 (shr-insert-table-ruler): Respect the nil value.
13273
13274 2013-06-18 Tom Tromey <tromey@barimba>
13275
13276 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
13277 New defvars.
13278 (eww-open-file): New defun.
13279 (eww-render): Initialize new variables.
13280 (eww-display-html): Handle "link" and "a".
13281 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
13282 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
13283 (eww-back-url): Rename from eww-previous-url.
13284 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
13285 New defuns.
13286
13287 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
13288
13289 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
13290 Distinguish ternary operator tokens from slash symbol and slash
13291 char literal.
13292
13293 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
13294
13295 Convert symbol prettification into minor mode and global minor mode.
13296
13297 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
13298 `prog-prettify-symbols', and make a local defvar instead of defcustom.
13299 (prettify-symbols--keywords): Rename from
13300 `prog-prettify-symbols-alist' and make a local defvar.
13301 (prettify-symbols--compose-symbol): Rename from
13302 `prog--prettify-font-lock-compose-symbol'.
13303 (prettify-symbols--make-keywords): Rename from
13304 `prog-prettify-font-lock-symbols-keywords' and simplify.
13305 (prog-prettify-install): Remove.
13306 (prettify-symbols-mode): New minor mode, based on
13307 `prog-prettify-install'.
13308 (turn-on-prettify-symbols-mode): New function.
13309 (global-prettify-symbols-mode): New globalized minor mode.
13310
13311 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13312 * progmodes/cfengine.el (cfengine3-mode):
13313 * progmodes/perl-mode.el (perl-mode): Don't call
13314 `prog-prettify-install'; set `prettify-symbols-alist' instead.
13315
13316 2013-06-18 Juri Linkov <juri@jurta.org>
13317
13318 * files-x.el (modify-file-local-variable-message): New function.
13319 (modify-file-local-variable)
13320 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
13321 and call `modify-file-local-variable-message' when it's non-nil.
13322 (add-file-local-variable, delete-file-local-variable)
13323 (add-file-local-variable-prop-line)
13324 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
13325 and use it. (Bug#9820)
13326
13327 2013-06-18 Juri Linkov <juri@jurta.org>
13328
13329 * emulation/vi.el (vi-shell-op):
13330 * emulation/vip.el (vip-execute-com, ex-command):
13331 * emulation/viper-cmd.el (viper-exec-bang):
13332 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
13333 the call of `shell-command-on-region'. (Bug#14637)
13334
13335 * simple.el (shell-command-on-region): Doc fix.
13336
13337 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
13338
13339 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
13340 (bug#14633).
13341
13342 2013-06-18 Glenn Morris <rgm@gnu.org>
13343
13344 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
13345
13346 * newcomment.el (comment-search-forward, comment-search-backward):
13347 Doc fix. (Bug#14376)
13348
13349 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
13350
13351 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
13352 (buffer-face-mode-invoke): Doc fix.
13353
13354 2013-06-18 Matthias Meulien <orontee@gmail.com>
13355
13356 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
13357 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
13358
13359 2013-06-18 Glenn Morris <rgm@gnu.org>
13360
13361 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
13362 Replace obsolete function generic-make-keywords with its expansion.
13363
13364 * progmodes/python.el (ffap-alist): Declare.
13365
13366 * textmodes/reftex.el (bibtex-mode-map): Declare.
13367
13368 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
13369
13370 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
13371 (package-unpack, package-unpack-single): Return the pkg-dir.
13372 (package-download-transaction): Use it to update package-alist.
13373
13374 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
13375
13376 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
13377 possible choice.
13378
13379 2013-06-17 Juri Linkov <juri@jurta.org>
13380
13381 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
13382
13383 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
13384
13385 * emacs-lisp/package.el (package-load-descriptor):
13386 Remove `with-syntax-table' call, `read' doesn't need it.
13387 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
13388
13389 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
13390
13391 * startup.el (command-line): Expand package name returned by
13392 `package--description-file' (bug#14639).
13393
13394 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
13395
13396 * emacs-lisp/package.el (package-load-descriptor): Do not call
13397 `emacs-lisp-mode', just use its syntax table.
13398
13399 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
13400
13401 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
13402 `font-lock-extra-managed-props' if any prettifying keyword is added.
13403 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
13404 (prog-mode): Use `setq-local'.
13405
13406 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
13407
13408 * international/characters.el (standard-case-table): Set syntax of ?»
13409 and ?« to punctuation.
13410
13411 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
13412
13413 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
13414 Save relevant match data before calling `syntax-ppss' (bug#14595).
13415
13416 2013-06-15 Juri Linkov <juri@jurta.org>
13417
13418 * files-x.el (modify-file-local-variable-prop-line): Add local
13419 variables to the end of the existing comment on the first line.
13420 Use `file-auto-mode-skip' to skip interpreter magic line,
13421 and also skip XML declaration.
13422
13423 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13424
13425 * startup.el (package--builtin-versions): New var.
13426 (package-subdirectory-regexp): Remove.
13427 (package--description-file): Hard code its value instead.
13428
13429 * emacs-lisp/package.el: Don't activate packages older than builtin.
13430 (package-obsolete-list): Rename from package-obsolete-alist, and make
13431 it into a simple list of package-desc.
13432 (package-strip-version): Remove.
13433 (package-built-in-p): Use package--builtin-versions.
13434 (package-mark-obsolete): Simplify.
13435 (package-process-define-package): Mark it obsolete if older than the
13436 builtin version.
13437 (package-handle-response): Use line-end-position.
13438 (package-read-archive-contents, package--download-one-archive):
13439 Simplify.
13440 (package--add-to-archive-contents): Skip if older than the builtin or
13441 installed version.
13442 (package-menu-describe-package): Fix last change.
13443 (package-list-unversioned): New var.
13444 (package-menu--generate): Use it.
13445
13446 * emacs-lisp/autoload.el: Manage package--builtin-versions.
13447 (autoload--insert-text, autoload--insert-cookie-text): New functions.
13448 (autoload-builtin-package-versions): New variable.
13449 (autoload-generate-file-autoloads): Use them.
13450 Remove the list of autoloaded functions/macros from the
13451 (autoload...) comments.
13452
13453 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
13454
13455 2013-06-15 Eli Zaretskii <eliz@gnu.org>
13456
13457 * simple.el (line-move-partial): Don't jump to the next screen
13458 line as soon as it becomes visible. Instead, continue enlarging
13459 the vscroll until the portion of a tall screen line that's left on
13460 display is about the height of the frame's default font.
13461 (Bug#14567)
13462
13463 2013-06-15 Glenn Morris <rgm@gnu.org>
13464
13465 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
13466 compilation-error-regexp-alist void, or local while let-bound.
13467
13468 * progmodes/make-mode.el (makefile-mode-syntax-table):
13469 Treat "=" as punctuation. (Bug#14614)
13470
13471 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
13472
13473 * help-fns.el (describe-variable):
13474 Add extra line for permanent-local variables.
13475
13476 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
13477
13478 * progmodes/scheme.el (scheme-font-lock-keywords-2):
13479 Add export, import, library. (Bug#9164)
13480 (library): Set indent function.
13481
13482 2013-06-14 Glenn Morris <rgm@gnu.org>
13483
13484 * term/xterm.el (xterm--query):
13485 Stop after first matching handler. (Bug#14615)
13486
13487 2013-06-14 Ivan Kanis <ivan@kanis.fr>
13488
13489 Add support for dired in saveplace.
13490 * dired.el (dired-initial-position-hook): New variable.
13491 (dired-initial-position): Call hook to place cursor position.
13492 * saveplace.el (save-place-to-alist): Add dired position.
13493 (save-place-dired-hook): New function.
13494
13495 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
13496
13497 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
13498 through a symbol rather than letrec.
13499
13500 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
13501 (package-desc): Add `dir' field.
13502 (package-desc-full-name): New function.
13503 (package-load-descriptor): Combine the two arguments. Don't use `load'.
13504 (package-maybe-load-descriptor): Remove.
13505 (package-load-all-descriptors): Just call package-load-descriptor.
13506 (package--disabled-p): New function.
13507 (package-desc-vers, package-desc-doc): Remove aliases.
13508 (package--dir): Remove function.
13509 (package-activate): Check if a package is disabled.
13510 (package-process-define-package): New function, extracted from
13511 define-package.
13512 (define-package): Turn into a place holder.
13513 (package-unpack-single, package-tar-file-info):
13514 Use package--description-file.
13515 (package-compute-transaction): Use package--disabled-p.
13516 (package-download-transaction): Don't call
13517 package-maybe-load-descriptor since they're all loaded anyway.
13518 (package-install): Change argument to be a pkg-desc.
13519 (package-delete): Use a single pkg-desc argument.
13520 (describe-package-1): Use package-desc-dir instead of package--dir.
13521 Use package-desc property instead of package-symbol.
13522 (package-install-button-action): Adjust accordingly.
13523 (package--push): Rewrite.
13524 (package-menu--print-info): Adjust accordingly. Change the ID format
13525 to be a pkg-desc.
13526 (package-menu-describe-package, package-menu-get-status)
13527 (package-menu--find-upgrades, package-menu-mark-upgrades)
13528 (package-menu-execute, package-menu--name-predicate):
13529 Adjust accordingly.
13530 * startup.el (package--description-file): New function.
13531 (command-line): Use it.
13532 * emacs-lisp/package-x.el (package-upload-buffer-internal):
13533 Use package-desc-version.
13534
13535 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
13536 (byte-compile-preprocess): Use it.
13537 (byte-compile-file-form-defalias): Try a bit harder to use macros we
13538 can't quite recognize.
13539 (byte-compile-add-to-list): Remove.
13540 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
13541 (cconv-closure-convert): Add assertion.
13542
13543 * emacs-lisp/map-ynp.el: Use lexical-binding.
13544 (map-y-or-n-p): Remove unused vars `tail' and `object'.
13545 Factor out some repeated code.
13546
13547 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13548
13549 * subr.el (with-eval-after-load): New macro.
13550 (eval-after-load): Allow form to be a function.
13551 take advantage of lexical-binding.
13552 (do-after-load-evaluation): Use dolist and adjust to new format.
13553 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
13554
13555 2013-06-13 Juri Linkov <juri@jurta.org>
13556
13557 * replace.el (perform-replace): Display "symbol " and other search
13558 modes from `isearch-message-prefix' in the *Help* buffer.
13559
13560 * isearch.el (isearch-query-replace): Add " symbol" and other
13561 possible search modes from `isearch-message-prefix' to the prompt.
13562 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
13563 when reading a regexp to collect.
13564
13565 2013-06-13 Juri Linkov <juri@jurta.org>
13566
13567 * isearch.el (word-search-regexp): Match whitespace if the search
13568 string begins or ends in whitespace. The LAX arg is applied to
13569 both ends of the search string. Use `regexp-quote' and explicit
13570 \< and \> instead of \b. Use \` and \' instead of ^ and $.
13571 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
13572 boundaries are replaced with symbol boundaries, and characters
13573 between symbols match non-word non-symbol syntax. (Bug#14602)
13574
13575 2013-06-13 Juri Linkov <juri@jurta.org>
13576
13577 * isearch.el (isearch-del-char): Don't exceed the length of
13578 `isearch-string' by the prefix arg. (Bug#14563)
13579
13580 2013-06-13 Juri Linkov <juri@jurta.org>
13581
13582 * isearch.el (isearch-yank-word, isearch-yank-line)
13583 (isearch-char-by-name, isearch-quote-char)
13584 (isearch-printing-char, isearch-process-search-char):
13585 Add optional count prefix arg. (Bug#14563)
13586
13587 * international/isearch-x.el
13588 (isearch-process-search-multibyte-characters):
13589 Add optional count prefix arg.
13590
13591 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13592
13593 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
13594 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
13595 lexical-binding.
13596
13597 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
13598
13599 * subr.el (set-temporary-overlay-map): Add on-exit argument.
13600
13601 2013-06-13 Glenn Morris <rgm@gnu.org>
13602
13603 * startup.el (tty-handle-args):
13604 Don't just discard "--" and anything after. (Bug#14608)
13605
13606 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
13607
13608 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
13609
13610 Implement changes in Secret Service API. Make it backward compatible.
13611 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
13612 (secrets-create-item): Use it. Prefix properties with interface.
13613
13614 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
13615
13616 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
13617 (term-emulate-terminal): Respect term-suppress-hard-newline.
13618
13619 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
13620
13621 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
13622 Only remove a `thumb-file' overlay. (Bug#14548)
13623
13624 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
13625
13626 * mail/reporter.el (reporter-submit-bug-report):
13627 Handle missing package-name. (Bug#14600)
13628
13629 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13630
13631 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
13632 (reftex-citation-prompt, reftex-default-bibliography)
13633 (reftex-bib-or-thebib, reftex-get-bibfile-list)
13634 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
13635 (reftex-bib-sort-author, reftex-bib-sort-year)
13636 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
13637 (reftex-extract-bib-entries-from-thebibliography)
13638 (reftex-get-bibkey-default, reftex-get-bib-names)
13639 (reftex-parse-bibtex-entry, reftex-get-bib-field)
13640 (reftex-format-bib-entry, reftex-parse-bibitem)
13641 (reftex-format-bibitem, reftex-do-citation)
13642 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
13643 (reftex-restrict-bib-matches, reftex-extract-bib-file)
13644 (reftex-insert-bib-matches, reftex-format-citation)
13645 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
13646 (reftex-create-bibtex-file): Add docstrings, mostly by converting
13647 existing comments into docstrings.
13648
13649 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
13650
13651 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
13652
13653 2013-06-12 Andreas Schwab <schwab@suse.de>
13654
13655 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
13656 for auto-save files.
13657
13658 2013-06-12 Glenn Morris <rgm@gnu.org>
13659
13660 * ido.el (ido-delete-ignored-files): Remove.
13661 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
13662 Go back to calling ido-ignore-item-p directly.
13663
13664 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
13665
13666 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
13667
13668 * ido.el (ido-delete-ignored-files): New function,
13669 split from ido-make-file-list-1.
13670 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
13671 (ido-make-file-list-1): Use ido-delete-ignored-files.
13672
13673 2013-06-12 Leo Liu <sdl.web@gmail.com>
13674
13675 * progmodes/octave.el (inferior-octave-startup)
13676 (inferior-octave-completion-table)
13677 (inferior-octave-track-window-width-change)
13678 (octave-eldoc-function-signatures, octave-help)
13679 (octave-find-definition): Use single quoted strings.
13680 (inferior-octave-startup-args): Change default value.
13681 (inferior-octave-startup): Do not hard code "-i" and
13682 "--no-line-editing".
13683 (inferior-octave-resync-dirs): Add optional arg NOERROR.
13684 (inferior-octave-directory-tracker): Use it.
13685 (octave-goto-function-definition): Robustify.
13686 (octave-help): Support highlighting operators in 'See also'.
13687 (octave-find-definition): Find subfunctions only in Octave mode.
13688
13689 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
13690
13691 * help-fns.el (help-fns--compiler-macro): If the handler function is
13692 named, then put a link to it.
13693 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
13694 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
13695 (cl-typep): Use it.
13696 (cl-eval-when): Simplify debug spec.
13697 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
13698 compiler-macro function instead of setting `compiler-macro-file'.
13699
13700 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
13701
13702 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
13703 * vc/vc-hooks.el (vc-stay-local): Doc fix.
13704
13705 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
13706 Daniel Hackney <dan@haxney.org>
13707
13708 First part of Daniel Hackney's patch to package.el.
13709 * emacs-lisp/package.el: Use defstruct.
13710 (package-desc): New, main struct.
13711 (package--bi-desc, package--ac-desc): New structs, used to describe the
13712 format in external files.
13713 (package-desc-vers): Replace with package-desc-version accessor.
13714 (package-desc-doc): Replace with package-desc-summary accessor.
13715 (package-activate-1): Remove `package' arg since the pkg-vec now
13716 includes the name.
13717 (define-package): Use package-desc-from-define.
13718 (package-unpack-single): Change file-name arg to be a symbol.
13719 (package--add-to-archive-contents): Use package-desc-create and new
13720 accessor functions to package--ac-desc.
13721 (package-buffer-info, package-tar-file-info): Return a package-desc.
13722 (package-install-from-buffer): Remove `type' argument. Change pkg-info
13723 arg to be a package-desc.
13724 (package-install-file): Adjust accordingly. Use \' to match EOS.
13725 (package--from-builtin): New function.
13726 (describe-package-1, package-menu--generate): Use it.
13727 (package--make-autoloads-and-compile): Change name arg to be a symbol.
13728 (package-generate-autoloads): Idem and return the name of the file.
13729 * emacs-lisp/package-x.el (package-upload-buffer-internal):
13730 Change pkg-info arg to be a package-desc.
13731 Use package-make-ac-desc.
13732 (package-upload-file): Use \' to match EOS.
13733 * finder.el (finder-compile-keywords): Use package-make-builtin.
13734
13735 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13736
13737 * vc/vc.el (vc-deduce-fileset): Change error message.
13738 (vc-read-backend): New function.
13739 (vc-next-action): Use it.
13740
13741 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
13742
13743 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
13744 (prolog-font-lock-keywords): Use regexp-opt instead.
13745 Don't manually highlight strings.
13746 (prolog-mode-variables): Simplify comment-start-skip.
13747 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
13748
13749 * emacs-lisp/generic.el (generic--normalise-comments)
13750 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
13751 (generic-mode-set-comments): Use them.
13752 (generic-bracket-support): Use setq-local.
13753 (generic-make-keywords-list): Declare obsolete.
13754
13755 2013-06-11 Glenn Morris <rgm@gnu.org>
13756
13757 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13758 Prettify after setting font-lock-defaults. (Bug#14574)
13759
13760 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
13761
13762 * replace.el (query-replace, occur-read-regexp-defaults-function)
13763 (replace-search):
13764 * subr.el (declare-function, number-sequence, local-set-key)
13765 (substitute-key-definition, locate-user-emacs-file)
13766 (with-silent-modifications, split-string, eval-after-load):
13767 Fix typos, remove unneeded backslashes and reflow some docstrings.
13768
13769 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13770
13771 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
13772 default for Elisp files.
13773
13774 2013-06-11 Glenn Morris <rgm@gnu.org>
13775
13776 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
13777 although define-derived-mode was doing this anyway. (Bug#14583)
13778
13779 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
13780
13781 * allout.el (allout-encryption-plaintext-sanitization-regexps):
13782 Fix make-variable-buffer-local call to refer to the correct variable.
13783
13784 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
13785
13786 * eshell/em-term.el (eshell-visual-commands)
13787 (eshell-visual-subcommands, eshell-visual-options):
13788 Add summary line to docstrings. Add cross-references.
13789
13790 2013-06-10 Glenn Morris <rgm@gnu.org>
13791
13792 * epa.el (epa-read-file-name): New function. (Bug#14510)
13793 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
13794
13795 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
13796
13797 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
13798 output redirection to be ignored with visual commands.
13799
13800 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
13801
13802 * eshell/em-term.el (eshell-visual-command-p): New function.
13803 (eshell-term-initialize): Move long lambda to separate function
13804 eshell-visual-command-p.
13805 * eshell/em-dirs.el (eshell-dirs-initialize):
13806 * eshell/em-script.el (eshell-script-initialize):
13807 Add missing #' to lambda.
13808
13809 2013-06-08 Leo Liu <sdl.web@gmail.com>
13810
13811 * progmodes/octave.el (octave-add-log-current-defun): New function.
13812 (octave-mode): Set add-log-current-defun-function.
13813 (octave-goto-function-definition): Do not move point if not found.
13814 (octave-find-definition): Enhance to try subfunctions first.
13815
13816 2013-06-08 Glenn Morris <rgm@gnu.org>
13817
13818 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13819 (byte-compile-backward-char, byte-compile-backward-word):
13820 Improve previous change, to handle non-explicit nil.
13821
13822 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
13823
13824 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
13825 (smie--opener/closer-at-point): New function.
13826 (smie--matching-block-data): Use it. Don't match from right after an
13827 opener or right before a closer. Obey smie-blink-matching-inners.
13828 Don't signal a mismatch for repeated inners like "switch..case..case".
13829
13830 2013-06-07 Leo Liu <sdl.web@gmail.com>
13831
13832 * progmodes/octave.el (octave-mode): Set comment-use-global-state
13833 to t. (Bug#14303)
13834 (octave-function-header-regexp): Fix. (Bug#14570)
13835 (octave-help-mode-finish-hook, octave-help-mode-finish):
13836 Remove. Just use temp-buffer-show-hook.
13837
13838 * newcomment.el (comment-search-backward): Revert last change.
13839 (Bug#14434)
13840
13841 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
13842
13843 2013-06-07 Eli Zaretskii <eliz@gnu.org>
13844
13845 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
13846 through xargs, to avoid failure due to MS-Windows limitations on
13847 command-line length.
13848
13849 2013-06-06 Glenn Morris <rgm@gnu.org>
13850
13851 * font-lock.el (lisp-font-lock-keywords-2):
13852 Treat user-error like error.
13853
13854 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13855 (byte-compile-backward-char, byte-compile-backward-word):
13856 Handle explicit nil arguments. (Bug#14565)
13857
13858 2013-06-05 Alan Mackenzie <acm@muc.de>
13859
13860 * isearch.el (isearch-allow-prefix): New user option.
13861 (isearch-other-meta-char): Don't exit isearch when a prefix
13862 argument is typed whilst `isearch-allow-prefix' is non-nil.
13863 (Bug#9706)
13864
13865 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13866
13867 * autorevert.el (auto-revert-notify-handler): Use memq.
13868 Hide assertion failure.
13869
13870 * skeleton.el: Use cl-lib.
13871 (skeleton-further-elements): Use defvar-local.
13872 (skeleton-insert): Use cl-progv.
13873
13874 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13875
13876 * progmodes/prog-mode.el (prog-prettify-symbols)
13877 (prog-prettify-install): Update docstrings.
13878
13879 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13880
13881 * simple.el: Move all the prog-mode code to prog-mode.el.
13882 * progmodes/prog-mode.el: New file.
13883 * loadup.el: Add prog-mode.el.
13884
13885 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13886
13887 * simple.el (prog-prettify-symbols): Add version.
13888 (prog-prettify-install): Add convenience function to prettify symbols.
13889
13890 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
13891 (perl--augmented-font-lock-keywords-1)
13892 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
13893 variables and use it.
13894
13895 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
13896 (cfengine3-mode): Remove unneeded variable and use it.
13897
13898 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
13899 (lisp--augmented-font-lock-keywords-1)
13900 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
13901 Remove unneeded variables and use it.
13902
13903 2013-06-05 João Távora <joaotavora@gmail.com>
13904
13905 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
13906 to point when opening the connection. (Bug#14380)
13907
13908 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13909
13910 * subr.el (load-history-regexp, load-history-filename-element)
13911 (eval-after-load, after-load-functions, do-after-load-evaluation)
13912 (eval-next-after-load, display-delayed-warnings)
13913 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
13914 definition of save-match-data.
13915 (overriding-local-map): Remove accidental obsolescence declaration.
13916
13917 * emacs-lisp/edebug.el (edebug-result): Move before first use.
13918
13919 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13920
13921 Generalize symbol prettify support to prog-mode and implement it
13922 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
13923 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
13924 (prog--prettify-font-lock-compose-symbol)
13925 (prog-prettify-font-lock-symbols-keywords): New variables and
13926 functions to support symbol prettification.
13927 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
13928 (lisp--augmented-font-lock-keywords-1)
13929 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
13930 (lisp--prettify-symbols-alist): Implement prettify of lambda.
13931 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
13932 (cfengine3--prettify-symbols-alist, cfengine3-mode):
13933 Implement prettify of -> => :: strings.
13934 * progmodes/perl-mode.el (perl-prettify-symbols)
13935 (perl--font-lock-compose-symbol)
13936 (perl--font-lock-symbols-keywords): Move to prog-mode.
13937 (perl--prettify-symbols-alist): Prettify -> => :: strings.
13938 (perl-font-lock-keywords-1)
13939 (perl-font-lock-keywords-2): Remove explicit prettify support.
13940 (perl--augmented-font-lock-keywords)
13941 (perl--augmented-font-lock-keywords-1)
13942 (perl--augmented-font-lock-keywords-2, perl-mode):
13943 Implement prettify support.
13944
13945 2013-06-05 Leo Liu <sdl.web@gmail.com>
13946
13947 Re-implement SMIE matching block highlight using
13948 show-paren-data-function. (Bug#14395)
13949 * emacs-lisp/smie.el (smie-matching-block-highlight)
13950 (smie--highlight-matching-block-overlay)
13951 (smie--highlight-matching-block-lastpos)
13952 (smie-highlight-matching-block)
13953 (smie-highlight-matching-block-mode): Remove.
13954 (smie--matching-block-data-cache): New variable.
13955 (smie--matching-block-data): New function.
13956 (smie-setup): Use smie--matching-block-data for
13957 show-paren-data-function.
13958
13959 * progmodes/octave.el (octave-mode-menu): Fix.
13960 (octave-find-definition): Skip garbage lines.
13961
13962 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13963
13964 Fix compilation error with simultaneous dynamic+lexical scoping.
13965 Add warning when a defvar appears after the first let-binding.
13966 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
13967 (byte-compile-close-variables): Initialize it.
13968 (byte-compile--declare-var): New function.
13969 (byte-compile-file-form-defvar)
13970 (byte-compile-file-form-define-abbrev-table)
13971 (byte-compile-file-form-custom-declare-variable): Use it.
13972 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
13973 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
13974 (byte-compile-bind): Handle dynamic bindings that shadow
13975 lexical bindings.
13976 (byte-compile-unbind): Make arg non-optional.
13977 (byte-compile-let): Simplify.
13978 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
13979 (cconv--analyse-function, cconv-analyse-form): Populate it.
13980 Protect byte-compile-bound-variables to limit the scope of defvars.
13981 (cconv-analyse-form): Add missing rule for (defvar <foo>).
13982 Remove unneeded rule for `declare'.
13983
13984 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
13985 so as to avoid depending on cl-adjoin at run-time.
13986 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
13987
13988 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
13989 (macroexp--warn-and-return): Use it.
13990
13991 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13992
13993 * subr.el: Convert to lexical binding.
13994 (overriding-local-map): Make obsolete.
13995 (add-to-list): Doc fix. Add compiler macro.
13996 (read-key): Swap values of local maps.
13997
13998 2013-06-05 Leo Liu <sdl.web@gmail.com>
13999
14000 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
14001
14002 2013-06-04 Leo Liu <sdl.web@gmail.com>
14003
14004 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
14005 (compilation-auto-jump): Suppress the "Mark set" message to give
14006 way to exit message.
14007
14008 2013-06-04 Alan Mackenzie <acm@muc.de>
14009
14010 Remove faulty optimisation from indentation calculation.
14011 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
14012 search limit based on 2000 characters back from indent-point.
14013
14014 2013-06-03 Tassilo Horn <tsdh@gnu.org>
14015
14016 * eshell/em-term.el (cl-lib): Require `cl-lib'.
14017
14018 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
14019
14020 * emacs-lisp/lisp.el: Use lexical-binding.
14021 (lisp--local-variables-1, lisp--local-variables): New functions.
14022 (lisp--local-variables-completion-table): New var.
14023 (lisp-completion-at-point): Use it complete let-bound vars.
14024
14025 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
14026 eagerly (bug#14422).
14027
14028 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
14029
14030 * autorevert.el (auto-revert-notify-enabled)
14031 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
14032 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
14033 (auto-revert-notify-handler): Handle also gfilenotify.
14034
14035 * subr.el (file-notify-handle-event): New defun. Replacing ...
14036 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
14037 Remove.
14038
14039 2013-06-03 Juri Linkov <juri@jurta.org>
14040
14041 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
14042 `M-s h .'. (Bug#14427)
14043
14044 * hi-lock.el (highlight-symbol-at-point): New alias for the new
14045 command `hi-lock-face-symbol-at-point'.
14046 (hi-lock-face-symbol-at-point): New command.
14047 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
14048 (hi-lock-menu): Add `highlight-symbol-at-point'.
14049 (hi-lock-mode): Doc fix.
14050
14051 * isearch.el (isearch-forward-symbol-at-point): New command.
14052 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
14053 (isearch-highlight-regexp): Add a regexp which matches
14054 words/symbols for word/symbol mode.
14055
14056 * subr.el (find-tag-default-bounds): New function with the body
14057 mostly moved from `find-tag-default'.
14058 (find-tag-default): Move most code to `find-tag-default-bounds',
14059 call it and apply `buffer-substring-no-properties' afterwards.
14060
14061 2013-06-03 Tassilo Horn <tsdh@gnu.org>
14062
14063 * eshell/em-term.el (eshell-term-initialize):
14064 Use `cl-intersection' rather than `intersection'.
14065
14066 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
14067
14068 * vc/log-view.el: Doc fix.
14069 (log-view-mode-map): Copy keymap from `special-mode-map'.
14070
14071 2013-06-02 Eric Ludlam <zappo@gnu.org>
14072
14073 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
14074 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
14075 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
14076 (eieio-unbound, eieio-default-superclass)
14077 (eieio--define-field-accessors, method-static, method-before)
14078 (method-primary, method-after, method-num-lists)
14079 (method-generic-before, method-generic-primary)
14080 (method-generic-after, method-num-slots)
14081 (eieio-specialized-key-to-generic-key)
14082 (eieio--check-type, class-v, class-p)
14083 (eieio-class-name, define-obsolete-function-alias)
14084 (eieio-class-parents-fast, eieio-class-children-fast)
14085 (same-class-fast-p, class-constructor, generic-p)
14086 (generic-primary-only-p, generic-primary-only-one-p)
14087 (class-option-assoc, class-option, eieio-object-p)
14088 (class-abstract-p, class-method-invocation-order)
14089 (eieio-defclass-autoload-map, eieio-defclass-autoload)
14090 (eieio-class-un-autoload, eieio-defclass)
14091 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
14092 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
14093 (eieio--defgeneric-init-form, eieio-defgeneric-form)
14094 (eieio-defgeneric-reset-generic-form)
14095 (eieio-defgeneric-form-primary-only)
14096 (eieio-defgeneric-reset-generic-form-primary-only)
14097 (eieio-defgeneric-form-primary-only-one)
14098 (eieio-defgeneric-reset-generic-form-primary-only-one)
14099 (eieio-unbind-method-implementations)
14100 (eieio--defmethod, eieio--typep)
14101 (eieio-perform-slot-validation, eieio-validate-slot-value)
14102 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
14103 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
14104 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
14105 (eieio-slot-name-index, eieio-class-slot-name-index)
14106 (eieio-set-defaults, eieio-initarg-to-attribute)
14107 (eieio-attribute-to-initarg, eieio-c3-candidate)
14108 (eieio-c3-merge-lists, eieio-class-precedence-c3)
14109 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
14110 (eieio-class-precedence-list, eieio-generic-call-methodname)
14111 (eieio-generic-call-arglst, eieio-generic-call-key)
14112 (eieio-generic-call-next-method-list)
14113 (eieio-pre-method-execution-functions, eieio-generic-call)
14114 (eieio-generic-call-primary-only, eieiomt-method-list)
14115 (eieiomt-optimizing-obarray, eieiomt-install)
14116 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
14117 (eieio-generic-form, eieio-defmethod, make-obsolete)
14118 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
14119 (defclass): Remove `eval-and-compile' from macro.
14120 (call-next-method, shared-initialize): Instead of using
14121 `scoped-class' variable, use new eieio--scoped-class, and
14122 eieio--with-scoped-class.
14123 (initialize-instance): Rename local variable 'scoped-class' to
14124 'this-class' to remove ambiguitity from old global.
14125
14126 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
14127 eieio.el.
14128 (eieio--scoped-class-stack): New variable.
14129 (eieio--scoped-class): New fcn.
14130 (eieio--with-scoped-class): New scoping macro.
14131 (eieio-defclass): Use pushnew instead of add-to-list.
14132 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
14133 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
14134 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
14135 `scoped-class' variable, use new eieio--scoped-class, and
14136 eieio--with-scoped-class.
14137
14138 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
14139
14140 2013-06-02 Tassilo Horn <tsdh@gnu.org>
14141
14142 * eshell/esh-ext.el (eshell-external-command): Pass args to
14143 `eshell-find-interpreter'.
14144 (eshell-find-interpreter): Add new second parameter ARGS.
14145
14146 * eshell/em-script.el (eshell-script-initialize): Add second arg
14147 to the function added as MATCH to `eshell-interpreter-alist'.
14148
14149 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
14150 the function added as MATCH to `eshell-interpreter-alist'.
14151
14152 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
14153 (eshell-visual-options): New defcustom.
14154 (eshell-escape-control-x): Adapt docstring.
14155 (eshell-term-initialize): Test `eshell-visual-subcommands' and
14156 `eshell-visual-options' in addition to `eshell-visual-commands'.
14157 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
14158
14159 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
14160
14161 * progmodes/python.el (python-indent-block-enders): Add break,
14162 continue and raise keywords.
14163
14164 2013-06-01 Glenn Morris <rgm@gnu.org>
14165
14166 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
14167
14168 Plain (f)boundp silences compilation warnings since Emacs 22.1.
14169 * progmodes/cc-cmds.el (delete-forward-p):
14170 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
14171 * progmodes/cc-engine.el (buffer-syntactic-context):
14172 * progmodes/cc-fonts.el (face-property-instance):
14173 * progmodes/cc-mode.el (set-keymap-parents):
14174 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
14175 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
14176 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
14177 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
14178 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
14179
14180 * progmodes/cc-vars.el (other): Emacs has this widget since
14181 at least 21.1, so don't (re)define it.
14182
14183 * eshell/em-cmpl.el (eshell-cmpl-initialize):
14184 Replace the obsolete alias pcomplete-arg-quote-list.
14185
14186 2013-06-01 Leo Liu <sdl.web@gmail.com>
14187
14188 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
14189 punctuation syntax.
14190 (inferior-octave-minimal-columns)
14191 (inferior-octave-last-column-width): New variables.
14192 (inferior-octave-track-window-width-change): New function.
14193 (inferior-octave-mode): Adjust column width so that Octave output,
14194 for example from 'ls', can fit into the window nicely.
14195
14196 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
14197
14198 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
14199 Highlight expansions inside regexp literals.
14200
14201 2013-05-31 Glenn Morris <rgm@gnu.org>
14202
14203 * obsolete/sym-comp.el (symbol-complete):
14204 Replace obsolete completion-annotate-function.
14205
14206 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
14207
14208 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
14209
14210 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
14211 New function, checks if point is inside a literal that allows
14212 expression expansion.
14213 (ruby-syntax-propertize-expansion): Use it.
14214 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
14215 around the body.
14216
14217 2013-05-30 Juri Linkov <juri@jurta.org>
14218
14219 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
14220 to "\M-si".
14221 (isearch-invisible): New variable.
14222 (isearch-forward): Doc fix.
14223 (isearch-mode): Set `isearch-invisible'
14224 to the value of `search-invisible'.
14225 (isearch-toggle-case-fold): Doc fix.
14226 (isearch-toggle-invisible): New command.
14227 (isearch-query-replace): Let-bind `search-invisible'
14228 to the value of `isearch-invisible'.
14229 (isearch-search): Use `isearch-invisible' instead of
14230 `search-invisible'. Let-bind `search-invisible'
14231 to the value of `isearch-invisible'. (Bug#11378)
14232
14233 2013-05-30 Juri Linkov <juri@jurta.org>
14234
14235 * replace.el (perform-replace): Avoid `isearch-range-invisible'
14236 call when `query-flag' is nil and `search-invisible' is non-nil.
14237 (Bug#11746)
14238
14239 2013-05-30 Glenn Morris <rgm@gnu.org>
14240
14241 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
14242
14243 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
14244 (cc-require): Suppress spurious "noruntime" warnings.
14245 (cc-require-when-compile): Use fboundp, for sake of compiler.
14246
14247 * progmodes/cc-mode.el: Move load of cc-vars before that of
14248 cc-langs (which in turn loads cc-vars), to quieten compiler.
14249
14250 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14251
14252 * paren.el: Simplify the code.
14253 (show-paren-mode): Always start the timer.
14254 (show-paren--idle-timer): Rename from show-paren-idle-timer.
14255 (show-paren--overlay, show-paren--overlay-1): Rename from
14256 show-paren-overlay and show-paren-overlay-1, and initialize to an
14257 overlay rather than to nil.
14258 (show-paren-function): Misc cleanup and simplifications.
14259
14260 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14261
14262 * paren.el (show-paren-data-function): New hook.
14263 (show-paren--default): New function, extracted from show-paren-function.
14264 (show-paren-function): Use show-paren-data-function.
14265
14266 2013-05-30 Glenn Morris <rgm@gnu.org>
14267
14268 * ielm.el (ielm-map, ielm-complete-symbol):
14269 Use completion-at-point rather than obsolete functions.
14270 (inferior-emacs-lisp-mode): Doc fix.
14271 Set completion-at-point-functions, rather than
14272 comint-dynamic-complete-functions.
14273
14274 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
14275 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
14276 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
14277
14278 * image.el (image-animated-p): Tweak definition.
14279
14280 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
14281 (rlogin-process-connection-type): Tweak default. Add set-after.
14282 (rlogin-host): Doc fix.
14283 (rlogin): Tweak prompt.
14284 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
14285
14286 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
14287 * progmodes/tcl.el (inferior-tcl-mode-map):
14288 Use completion-at-point rather than obsolete alias.
14289
14290 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
14291
14292 * minibuffer.el (read-file-name-completion-ignore-case):
14293 Move before completion--in-region, for eager macro expansion.
14294
14295 2013-05-29 Juri Linkov <juri@jurta.org>
14296
14297 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
14298 for total count of matching lines. Add `global-matches' for total
14299 count of matches. Rename `matches' to `lines' for count of
14300 matching lines. Add `matches' for count of matches.
14301 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
14302 to `prev-line' for line number of prev match endpt.
14303 Increment `matches' for every match. Print the number of
14304 matching lines in the header.
14305 (occur-context-lines): Rename `lines' to `curr-line'.
14306 Rename `prev-lines' to `prev-line'. (Bug#14017)
14307
14308 2013-05-29 Juri Linkov <juri@jurta.org>
14309
14310 * replace.el (perform-replace): Add `skip-read-only-count',
14311 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
14312 Increment them for corresponding conditions and report the number
14313 of skipped occurrences in the final message. (Bug#11746)
14314 (query-replace, query-replace-regexp, query-replace-regexp-eval)
14315 (replace-string, replace-regexp): Doc fix.
14316
14317 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
14318
14319 * emacs-lisp/trace.el (trace--read-args): Provide a default.
14320
14321 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
14322 prog-mode-map (bug#14504).
14323
14324 2013-05-29 Leo Liu <sdl.web@gmail.com>
14325
14326 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
14327 (octave-help): Small simplification.
14328
14329 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
14330 off the highlight first.
14331
14332 2013-05-29 Glenn Morris <rgm@gnu.org>
14333
14334 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
14335 Handle idlwave-last-system-routine-info-cons-cell being nil.
14336
14337 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
14338 (idlwave-write-paths): Simplify via with-temp-buffer.
14339
14340 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
14341 * emulation/cua-rect.el: Also load cua-base at run time.
14342
14343 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
14344 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
14345 (cperl-imenu-on-info): Require imenu.
14346
14347 2013-05-28 Alan Mackenzie <acm@muc.de>
14348
14349 Handle "capitalised keywords" correctly.
14350 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
14351
14352 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
14353
14354 * eshell/em-unix.el: Add -r option to cp.
14355
14356 2013-05-28 Glenn Morris <rgm@gnu.org>
14357
14358 * vc/vc-arch.el (vc-exec-after): Declare.
14359 (vc-switches): Autoload.
14360 * vc/vc-bzr.el: No need to require vc when compiling.
14361 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
14362 (vc-resynch-buffer, vc-dir-refresh): Declare.
14363 (vc-setup-buffer, vc-switches): Autoload.
14364 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
14365 (vc-resynch-buffer): Declare.
14366 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
14367 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
14368 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
14369 (grep-read-regexp, grep-read-files, grep-expand-template)
14370 (vc-dir-refresh): Declare.
14371 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
14372 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
14373 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
14374 * vc/vc-mtn.el (vc-exec-after): Declare.
14375 (vc-switches): Autoload.
14376 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
14377 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
14378 (vc-file-tree-walk): Declare.
14379 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
14380 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
14381 (vc-tag-precondition, vc-rename-master): Autoload.
14382 * vc/vc-svn.el (vc-exec-after): Declare.
14383 (vc-switches, vc-setup-buffer): Autoload.
14384 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
14385 Autoload.
14386 (vc-resynch-buffer): Declare.
14387
14388 * obsolete/fast-lock.el (byte-compile-warnings):
14389 Don't warn about obsolete features in this obsolete file.
14390
14391 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
14392 Move definition before use.
14393
14394 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
14395 (dun-unix-verbs): Remove dun-zippy.
14396 (dun-zippy): Remove function.
14397
14398 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
14399
14400 2013-05-27 Juri Linkov <juri@jurta.org>
14401
14402 * replace.el (replace-search): New function with code moved out
14403 from `perform-replace'.
14404 (replace-highlight, replace-dehighlight): Move function definitions
14405 up closer to `replace-search'. (Bug#11746)
14406
14407 2013-05-27 Juri Linkov <juri@jurta.org>
14408
14409 * replace.el (perform-replace): Ignore invisible matches.
14410 In addition to checking `query-replace-skip-read-only', also
14411 filter out matches by calling `run-hook-with-args-until-failure'
14412 on `isearch-filter-predicates', and also check `search-invisible'
14413 for t or call `isearch-range-invisible'.
14414 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
14415
14416 2013-05-27 Juri Linkov <juri@jurta.org>
14417
14418 * isearch.el (isearch-filter-predicates): Rename from
14419 `isearch-filter-predicate'. Doc fix. (Bug#11378)
14420 (isearch-message-prefix): Display text from the property
14421 `isearch-message-prefix' of the currently active filters.
14422 (isearch-search): Don't compare `isearch-filter-predicate' with
14423 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
14424 on `isearch-filter-predicates'. Also check `search-invisible' for t
14425 or call `isearch-range-invisible'.
14426 (isearch-filter-visible): Make obsolete.
14427 (isearch-lazy-highlight-search):
14428 Call `run-hook-with-args-until-failure' on
14429 `isearch-filter-predicates' and use `isearch-range-invisible'.
14430
14431 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
14432 `isearch-filter-predicates' instead of `funcall'ing
14433 `isearch-filter-predicate'.
14434 (Info-mode): Set `Info-isearch-filter' to
14435 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
14436
14437 * dired-aux.el (dired-isearch-filter-predicate-orig):
14438 Remove variable.
14439 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
14440 (dired-isearch-filenames-end): Add and remove
14441 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
14442 instead of changing the value of `isearch-filter-predicate'.
14443 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
14444 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
14445 Put property `isearch-message-prefix' to "filename " on
14446 `dired-isearch-filter-filenames'.
14447
14448 * wdired.el (wdired-change-to-wdired-mode):
14449 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
14450 locally instead of changing `isearch-filter-predicate'.
14451 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
14452
14453 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
14454
14455 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
14456 return the commit hash (Bug#14459). Also set the
14457 `vc-git-detached' property.
14458 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
14459 (vc-git-mode-line-string): Use the same help-echo format whether
14460 in detached mode or not, because we know the actual revision now.
14461 When in detached mode, shorten the revision to 7 chars.
14462
14463 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14464
14465 * emacs-lisp/easy-mmode.el (define-minor-mode):
14466 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
14467 mode hook and provide a docstring.
14468
14469 2013-05-27 Alan Mackenzie <acm@muc.de>
14470
14471 Remove spurious syntax-table text properties inserted by C-y.
14472 * progmodes/cc-mode.el (c-after-change): Also clear hard
14473 syntax-table property with value nil.
14474
14475 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
14476
14477 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
14478 when reading the events; the buffer layout shall not be changed.
14479
14480 2013-05-27 Leo Liu <sdl.web@gmail.com>
14481
14482 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
14483 New variable.
14484 (inferior-octave-directory-tracker): Automatically re-sync
14485 default-directory.
14486 (octave-help): Improve handling of 'See also'.
14487
14488 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14489
14490 * doc-view.el: Minor naming convention tweaks.
14491 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
14492
14493 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
14494 even if there's no `display' property yet (bug#14435).
14495
14496 2013-05-25 Eli Zaretskii <eliz@gnu.org>
14497
14498 * subr.el (unmsys--file-name): Rename from reveal-filename.
14499
14500 * Makefile.in (custom-deps, finder-data, autoloads)
14501 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
14502 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
14503 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
14504
14505 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
14506
14507 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
14508 error-completion on the first 2 args of condition-case (bug#14446).
14509 Don't burp at EOB.
14510
14511 2013-05-25 Leo Liu <sdl.web@gmail.com>
14512
14513 * comint.el (comint-previous-matching-input): Do not flood the
14514 *Messages* buffer with trivial messages.
14515
14516 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
14517
14518 * progmodes/flymake.el (flymake-nop): Don't return a string.
14519 (flymake-set-at): Fix typo.
14520
14521 * simple.el (read--expression): New function, extracted from
14522 eval-expression. Set completion-at-point-functions (bug#14465).
14523 (eval-expression, eval-minibuffer): Use it.
14524
14525 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
14526
14527 * progmodes/flymake.el (flymake-save-buffer-in-file)
14528 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
14529 (flymake-selected-frame, flymake-log, flymake-ins-after)
14530 (flymake-set-at, flymake-get-buildfile-from-cache)
14531 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
14532 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
14533 Refine the doc string.
14534 (flymake-get-file-name-mode-and-masks): Reformat.
14535 (flymake-get-real-file-name-function): Fix a minor bug.
14536
14537 2013-05-24 Juri Linkov <juri@jurta.org>
14538
14539 * progmodes/grep.el (grep-mode-font-lock-keywords):
14540 Support =linenumber= format used by git-grep for lines with
14541 function names. (Bug#13549)
14542
14543 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
14544
14545 * progmodes/octave.el (octave-smie-rules): Return nil rather than
14546 0 after a semi-colon; it works better for smie-auto-fill.
14547 (octave--indent-new-comment-line): New function.
14548 (octave-indent-new-comment-line): Use it (indirectly).
14549 (octave-mode): Don't disable smie-auto-fill. Use add-function to
14550 modify comment-line-break-function.
14551
14552 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
14553 (smie-setup): Use add-function to set it.
14554
14555 2013-05-24 Sam Steingold <sds@gnu.org>
14556
14557 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
14558 argument (before the `interactive' argument).
14559
14560 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
14561
14562 * image-mode.el (image-mode-winprops): Add winprops to
14563 image-mode-winprops-alist before running
14564 image-mode-new-window-functions.
14565 * doc-view.el (doc-view-new-window-function): Don't delay
14566 doc-view-goto-page via timers (bug#14435).
14567
14568 2013-05-24 Tassilo Horn <tsdh@gnu.org>
14569
14570 * doc-view.el: Integrate with desktop.el. (Bug#14435)
14571 (doc-view-desktop-save-buffer): New function.
14572 (doc-view-restore-desktop-buffer): New function.
14573 (desktop-buffer-mode-handlers):
14574 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
14575 handler.
14576 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
14577 `desktop-save-buffer' function.
14578
14579 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
14580
14581 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
14582 (tramp-gvfs-file-name-handler): Raise a user error when
14583 `tramp-gvfs-enabled' is nil.
14584 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
14585 Do not raise a user error when loading package. (Bug#14447)
14586
14587 * net/xesam.el: Move to obsolete/.
14588
14589 2013-05-24 Glenn Morris <rgm@gnu.org>
14590
14591 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
14592
14593 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
14594
14595 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
14596 (Info-find-node, Man-getpage-in-background): Declare.
14597
14598 * mail/unrmail.el (unrmail):
14599 Replace obsolete detect-coding-with-priority.
14600
14601 * net/socks.el (socks-split-string): Use this rather than split-string.
14602 (socks-nslookup-host): Update for above change.
14603 (dynamic-choice, s5-dynamic-choice-match)
14604 (s5-dynamic-choice-match-inline, s5-widget-value-create):
14605 Comment out unused code.
14606
14607 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
14608 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
14609 (gud-tooltip-echo-area): Make obsolete.
14610 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
14611
14612 * progmodes/js.el (js--optimize-arglist): Declare.
14613
14614 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
14615
14616 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
14617 (ediff-window-C): Declare.
14618
14619 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
14620 Tweak requires to silence compiler.
14621
14622 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
14623 (he-search-string, he-tried-table, he-expand-list)
14624 (he-init-string, he-string-member, he-substitute-string)
14625 (he-reset-string): Declare.
14626
14627 * obsolete/options.el (list-options): Use custom-variable-p,
14628 rather than obsolete alias.
14629
14630 2013-05-23 Sam Steingold <sds@gnu.org>
14631
14632 * simple.el (shell-command-on-region): Pass the `replace' argument
14633 down to `call-process-region' to comply with the doc as reported on
14634 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
14635
14636 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
14637
14638 * emacs-lisp/smie.el (smie-indent-forward-token)
14639 (smie-indent-backward-token): Handle string tokens (bug#14381).
14640
14641 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14642
14643 * ielm.el (ielm-menu): New menu.
14644 (inferior-emacs-lisp-mode): Set comment-start.
14645
14646 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14647
14648 * textmodes/reftex.el (reftex-ref-style-toggle):
14649 Fix deactivate action.
14650
14651 * textmodes/reftex-vars.el (reftex-ref-style-alist):
14652 Add cleveref macros.
14653
14654 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
14655 Accept options for bibliography commands.
14656 * textmodes/reftex-vars.el (reftex-bibliography-commands):
14657 Add addbibresource. Basic Biblatex support.
14658
14659 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
14660
14661 * net/tramp-gvfs.el (top):
14662 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
14663 when loading package. (Bug#14447)
14664
14665 2013-05-23 Glenn Morris <rgm@gnu.org>
14666
14667 * progmodes/js.el: No need to load comint when compiling.
14668 (ring-insert, comint-send-string, comint-send-input)
14669 (comint-last-input-end, ido-chop): Declare.
14670
14671 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
14672 * vc/ediff-mult.el: Adjust requires.
14673 (ediff-directories-internal, ediff-directory-revisions-internal)
14674 (ediff-patch-file-internal): Declare.
14675 * vc/ediff-ptch.el: Adjust requires.
14676 (ediff-use-last-dir, ediff-buffers-internal): Declare.
14677 (ediff-find-file): Autoload.
14678 * vc/ediff-util.el: No need to load ediff when compiling.
14679 (ediff-regions-internal): Declare.
14680 * vc/ediff-wind.el: Adjust requires.
14681 (ediff-compute-toolbar-width): Define when compiling.
14682 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
14683 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
14684 (dired-get-filename, dired-get-marked-files)
14685 (ediff-last-dir-patch, ediff-patch-default-directory)
14686 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
14687 (ediff-patch-buffer-internal): Declare.
14688
14689 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
14690 (ispell-process, ispell-buffer-local-words, lm-summary)
14691 (lm-section-start, lm-section-end): Declare.
14692 (checkdoc-ispell-init): Simplify.
14693
14694 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
14695 (he-string-member, he-reset-string, he-substitute-string): Declare.
14696
14697 * eshell/em-ls.el: Adjust requires.
14698 (eshell-glob-regexp): Declare.
14699 * eshell/em-tramp.el: Adjust requires.
14700 (eshell-parse-command): Autoload.
14701 * eshell/em-xtra.el: Adjust requires.
14702 (eshell-parse-command): Autoload.
14703 * eshell/esh-ext.el: Adjust requires.
14704 (eshell-parse-command, eshell-close-handles): Autoload.
14705 * eshell/esh-io.el: Adjust requires.
14706 (eshell-output-filter): Autoload.
14707 * eshell/esh-util.el: No need to load tramp when compiling.
14708 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
14709 Declare.
14710 (eshell-parse-ange-ls): Require ange-ftp and tramp.
14711 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
14712 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
14713 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
14714 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
14715 * eshell/esh-opt.el, eshell/esh-proc.el:
14716 * eshell/esh-var.el: Adjust requires.
14717 * eshell/eshell.el: Do not require esh-util twice.
14718 (eshell-add-input-to-history): Declare.
14719 (eshell-command): Check history module is active before using it.
14720
14721 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
14722
14723 2013-05-22 Leo Liu <sdl.web@gmail.com>
14724
14725 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
14726
14727 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
14728
14729 * autorevert.el (auto-revert-notify-add-watch)
14730 (auto-revert-notify-handler): Add `attrib' for the inotify case,
14731 it indicates changes in file modification time.
14732
14733 2013-05-22 Glenn Morris <rgm@gnu.org>
14734
14735 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
14736 Always delete the autoloaded function from the noruntime and
14737 unresolved functions lists.
14738
14739 * allout.el: No need to load epa, epg, overlay when compiling.
14740 (epg-context-set-passphrase-callback, epg-list-keys)
14741 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
14742 (epg-key-user-id-list): Declare.
14743
14744 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
14745 (viper-set-parsing-style-toggling-macro)
14746 (viper-set-emacs-state-searchstyle-macros):
14747 Use called-interactively-p on Emacs.
14748 (viper-looking-back): Make it an obsolete alias. Update callers.
14749 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
14750 Use looking-back rather than viper-looking-back.
14751 (viper-tmp-insert-at-eob, viper-enlarge-region)
14752 (viper-read-string-with-history, viper-register-to-point)
14753 (viper-append-to-register, viper-change-state-to-vi)
14754 (viper-backward-char-carefully, viper-forward-char-carefully)
14755 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
14756 (viper-change-state-to-emacs): Declare.
14757 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
14758 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
14759 * emulation/viper-mous.el: Do not load viper-cmd.
14760 (viper-backward-char-carefully, viper-forward-char-carefully)
14761 (viper-forward-word, viper-adjust-window): Declare.
14762
14763 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
14764
14765 * progmodes/idlw-help.el (idlwave-help-fontify):
14766 Use called-interactively-p.
14767
14768 * term/w32console.el (w32-get-console-codepage)
14769 (w32-get-console-output-codepage): Declare.
14770
14771 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
14772 Remove unnecessary declarations.
14773 (dframe-message): Doc fix.
14774
14775 * info.el (dframe-select-attached-frame, dframe-current-frame):
14776 Declare.
14777
14778 * speedbar.el (speedbar-message): Make it an obsolete alias.
14779 Update all callers.
14780 (speedbar-with-attached-buffer)
14781 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
14782 (speedbar-with-writable): Use backquote.
14783 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
14784 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
14785 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
14786 rather than speedbar- aliases.
14787 * mail/rmail.el: Load dframe rather than speedbar when compiling.
14788 (speedbar-make-specialized-keymap, speedbar-insert-button)
14789 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
14790 (speedbar-do-function-pointer): Declare.
14791 (rmail-speedbar-button, rmail-speedbar-find-file)
14792 (rmail-speedbar-move-message):
14793 Use dframe-with-attached-buffer rather than speedbar- alias.
14794 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
14795 (dframe-message, speedbar-make-specialized-keymap)
14796 (speedbar-add-expansion-list, speedbar-mode-functions-list)
14797 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
14798 (speedbar-insert-button, dframe-select-attached-frame)
14799 (dframe-maybee-jump-to-attached-frame)
14800 (speedbar-change-initial-expansion-list)
14801 (speedbar-previously-used-expansion-list-name): Declare.
14802 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
14803 Use dframe-message, dframe-with-attached-buffer rather than
14804 speedbar- aliases.
14805 (gud-sentinel): Silence compiler.
14806 * progmodes/vhdl-mode.el (speedbar-refresh)
14807 (speedbar-do-function-pointer, speedbar-add-supported-extension)
14808 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
14809 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
14810 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
14811 (speedbar-file-lists, speedbar-make-tag-line)
14812 (speedbar-line-directory, speedbar-goto-this-file)
14813 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
14814 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
14815 (speedbar-make-button, speedbar-reset-scanners)
14816 (speedbar-files-item-info, speedbar-line-text)
14817 (speedbar-find-file-in-frame, speedbar-set-timer)
14818 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
14819 (speedbar-with-writable): Do not (re)define it.
14820 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
14821 rather than speedbar- alias.
14822
14823 2013-05-21 Leo Liu <sdl.web@gmail.com>
14824
14825 * progmodes/octave.el (octave-mode-menu): Update and re-organize
14826 menu items.
14827 (octave-mode): Tweak fill-nobreak-predicate.
14828 (inferior-octave-startup): Check process to avoid infinite loop.
14829 (inferior-octave): Pop to buffer first to show abornmal process
14830 exit information.
14831
14832 2013-05-21 Glenn Morris <rgm@gnu.org>
14833
14834 * printing.el (pr-menu-bar): Define when compiling.
14835
14836 2013-05-21 Leo Liu <sdl.web@gmail.com>
14837
14838 * progmodes/octave.el (octave-auto-fill): Remove.
14839 (octave-indent-new-comment-line): Improve.
14840 (octave-mode): Use auto fill mode through
14841 comment-line-break-function and fill-nobreak-predicate.
14842 (octave-goto-function-definition): Support DEFUN_DLD.
14843 (octave-beginning-of-defun): Small tweak.
14844 (octave-help): Show parent directory.
14845
14846 2013-05-21 Glenn Morris <rgm@gnu.org>
14847
14848 * files.el (dired-unmark):
14849 * progmodes/gud.el (gdb-input): Update declarations.
14850
14851 * calculator.el (electric, ehelp): No need to load when compiling.
14852 (Electric-command-loop, electric-describe-mode): Declare.
14853
14854 * doc-view.el (doc-view-current-converter-processes): Move before use.
14855
14856 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14857 Move MODE-set-explicitly definition before use.
14858
14859 * international/mule-diag.el (mule-diag):
14860 Don't use obsolete window-system-version.
14861
14862 * mail/feedmail.el (smtpmail): No need to load when compiling.
14863 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
14864
14865 * mail/mail-utils.el (rfc822): No need to load when compiling.
14866 (rfc822-addresses): Autoload it.
14867 (mail-strip-quoted-names): Trivial simplification.
14868
14869 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
14870 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
14871
14872 * net/snmp-mode.el (tempo): Don't duplicate requires.
14873
14874 * progmodes/prolog.el (info): No need to load when compiling.
14875 (comint): Require before shell requires it.
14876 (Info-goto-node): Autoload it.
14877 (Info-follow-nearest-node): Declare.
14878 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
14879
14880 * textmodes/artist.el (picture-mode-exit): Declare.
14881
14882 * textmodes/reftex-parse.el (reftex-parse-from-file):
14883 Trivial rewrite so the compiler can parse it better.
14884
14885 2013-05-20 Leo Liu <sdl.web@gmail.com>
14886
14887 * progmodes/octave.el (octave-help-mode-map)
14888 (octave-help-mode-finish-hook): New variables.
14889 (octave-help-mode, octave-help-mode-finish): New functions.
14890 (octave-help): Use octave-help-mode.
14891
14892 2013-05-20 Glenn Morris <rgm@gnu.org>
14893
14894 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
14895
14896 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
14897
14898 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
14899 start at point, so that expansion starting right after opening
14900 slash in a regexp is recognized.
14901 (ruby-syntax-before-regexp-re): New defvar, extracted from
14902 ruby-syntax-propertize-function. Since the value of this regexp
14903 is looked up at runtime now, we should be able to turn
14904 `ruby-syntax-methods-before-regexp' into a defcustom later.
14905 (ruby-syntax-propertize-function): Split regexp matching into two
14906 parts, for opening and closing slashes. That allows us to skip
14907 over string interpolations and support multiline regexps.
14908 Don't call `ruby-syntax-propertize-expansions', instead use another rule
14909 for them, which calls `ruby-syntax-propertize-expansion'.
14910 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
14911 call to `ruby-syntax-propertize-function'.
14912 (ruby-syntax-propertize-expansion): Extracted from
14913 `ruby-syntax-propertize-expansions'. Handles one expansion.
14914 (ruby-syntax-propertize-percent-literal): Leave point right after
14915 the percent symbol, so that the expression expansion rule can
14916 propertize the contents.
14917 (ruby-syntax-propertize-heredoc): Leave point at bol following the
14918 heredoc openers.
14919 (ruby-syntax-propertize-expansions): Remove.
14920
14921 2013-05-18 Juri Linkov <juri@jurta.org>
14922
14923 * man.el (Man-default-man-entry): Remove `-' from the end
14924 of the default value. (Bug#14400)
14925
14926 2013-05-18 Glenn Morris <rgm@gnu.org>
14927
14928 * comint.el (comint-password-prompt-regexp):
14929 Allow "password for XXX" where XXX contains colons (eg https://...).
14930
14931 2013-05-18 Leo Liu <sdl.web@gmail.com>
14932
14933 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
14934 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
14935 (octave-source-directories): Don't check process.
14936 (octave-source-directories, octave-find-definition): Doc fix.
14937
14938 2013-05-18 Glenn Morris <rgm@gnu.org>
14939
14940 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
14941 Remove backspace/delete bindings. (Bug#14392)
14942
14943 * cus-dep.el (custom-make-dependencies): Sort the output.
14944 (custom-versions-load-alist): Convert comment to doc.
14945
14946 2013-05-17 Leo Liu <sdl.web@gmail.com>
14947
14948 * newcomment.el (comment-search-backward): Stricter in finding
14949 comment start. (Bug#14303)
14950
14951 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
14952 (octave-comment-start-skip): Properly anchored.
14953
14954 2013-05-17 Leo Liu <sdl.web@gmail.com>
14955
14956 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
14957 Clean up when turned off. (Bug#14395)
14958 (smie--highlight-matching-block-overlay): No longer buffer-local.
14959 (smie-highlight-matching-block): Adjust.
14960
14961 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
14962
14963 Doc string fix for "nanoseconds" (Bug#14406).
14964 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
14965 Fix doc string typo that had "nanoseconds" instead of "microseconds".
14966
14967 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
14968
14969 * calc/calc-units.el (math-extract-units): Preserve powers
14970 of units.
14971
14972 2013-05-17 Leo Liu <sdl.web@gmail.com>
14973
14974 * subr.el (delete-consecutive-dups): New function.
14975 * ido.el (ido-set-matches-1): Use it.
14976 * progmodes/octave.el (inferior-octave-completion-table): Use it.
14977 * ido.el (ido-remove-consecutive-dups): Remove.
14978
14979 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14980
14981 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
14982 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
14983 regexp-opt's `words'.
14984
14985 2013-05-16 Leo Liu <sdl.web@gmail.com>
14986
14987 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
14988 (smie--highlight-matching-block-overlay)
14989 (smie--highlight-matching-block-lastpos)
14990 (smie--highlight-matching-block-timer): New variables.
14991 (smie-highlight-matching-block): New function.
14992 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
14993 (smie-setup): Conditionally enable smie-blink-matching-open.
14994
14995 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
14996
14997 Sync with upstream verilog-mode r840.
14998 * progmodes/verilog-mode.el (verilog-mode-version)
14999 (verilog-mode-release-date): Update.
15000 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
15001 (verilog-sig-tieoff): Fix string error on
15002 AUTORESET with colon define, bug594. Reported by Andrew Hou.
15003 (verilog-read-decls): Fix parameters confusing
15004 AUTOINST interfaces, bug565. Reported by Leith Johnson.
15005
15006 2013-05-16 Eli Zaretskii <eliz@gnu.org>
15007
15008 * subr.el (reveal-filename): New function.
15009
15010 * loadup.el: Compute Emacs executable versions on MS-Windows,
15011 where executables have the .exe extension. Add a hard link
15012 emacs-XX.YY.ZZ.exe on MS-Windows.
15013
15014 * Makefile.in (XARGS_LIMIT): New variable.
15015 (custom-deps, finder-data, autoloads)
15016 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
15017 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
15018 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
15019 (compile-main): Limit xargs according to $(XARGS_LIMIT).
15020
15021 2013-05-16 Leo Liu <sdl.web@gmail.com>
15022
15023 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
15024 (octave-mode-menu, octave-mode-map): Remove its uses.
15025
15026 2013-05-16 Reto Zimmermann <reto@gnu.org>
15027
15028 Sync with upstream vhdl mode v3.34.2.
15029 * progmodes/vhdl-mode.el: Use `push' throughout.
15030 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
15031 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
15032 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
15033 (vhdl-actual-generic-name): New option to derive actual generic name.
15034 (vhdl-port-paste-signals): Replace formal by actual generics.
15035 (vhdl-beautify): New name for old group vhdl-align. Update users.
15036 (vhdl-beautify-options): New option.
15037 (vhdl-last-input-event): New compat alias. Use throughout.
15038 (vhdl-goto-line): Replace user level function `goto-line'.
15039 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
15040 vhdl-fix-statement-buffer.
15041 (vhdl-create-mode-menu): Add some entries.
15042 (vhdl-align-region-groups): Respect vhdl-beautify-options.
15043 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
15044 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
15045 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
15046 to force statements on one line.
15047 (vhdl-remove-trailing-spaces-region):
15048 New, split from vhdl-remove-trailing-spaces.
15049 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
15050 Respect vhdl-beautify-options.
15051 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
15052 (vhdl-update-sensitivity-list): Not add with index if exists without.
15053 Not include array index with signal. Ignore keywords in comments.
15054 (vhdl-get-visible-signals): Regexp tweaks.
15055 (vhdl-template-component-inst): Handle empty library.
15056 (vhdl-template-type): Add template for 'enum' type.
15057 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
15058 Use vhdl-replace-string.
15059 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
15060 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
15061 (vhdl-speedbar-initialize): Update for above name change.
15062 (vhdl-compose-wire-components): Fix in handling of constants.
15063 (vhdl-error-regexp-emacs-alist): New variable.
15064 (vhdl-error-regexp-add-emacs): New function;
15065 adds support for new compile.el (Emacs 22+)
15066 (vhdl-generate-makefile-1): Change target order for single lib. units.
15067 Allow use of absolute file names.
15068
15069 2013-05-16 Leo Liu <sdl.web@gmail.com>
15070
15071 * simple.el (prog-indent-sexp): Indent enclosing defun.
15072
15073 2013-05-15 Glenn Morris <rgm@gnu.org>
15074
15075 * cus-start.el (show-trailing-whitespace): Move to editing basics.
15076 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
15077 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
15078 (whitespace-highlight): Move to whitespace group.
15079
15080 * comint.el (comint-source):
15081 * pcmpl-linux.el (pcmpl-linux):
15082 * shell.el (shell-faces):
15083 * eshell/esh-opt.el (eshell-opt):
15084 * international/ccl.el (ccl): Remove empty custom groups.
15085
15086 * completion.el (dynamic-completion-mode):
15087 * jit-lock.el (jit-lock-debug-mode):
15088 * minibuffer.el (completion-in-region-mode):
15089 * type-break.el (type-break-mode-line-message-mode)
15090 (type-break-query-mode):
15091 * emulation/tpu-edt.el (tpu-edt-mode):
15092 * progmodes/subword.el (global-subword-mode, global-superword-mode):
15093 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
15094 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
15095
15096 * term/xterm.el (xterm): Change parent group to terminals.
15097
15098 * master.el (master): Remove empty custom group.
15099 (master-mode): Remove unused :group argument.
15100 * textmodes/refill.el (refill): Remove empty custom group.
15101 (refill-mode): Remove unused :group argument.
15102
15103 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
15104
15105 * cus-dep.el: Provide a feature.
15106 (custom-make-dependencies): Ignore dotfiles (dir-locals).
15107 Don't mistakenly ignore files whose basenames match a basename
15108 from preloaded-file-list (eg cedet/ede/simple.el).
15109 Add a fallback method for getting :group.
15110
15111 2013-05-15 Juri Linkov <juri@jurta.org>
15112
15113 * isearch.el (isearch-char-by-name): Rename from
15114 `isearch-insert-char-by-name'. Doc fix.
15115 (isearch-forward): Mention `isearch-char-by-name' in
15116 the docstring. (Bug#13348)
15117
15118 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
15119 `exit-minibuffer' instead of
15120 `isearch-nonincremental-exit-minibuffer'.
15121 (isearch-edit-string): Remove mention of
15122 `isearch-nonincremental-exit-minibuffer' from docstring.
15123 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
15124 (isearch-forward-exit-minibuffer)
15125 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
15126
15127 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
15128
15129 * loadup.el: Just use unversioned DOC.
15130
15131 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
15132 literals as extending to EOB.
15133 (nxml-last-fontify-end): Remove unused variable.
15134 (nxml-after-change1): Use with-silent-modifications.
15135 (nxml-extend-after-change-region): Simplify.
15136 (nxml-extend-after-change-region1): Remove function.
15137 (nxml-after-change1): Don't adjust for dependent regions.
15138 (nxml-fontify-matcher): Simplify.
15139 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
15140 (xmltok-add-dependent): Remove function.
15141 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
15142 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
15143 (xmltok-scan-prolog-after-processing-instruction-open): Treat
15144 unclosed <[[, <?, comment, and other literals as extending to EOB.
15145 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
15146 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
15147 Remove functions.
15148 (rng-do-some-validation-1): Don't mark dependent regions.
15149 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
15150 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
15151 (nxml-clear-dependent-regions): Remove functions.
15152 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
15153 (nxml-ensure-scan-up-to-date):
15154 Don't clear&mark dependent regions.
15155
15156 2013-05-15 Leo Liu <sdl.web@gmail.com>
15157
15158 * progmodes/octave.el (octave-goto-function-definition):
15159 Improve and fix callers.
15160
15161 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
15162
15163 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
15164 the setter (bug#14387).
15165
15166 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
15167 surrounding group (bug#14402).
15168
15169 2013-05-14 Juri Linkov <juri@jurta.org>
15170
15171 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
15172 (Bug#14390)
15173
15174 2013-05-14 Glenn Morris <rgm@gnu.org>
15175
15176 * progmodes/f90.el (f90-imenu-generic-expression):
15177 Fix typo in 2013-05-08 change. (Bug#14402)
15178
15179 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
15180
15181 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
15182 Remove signals for which replies are never received.
15183
15184 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
15185
15186 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
15187 (gdb-handler-alist, gdb-handler-number): Remove variables.
15188 (gdb-handler-list): New variable.
15189 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
15190 (gdb-pending-handler-p, gdb-handle-reply)
15191 (gdb-remove-all-pending-triggers): New functions.
15192 (gdb-discard-unordered-replies): New defcustom.
15193 (gdb-handler): New defstruct.
15194 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
15195 instead of gdb-pending-triggers. Update docstring.
15196 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
15197 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
15198 (gdb-var-update-handler, def-gdb-auto-update-trigger)
15199 (def-gdb-auto-update-handler, gdb-get-changed-registers)
15200 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
15201 (gdb-frame-handler): Pending triggers are now automatically managed.
15202 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
15203 Remove argument.
15204 (gdb-input): Automatically handles pending triggers. Update docstring.
15205 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
15206 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
15207 Update comments.
15208 (gdb-done-or-error): Now use gdb-handle-reply.
15209
15210 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
15211
15212 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
15213 gdb-debug-log.
15214
15215 2013-05-14 Glenn Morris <rgm@gnu.org>
15216
15217 * subr.el (user-emacs-directory-warning): New option.
15218 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
15219
15220 2013-05-14 Leo Liu <sdl.web@gmail.com>
15221
15222 * progmodes/octave.el (octave-font-lock-keywords): Fix error
15223 during redisplay.
15224 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
15225 (octave-font-lock-texinfo-comment): Fix invalid search bound
15226 error: wrong side of point.
15227
15228 2013-05-14 Glenn Morris <rgm@gnu.org>
15229
15230 * progmodes/flymake.el (flymake-xml-program): New option.
15231 (flymake-xml-init): Use it.
15232
15233 * term/xterm.el: Provide a feature.
15234
15235 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
15236
15237 2013-05-13 Glenn Morris <rgm@gnu.org>
15238
15239 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
15240 Add compat aliases as a hack workaround. (Bug#14384)
15241
15242 2013-05-13 Leo Liu <sdl.web@gmail.com>
15243
15244 * progmodes/octave.el (octave-indent-comment): Fix indentation for
15245 ###, and %!.
15246 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
15247 C-M-q.
15248 (octave-comment-start-skip): Include %!.
15249 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
15250
15251 2013-05-12 Leo Liu <sdl.web@gmail.com>
15252
15253 * progmodes/octave.el (inferior-octave-startup): Store the value
15254 of __octave_srcdir__ for octave-source-directories.
15255 (inferior-octave-check-process): New function refactored out of
15256 inferior-octave-send-list-and-digest.
15257 (octave-source-directories)
15258 (octave-find-definition-filename-function): New variables.
15259 (octave-source-directories)
15260 (octave-find-definition-default-filename): New functions.
15261 (octave-find-definition): Improve to find functions implemented in C++.
15262
15263 2013-05-12 Glenn Morris <rgm@gnu.org>
15264
15265 * calendar/diary-lib.el (diary-outlook-format-1):
15266 Don't include dayname in the output. (Bug#14349)
15267
15268 2013-05-11 Glenn Morris <rgm@gnu.org>
15269
15270 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
15271
15272 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
15273 Treat cc-provide like provide.
15274
15275 2013-05-11 Kevin Ryde <user42@zip.com.au>
15276
15277 * cus-dep.el (custom-make-dependencies):
15278 Use generated-autoload-load-name for the sake of files such
15279 such cedet/semantic/bovine/c.el, where the base file name
15280 is not in load-path. (Bug#5277)
15281
15282 2013-05-11 Glenn Morris <rgm@gnu.org>
15283
15284 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
15285 Provide features.
15286
15287 2013-05-11 Leo Liu <sdl.web@gmail.com>
15288
15289 * progmodes/octave.el (octave-indent-comment): Improve.
15290 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
15291 (octave-eldoc-function-signatures, octave-eldoc-function):
15292 New functions.
15293 (octave-mode, inferior-octave-mode): Add eldoc support.
15294
15295 2013-05-11 Richard Stallman <rms@gnu.org>
15296
15297 * epa.el (epa-decrypt-file): Take output file name as argument
15298 and read it using `interactive'.
15299
15300 2013-05-11 Leo Liu <sdl.web@gmail.com>
15301
15302 * progmodes/octave.el (octave-beginning-of-line)
15303 (octave-end-of-line): Check before using up-list because it jumps
15304 out of more syntactic contructs since moving to smie.
15305 (octave-indent-comment): New function.
15306 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
15307 (octave-begin-keywords, octave-end-keywords)
15308 (octave-reserved-words, octave-smie-bnf-table)
15309 (octave-smie-rules): Add new keywords from Octave 3.6.4.
15310
15311 2013-05-11 Glenn Morris <rgm@gnu.org>
15312
15313 * faces.el (internal-face-x-get-resource):
15314 * frame.el (ns-display-monitor-attributes-list):
15315 * calc/calc-aent.el (math-to-radians-2):
15316 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
15317 Fix declarations.
15318
15319 * calc/calc-menu.el: Make it loadable in isolation.
15320
15321 * net/eudcb-bbdb.el: Make it loadable without bbdb.
15322 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
15323 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
15324 (eudc-bbdb-query-internal): Require 'bbdb.
15325
15326 * lpr.el (lpr-headers-switches):
15327 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
15328
15329 * progmodes/sql.el (sql-login-params): Fix and improve :type.
15330
15331 * emulation/edt-mapper.el: In batch mode, error rather than hang.
15332
15333 * term.el (term-set-escape-char): Make it idempotent.
15334
15335 2013-05-10 Leo Liu <sdl.web@gmail.com>
15336
15337 * progmodes/octave.el (inferior-octave-completion-table):
15338 No longer a function and all uses changed. Use cache to speed up
15339 completion due to bug#11906.
15340 (octave-beginning-of-defun): Re-write to be more general.
15341
15342 2013-05-10 Glenn Morris <rgm@gnu.org>
15343
15344 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
15345
15346 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
15347
15348 * comint.el (comint-redirect-send-command-to-process): Use :around
15349 rather than :override for comint-redirect-filter.
15350 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
15351 Call it instead of comint-redirect-original-filter-function (which
15352 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
15353
15354 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
15355
15356 * frame.el (display-monitor-attributes-list): Add NS case.
15357 (ns-display-monitor-attributes-list): Declare.
15358
15359 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
15360
15361 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
15362
15363 2013-05-09 Glenn Morris <rgm@gnu.org>
15364
15365 * international/fontset.el (vertical-centering-font-regexp):
15366 Set standard-value.
15367
15368 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
15369
15370 * bookmark.el (bookmark-search-delay):
15371 * cus-start.el (vertical-centering-font-regexp):
15372 * ps-mule.el (ps-mule-font-info-database-default):
15373 * ps-print.el (ps-default-fg, ps-default-bg):
15374 * type-break.el (type-break-good-break-interval):
15375 * whitespace.el (whitespace-indentation-regexp)
15376 (whitespace-space-after-tab-regexp):
15377 * emacs-lisp/testcover.el (testcover-1value-functions)
15378 (testcover-noreturn-functions, testcover-progn-functions)
15379 (testcover-prog1-functions):
15380 * emulation/viper-init.el (viper-emacs-state-cursor-color):
15381 * eshell/em-glob.el (eshell-glob-translate-alist):
15382 * play/tetris.el (tetris-tty-colors):
15383 * progmodes/cpp.el (cpp-face-default-list):
15384 * progmodes/flymake.el (flymake-allowed-file-name-masks):
15385 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
15386 (idlwave-help-browser-generic-args):
15387 * progmodes/make-mode.el (makefile-special-targets-list):
15388 * progmodes/python.el (python-shell-virtualenv-path):
15389 * progmodes/verilog-mode.el (verilog-active-low-regexp)
15390 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
15391 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
15392 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
15393 * textmodes/reftex-vars.el (reftex-format-label-function):
15394 * textmodes/remember.el (remember-diary-file): Fix custom types.
15395
15396 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
15397 Add :version.
15398
15399 2013-05-09 Leo Liu <sdl.web@gmail.com>
15400
15401 * progmodes/octave.el (inferior-octave-completion-at-point):
15402 Restore file completion. (Bug#14300)
15403 (inferior-octave-startup): Fix incorrect highlighting for the
15404 first prompt.
15405
15406 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15407
15408 * progmodes/ruby-mode.el: First cut at SMIE support.
15409 (ruby-use-smie): New var.
15410 (ruby-smie-grammar): New constant.
15411 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
15412 (ruby-smie--forward-token, ruby-smie--backward-token)
15413 (ruby-smie-rules): New functions.
15414 (ruby-mode-variables): Setup SMIE if applicable.
15415
15416 2013-05-08 Eli Zaretskii <eliz@gnu.org>
15417
15418 * simple.el (line-move-visual): Signal beginning/end of buffer
15419 only if vertical-motion moved less than it was requested. Avoids
15420 silly incorrect error messages when there are display strings with
15421 multiple newlines at EOL.
15422
15423 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15424
15425 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
15426 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
15427 (prolog-char-quote-workaround):
15428 * progmodes/cperl-mode.el (cperl-under-as-char):
15429 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
15430 Mark as obsolete.
15431 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
15432 their declaration.
15433 (vhdl-mode-syntax-table-init): Remove.
15434
15435 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
15436 last change.
15437
15438 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
15439 syntax for "_".
15440 (ld-script-font-lock-keywords):
15441 Change regexps to use things like \_< and \_>.
15442
15443 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
15444 Change all regexps to use things like \_< and \_>.
15445
15446 * progmodes/autoconf.el (autoconf-definition-regexp)
15447 (autoconf-font-lock-keywords, autoconf-current-defun-function):
15448 Handle a _ with symbol syntax.
15449 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
15450
15451 * progmodes/ada-mode.el (ada-mode-abbrev-table):
15452 Consolidate declaration.
15453 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
15454 the declaration.
15455 (ada-create-syntax-table): Remove.
15456 (ada-capitalize-word): Don't mess with the syntax of "_" since it
15457 already has the right syntax nowadays.
15458 (ada-goto-next-word): Don't change the syntax of "_".
15459
15460 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
15461 with-wrapper-hook.
15462
15463 2013-05-08 Sam Steingold <sds@gnu.org>
15464
15465 * thingatpt.el (thing-at-point): Accept optional second argument
15466 NO-PROPERTIES to strip the text properties from the return value.
15467 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
15468 to `thing-at-point' instead of stripping the properties ourselves.
15469 Also, when `thing-at-point' fails to find a url, prepend "http://"
15470 to the filename at point on the assumption that the user is
15471 pointing at something like gnu.org/gnu.
15472
15473 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
15474
15475 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
15476 * faces.el (crm-separator):
15477 Silence byte-compiler.
15478
15479 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
15480 (tool-bar-map): Remove unneeded defvars.
15481
15482 2013-05-08 Leo Liu <sdl.web@gmail.com>
15483
15484 Re-work a fix for bug#10994 based on Le Wang's patch.
15485 * ido.el (ido-remove-consecutive-dups): New helper.
15486 (ido-completing-read): Use it.
15487 (ido-chop): Revert fix for bug#10994.
15488
15489 2013-05-08 Adam Spiers <emacs@adamspiers.org>
15490
15491 * cus-edit.el (custom-save-variables):
15492 Pretty-print long values. (Bug#14187)
15493
15494 2013-05-08 Glenn Morris <rgm@gnu.org>
15495
15496 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
15497 (m4-mode-syntax-table): Init in the defvar.
15498 (m4-mode-abbrev-table): Let define-derived-mode define it.
15499
15500 2013-05-08 Tom Tromey <tromey@redhat.com>
15501
15502 * progmodes/m4-mode.el (m4-mode-syntax-table):
15503 Do not treat "_" as word constituent. (Bug#14167)
15504
15505 2013-05-07 Glenn Morris <rgm@gnu.org>
15506
15507 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
15508 Remove explicit eshell-isearch-cancel-map.
15509
15510 * progmodes/f90.el (f90-smart-end-names): New option.
15511 (f90-smart-end): Doc fix.
15512 (f90-end-block-optional-name): New constant.
15513 (f90-block-match): Respect f90-smart-end-names.
15514
15515 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
15516
15517 * progmodes/octave.el (octave-smie-forward-token): Be more careful
15518 about implicit semi-colons (bug#14218).
15519
15520 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15521
15522 * frame.el (display-monitor-attributes-list)
15523 (frame-monitor-attributes): New functions.
15524
15525 2013-05-06 Leo Liu <sdl.web@gmail.com>
15526
15527 * progmodes/octave.el (octave-syntax-propertize-function): Change
15528 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
15529 (octave-font-lock-keywords): Use octave-operator-regexp.
15530 (octave-completion-at-point): Rename from
15531 octave-completion-at-point-function.
15532 (inferior-octave-directory-tracker): Robustify.
15533 (octave-text-functions): Remove and fix its uses. No such things
15534 any more.
15535
15536 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15537
15538 * emacs-lisp/trace.el (trace--display-buffer): New function.
15539 (trace-make-advice): Use it.
15540
15541 2013-05-06 Juri Linkov <juri@jurta.org>
15542
15543 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
15544 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
15545 Doc fix.
15546 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
15547 in the help string. (Bug#12985)
15548
15549 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
15550
15551 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
15552
15553 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15554
15555 * progmodes/perl-mode.el: Add support for here documents.
15556 (perl-syntax-propertize-function): Match here-doc markers.
15557 (perl-syntax-propertize-special-constructs): Find their end.
15558 (perl-imenu-generic-expression): Use [:alnum:].
15559
15560 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
15561 (advice--add-function): Refresh the advice if already present
15562 (bug#14317).
15563
15564 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
15565
15566 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
15567
15568 2013-05-06 Glenn Morris <rgm@gnu.org>
15569
15570 * w32-fns.el (w32-charset-info-alist): Declare.
15571
15572 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
15573 of its defcustom properties.
15574 (eshell-cmpl-initialize): No need to load pcomplete.
15575
15576 * generic-x.el: No need to require comint when compiling.
15577
15578 * net/eudc-export.el: Make it loadable without bbdb.
15579 (top-level): Use require rather than load-library.
15580 (eudc-create-bbdb-record, eudc-bbdbify-phone)
15581 (eudc-batch-export-records-to-bbdb)
15582 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
15583 Require bbdb.
15584
15585 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15586
15587 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
15588 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
15589 some tweaks, instead.
15590
15591 2013-05-05 Leo Liu <sdl.web@gmail.com>
15592
15593 * progmodes/octave.el (octave-font-lock-keywords)
15594 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
15595 (inferior-octave-send-list-and-digest): Improve error message.
15596 (octave-mode, inferior-octave-mode): Use setq-local.
15597 (octave-help): Set info-lookup-mode.
15598
15599 2013-05-05 Richard Stallman <rms@gnu.org>
15600
15601 * vc/compare-w.el (compare-windows-whitespace):
15602 Treat no-break space as whitespace.
15603
15604 * mail/rmailsum.el (rmail-summary-rmail-update):
15605 Detect empty summary and don't change selected message.
15606 (rmail-summary-goto-msg): Likewise.
15607
15608 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
15609 Doc fixes, rename args.
15610
15611 2013-05-05 Alan Mackenzie <acm@muc.de>
15612
15613 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
15614
15615 2013-05-05 Juri Linkov <juri@jurta.org>
15616
15617 * info.el (Info-read-subfile): Use (point-min) instead of (point)
15618 to not add the length of the summary segment to the return value.
15619 (Bug#14125)
15620
15621 2013-05-05 Leo Liu <sdl.web@gmail.com>
15622
15623 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
15624 (inferior-octave-output-filter): Remove.
15625 (octave-send-region, inferior-octave-startup): Fix callers.
15626 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
15627 (octave-binary-file-extensions): New user variable.
15628 (octave-find-definition): Confirm if opening binary files.
15629 (octave-help-file): Use octave-find-definition to get the binary
15630 confirmation.
15631 (octave-help): Adjust for octave-help-file change.
15632
15633 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
15634
15635 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
15636 Merge the two entries that handle function definitions.
15637 (pascal--syntax-propertize): New const.
15638 (pascal-mode): Use it. Use setq-local.
15639
15640 2013-05-04 Glenn Morris <rgm@gnu.org>
15641
15642 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
15643 (diary-from-outlook): Respect diary-from-outlook-function.
15644
15645 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
15646
15647 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
15648 Move the declaration from C.
15649 (read-minibuffer, eval-minibuffer): Move from C.
15650 (completion-setup-function): Avoid minibuffer-completion-contents.
15651
15652 2013-05-03 Leo Liu <sdl.web@gmail.com>
15653
15654 * progmodes/octave.el (octave-font-lock-keywords): Do not
15655 dehighlight 'end' in comments or strings.
15656 (octave-completing-read, octave-goto-function-definition):
15657 New helpers.
15658 (octave-help-buffer): New user variable.
15659 (octave-help-file, octave-help-function): New button types.
15660 (octave-help): New command and bind it to C-h ;.
15661 (octave-find-definition): New command and bind it to M-.
15662 (user-error): Alias to error if not defined.
15663
15664 2013-05-02 Leo Liu <sdl.web@gmail.com>
15665
15666 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
15667 for \. (bug#14332)
15668 (octave-font-lock-keywords): Include [ and {.
15669
15670 2013-05-02 Leo Liu <sdl.web@gmail.com>
15671
15672 * progmodes/octave.el (inferior-octave-startup-file): Change default.
15673 (inferior-octave): Remove calling comint-mode and return the buffer.
15674 (inferior-octave-startup): Cosmetic changes.
15675
15676 2013-05-02 Leo Liu <sdl.web@gmail.com>
15677
15678 * progmodes/octave.el (octave-syntax-propertize-function):
15679 Include the case when ' is at line beginning. (Bug#14336)
15680
15681 2013-05-02 Glenn Morris <rgm@gnu.org>
15682
15683 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
15684 * desktop.el (vc-dir-mode): Just autoload it here.
15685
15686 2013-05-02 Alan Mackenzie <acm@muc.de>
15687
15688 Eliminate variable c-standard-font-lock-fontify-region-function.
15689 * progmodes/cc-mode.el
15690 (c-standard-font-lock-fontify-region-function): Remove.
15691 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
15692
15693 2013-05-01 Leo Liu <sdl.web@gmail.com>
15694
15695 * progmodes/octave.el: Compatible with older emacs-24 releases.
15696 (inferior-octave-has-built-in-variables): Remove. Built-in
15697 variables were removed from Octave in 2007.
15698 (inferior-octave-startup): Fix uses.
15699 (comint-line-beginning-position): Remove compatibility code for
15700 emacs 21.
15701
15702 2013-05-01 Juri Linkov <juri@jurta.org>
15703
15704 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
15705
15706 2013-05-01 Juri Linkov <juri@jurta.org>
15707
15708 * comint.el (comint-previous-matching-input): Don't print message
15709 "History item: %d" when `isearch-mode' is active.
15710 (comint-history-isearch-message): Print message "History item: %d"
15711 when `comint-input-ring-index' is not empty and this function is
15712 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
15713
15714 2013-05-01 Leo Liu <sdl.web@gmail.com>
15715
15716 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
15717 definitions. Use completion-at-point to insert keywords.
15718 (octave-abbrev-start): Remove.
15719 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
15720
15721 2013-04-30 Leo Liu <sdl.web@gmail.com>
15722
15723 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
15724 change.
15725
15726 2013-04-30 Alan Mackenzie <acm@muc.de>
15727
15728 Handle arbitrarily long C++ member initialisation lists.
15729 * progmodes/cc-engine.el (c-back-over-member-initializers):
15730 new function.
15731 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
15732 (most) member init lists.
15733
15734 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15735
15736 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
15737 variable.
15738
15739 2013-04-30 Leo Liu <sdl.web@gmail.com>
15740
15741 * progmodes/octave.el (octave-variables): Remove. No builtin
15742 variables any more. All converted to functions.
15743 (octave-font-lock-keywords, octave-completion-at-point-function):
15744 Fix uses.
15745 (octave-font-lock-texinfo-comment): New user variable.
15746 (octave-texinfo-font-lock-keywords): New variable for texinfo
15747 comment block.
15748 (octave-function-comment-block): New face.
15749 (octave-font-lock-texinfo-comment): New function.
15750 (octave-mode): Font lock texinfo comment block.
15751
15752 2013-04-29 Leo Liu <sdl.web@gmail.com>
15753
15754 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
15755 indexing expression.
15756 (octave-continuation-string): Do not use \.
15757 (inferior-octave-complete-impossible): Remove.
15758 (inferior-octave-completion-table)
15759 (inferior-octave-completion-at-point): Remove its uses.
15760 (inferior-octave-startup): completion_matches was introduced to
15761 Octave in 1996 so safe to assume it.
15762 (octave-function-file-comment): Improve to follow how Octave does it.
15763 (octave-update-function-file-comment): Tweak.
15764
15765 2013-04-29 Leo Liu <sdl.web@gmail.com>
15766
15767 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
15768 (inferior-octave-startup): Remove inferior-octave-startup-hook.
15769 (octave-function-file-comment): Fix typo.
15770 (octave-sync-function-file-names): Use read-char-choice.
15771
15772 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
15773
15774 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
15775 to t for the less important warnings.
15776
15777 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
15778
15779 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
15780
15781 2013-04-27 Glenn Morris <rgm@gnu.org>
15782
15783 * vc/log-view.el (log-view-current-entry):
15784 Treat "---" separator lines as part of the following rev. (Bug#14169)
15785
15786 2013-04-27 Juri Linkov <juri@jurta.org>
15787
15788 * subr.el (read-number): Doc fix about using it by interactive
15789 code letter `n'. (Bug#14254)
15790
15791 2013-04-27 Juri Linkov <juri@jurta.org>
15792
15793 * desktop.el (desktop-auto-save-timeout): New option.
15794 (desktop-file-checksum): New variable.
15795 (desktop-save): Add optional arg `auto-save' and don't auto-save
15796 if nothing changed.
15797 (desktop-auto-save-timer): New variable.
15798 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
15799 (after-init-hook): Call `desktop-auto-save-set-timer'.
15800 Suggested by Reuben Thomas <rrt@sc3d.org> in
15801 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
15802
15803 2013-04-27 Leo Liu <sdl.web@gmail.com>
15804
15805 * progmodes/octave.el (octave-function-file-p)
15806 (octave-skip-comment-forward, octave-function-file-comment)
15807 (octave-update-function-file-comment): New functions.
15808 (octave-mode-map): Bind C-c ; to
15809 octave-update-function-file-comment.
15810 (octave-mode-menu): Add octave-update-function-file-comment.
15811 (octave-mode, inferior-octave-mode): Fix doc-string.
15812 (octave-insert-defun): Conform to Octave's coding convention.
15813 (Bug#14285)
15814
15815 * files.el (basic-save-buffer): Don't let errors in
15816 before-save-hook prevent saving buffer.
15817
15818 2013-04-20 Roland Winkler <winkler@gnu.org>
15819
15820 * faces.el (read-face-name): Use completing-read if arg multiple
15821 is nil.
15822
15823 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
15824
15825 * ls-lisp.el (ls-lisp-insert-directory): If no files are
15826 displayed, move point to after the totals line.
15827 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
15828 for the details.
15829
15830 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
15831
15832 * emacs-lisp/package.el (package-autoload-ensure-default-file):
15833 Add current dir to the load-path.
15834 (package-generate-autoloads): Don't rely on
15835 autoload-ensure-default-file.
15836
15837 2013-04-26 Reuben Thomas <rrt@sc3d.org>
15838
15839 * textmodes/remember.el (remember-store-in-files): Document that
15840 the file name format is passed to `format-time-string'.
15841
15842 2013-04-26 Leo Liu <sdl.web@gmail.com>
15843
15844 * progmodes/octave.el (octave-sync-function-file-names): New function.
15845 (octave-mode): Use it in before-save-hook.
15846
15847 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
15848
15849 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
15850 (bug#14274).
15851
15852 * progmodes/octave.el (octave-smie-forward-token): Properly skip
15853 \n and comment, even if it's not an implicit ; (bug#14218).
15854
15855 2013-04-26 Glenn Morris <rgm@gnu.org>
15856
15857 * subr.el (read-number): Once more use `read' rather than
15858 `string-to-number', to trap non-numeric input. (Bug#14254)
15859
15860 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
15861
15862 * emacs-lisp/syntax.el (syntax-propertize-multiline):
15863 Use `syntax-multiline' text property consistently instead of
15864 `font-lock-multiline'. (Bug#14237)
15865
15866 2013-04-26 Glenn Morris <rgm@gnu.org>
15867
15868 * emacs-lisp/shadow.el (list-load-path-shadows):
15869 No longer necessary to check for duplicate simple.el, since
15870 2012-07-07 change to init_lread to not include installation lisp
15871 directories in load-path when running uninstalled. (Bug#14270)
15872
15873 2013-04-26 Leo Liu <sdl.web@gmail.com>
15874
15875 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
15876 (octave-mode, inferior-octave-mode): Use setq-local.
15877 (octave-not-in-string-or-comment-p): Rename to
15878 octave-in-string-or-comment-p.
15879 (octave-in-comment-p, octave-in-string-p)
15880 (octave-in-string-or-comment-p): Replace defsubst with defun.
15881
15882 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
15883
15884 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
15885
15886 2013-04-25 Bastien Guerry <bzg@gnu.org>
15887
15888 * textmodes/remember.el (remember-data-directory)
15889 (remember-directory-file-name-format): Fix custom types.
15890
15891 2013-04-25 Leo Liu <sdl.web@gmail.com>
15892
15893 * progmodes/octave.el (octave-completion-at-point-function):
15894 Make use of inferior octave process.
15895 (octave-initialize-completions): Remove.
15896 (inferior-octave-completion-table): New function.
15897 (inferior-octave-completion-at-point): Use it.
15898 (octave-completion-alist): Remove.
15899
15900 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15901
15902 * progmodes/opascal.el: Use font-lock and syntax-propertize.
15903 (opascal-mode-syntax-table): New var.
15904 (opascal-literal-kind, opascal-is-literal-end)
15905 (opascal-literal-token-at): Rewrite.
15906 (opascal--literal-start-re, opascal-font-lock-keywords)
15907 (opascal--syntax-propertize): New constants.
15908 (opascal-font-lock-defaults): Adjust.
15909 (opascal-mode): Use them. Set comment-<foo> variables as well.
15910 (delphi-comment-face, opascal-comment-face, delphi-string-face)
15911 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
15912 (delphi-other-face, opascal-other-face): Remove face variables.
15913 (opascal-save-state): Remove macro.
15914 (opascal-fontifying-progress-step): Remove constant.
15915 (opascal--ignore-changes): Remove var.
15916 (opascal-set-token-property, opascal-parse-next-literal)
15917 (opascal-is-stable-literal, opascal-complete-literal)
15918 (opascal-is-literal-start, opascal-face-of)
15919 (opascal-parse-region, opascal-parse-region-until-stable)
15920 (opascal-fontify-region, opascal-after-change)
15921 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
15922 (opascal-debug-parse-region, opascal-debug-parse-window)
15923 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
15924 (opascal-debug-fontify-buffer): Remove.
15925 (opascal-debug-mode-map): Adjust accordingly.
15926
15927 2013-04-25 Leo Liu <sdl.web@gmail.com>
15928
15929 Merge octave-mod.el and octave-inf.el into octave.el with some
15930 cleanups.
15931 * progmodes/octave.el: New file renamed from octave-mod.el.
15932 * progmodes/octave-inf.el: Merged into octave.el.
15933 * progmodes/octave-mod.el: Renamed to octave.el.
15934
15935 2013-04-25 Tassilo Horn <tsdh@gnu.org>
15936
15937 * textmodes/reftex-vars.el
15938 (reftex-label-ignored-macros-and-environments): New defcustom.
15939
15940 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
15941
15942 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15943
15944 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
15945 (smie-indent-keyword): Improve the check to ensure that the next
15946 comment is really on the same line.
15947 (smie-indent-comment): Don't align with a subsequent closer (or eob).
15948
15949 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
15950 semi-colons if the line is not otherwise empty (bug#14218).
15951
15952 2013-04-25 Glenn Morris <rgm@gnu.org>
15953
15954 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
15955
15956 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
15957
15958 * progmodes/opascal.el (opascal-set-token-property): Rename from
15959 opascal-set-text-properties and only set `token' (bug#14134).
15960 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
15961 (opascal-literal-text-properties): Remove.
15962 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
15963 Adjust callers.
15964
15965 2013-04-24 Reuben Thomas <rrt@sc3d.org>
15966
15967 * textmodes/remember.el (remember-handler-functions): Add an
15968 option for a new handler `remember-store-in-files'.
15969 (remember-data-directory, remember-directory-file-name-format):
15970 New options.
15971 (remember-store-in-files): New function to store remember notes
15972 as separate files within a directory.
15973
15974 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
15975
15976 * progmodes/compile.el (compilation-next-error-function):
15977 Pass "formats" to compilation-find-file (bug#11777).
15978
15979 2013-04-24 Glenn Morris <rgm@gnu.org>
15980
15981 * vc/vc-bzr.el (vc-bzr-print-log):
15982 * vc/vc-hg.el (vc-hg-print-log):
15983 * vc/vc-svn.el (vc-svn-print-log):
15984 Fix START-REVISION with LIMIT != 1. (Bug#14168)
15985
15986 * vc/vc-bzr.el (vc-bzr-print-log):
15987 * vc/vc-cvs.el (vc-cvs-print-log):
15988 * vc/vc-git.el (vc-git-print-log):
15989 * vc/vc-hg.el (vc-hg-print-log):
15990 * vc/vc-mtn.el (vc-mtn-print-log):
15991 * vc/vc-rcs.el (vc-rcs-print-log):
15992 * vc/vc-sccs.el (vc-sccs-print-log):
15993 * vc/vc-svn.el (vc-svn-print-log):
15994 * vc/vc.el (vc-print-log-internal): Doc fixes.
15995
15996 2013-04-23 Glenn Morris <rgm@gnu.org>
15997
15998 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
15999 Remove venerable code attempting to avoid substitute-command-keys.
16000
16001 2013-04-23 Tassilo Horn <tsdh@gnu.org>
16002
16003 * textmodes/reftex-vars.el (reftex-label-regexps):
16004 Call `reftex-compile-variables' after changes to this variable.
16005
16006 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
16007
16008 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
16009 Use lexical-binding.
16010 (jit-lock-force-redisplay): Use markers, check buffer's continued
16011 existence and beware narrowed buffers.
16012 (jit-lock-fontify-now): Adjust call accordingly.
16013
16014 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
16015
16016 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
16017 to avoid misleading the user.
16018
16019 2013-04-22 Leo Liu <sdl.web@gmail.com>
16020
16021 * info-look.el: Prefer latex2e.info. (Bug#14240)
16022
16023 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
16024
16025 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
16026
16027 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
16028 * net/tramp.el (tramp-call-process): ... here.
16029 (tramp-set-completion-function, tramp-parse-putty):
16030 * net/tramp-adb.el (tramp-adb-execute-adb-command):
16031 * net/tramp-gvfs.el (tramp-gvfs-send-command):
16032 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
16033 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
16034 (tramp-call-local-coding-command): Use `tramp-call-process'
16035 instead of `tramp-compat-call-process'.
16036
16037 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
16038 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
16039 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
16040 (tramp-find-inline-compress): Improve traces.
16041 (tramp-maybe-send-script): Check for Perl binary.
16042 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
16043
16044 2013-04-22 Daiki Ueno <ueno@gnu.org>
16045
16046 * epg.el (epg-context-pinentry-mode): New function.
16047 (epg-context-set-pinentry-mode): New function.
16048 (epg--start): Pass --pinentry-mode option to gpg command.
16049
16050 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
16051
16052 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
16053 `comint-dynamic-complete' is obsolete since 24.1, replaced by
16054 `completion-at-point'. (Bug#13774)
16055
16056 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
16057 default key binding for `describe-distribution' has been moved to
16058 `C-h C-o'. (Bug#13970)
16059
16060 2013-04-21 Glenn Morris <rgm@gnu.org>
16061
16062 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
16063 Add doc strings.
16064 (vc-print-log): Clarify interactive prompt.
16065
16066 2013-04-20 Glenn Morris <rgm@gnu.org>
16067
16068 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
16069 No longer include timestamp etc information.
16070
16071 2013-04-20 Roland Winkler <winkler@gnu.org>
16072
16073 * faces.el (read-face-name): Bug fix, return just one face if arg
16074 multiple is nil. (Bug#14209)
16075
16076 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
16077
16078 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
16079 (remove-function): Autoload.
16080
16081 * comint.el (comint-redirect-original-filter-function): Remove.
16082 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
16083 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
16084 (vc-cvs-annotate-command):
16085 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
16086 * progmodes/prolog.el (prolog-consult-compile):
16087 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
16088 Use add/remove-function instead.
16089 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
16090 (gud-tooltip-process-output, gud-tooltip-tips):
16091 Use add/remove-function instead.
16092 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
16093 (scheme-interaction-mode, exit-scheme-interaction-mode):
16094 Use add/remove-function instead.
16095
16096 * vc/vc-dispatcher.el: Use lexical-binding.
16097 (vc--process-sentinel): Rename from vc-process-sentinel.
16098 Change last arg to be the code to run. Don't use vc-previous-sentinel
16099 and vc-sentinel-commands any more.
16100 (vc-exec-after): Allow code to be a function. Use add/remove-function.
16101 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
16102
16103 2013-04-19 Masatake YAMATO <yamato@redhat.com>
16104
16105 * progmodes/sh-script.el (sh-imenu-generic-expression):
16106 Handle function names with a single character. (Bug#14111)
16107
16108 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
16109
16110 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
16111 for subroutines defined in an eval (bug#14182).
16112
16113 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16114
16115 * bookmark.el (bookmark-completing-read): Improve handling of empty
16116 string (bug#14176).
16117
16118 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
16119
16120 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
16121
16122 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
16123
16124 New faster Imenu implementation (bug#14058).
16125 * progmodes/python.el (python-imenu-prev-index-position)
16126 (python-imenu-format-item-label-function)
16127 (python-imenu-format-parent-item-label-function)
16128 (python-imenu-format-parent-item-jump-label-function):
16129 New vars.
16130 (python-imenu-format-item-label)
16131 (python-imenu-format-parent-item-label)
16132 (python-imenu-format-parent-item-jump-label)
16133 (python-imenu--put-parent, python-imenu--build-tree)
16134 (python-imenu-create-index, python-imenu-create-flat-index)
16135 (python-util-popn): New functions.
16136 (python-mode): Set imenu-create-index-function to
16137 python-imenu-create-index.
16138
16139 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
16140
16141 * winner.el (winner-active-region): Use region-active-p, activate-mark
16142 and deactivate-mark (bug#14225).
16143
16144 * simple.el (deactivate-mark): Don't inline it.
16145
16146 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
16147
16148 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
16149
16150 2013-04-18 Tassilo Horn <tsdh@gnu.org>
16151
16152 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
16153 file extensions from the archive-mode entry in order to prefer
16154 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
16155
16156 2013-04-18 Leo Liu <sdl.web@gmail.com>
16157
16158 * bindings.el (help-event-list): Add ?\?.
16159
16160 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
16161
16162 * subr.el (with-wrapper-hook): Declare obsolete.
16163 * simple.el (filter-buffer-substring-function): New hook.
16164 (filter-buffer-substring): Use it.
16165 (filter-buffer-substring-functions): Mark obsolete.
16166 * minibuffer.el (completion-in-region-function): New hook.
16167 (completion-in-region): Use it.
16168 (completion-in-region-functions): Mark obsolete.
16169 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
16170 * abbrev.el (abbrev-expand-function): New hook.
16171 (expand-abbrev): Use it.
16172 (abbrev-expand-functions): Mark obsolete.
16173 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
16174 and :filter-return.
16175
16176 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
16177
16178 * progmodes/python.el (python-nav--syntactically): Fix cornercases
16179 and do not care about match data.
16180
16181 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
16182
16183 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
16184 completion tables when completing error conditions and
16185 `declare' arguments.
16186 (lisp-complete-symbol, field-complete): Mark as obsolete.
16187 (check-parens): Unmatched parens are user errors.
16188 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
16189
16190 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
16191
16192 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
16193 command changed buffer (ie. `flyspell-pre-buffer' is not current
16194 buffer), which prevents making decisions based on invalid value of
16195 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
16196 cause an error when `flyspell-pre-point' was nil after switching
16197 buffers.
16198 (flyspell-post-command-hook): No longer needs to change buffers when
16199 checking pre-word. While at it remove unnecessary progn.
16200
16201 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
16202
16203 * textmodes/ispell.el (ispell-add-per-file-word-list):
16204 Fix `flyspell-correct-word-before-point' error when accepting
16205 words and `coment-padding' is an integer by using
16206 `comment-normalize-vars' (Bug #14214).
16207
16208 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
16209
16210 New defun movement commands.
16211 * progmodes/python.el (python-nav--syntactically)
16212 (python-nav--forward-defun, python-nav-backward-defun)
16213 (python-nav-forward-defun): New functions.
16214
16215 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
16216
16217 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
16218 (python-syntax-context): Use named compiler-macro for backwards
16219 compatibility with Emacs 24.x.
16220
16221 2013-04-17 Leo Liu <sdl.web@gmail.com>
16222
16223 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
16224 octave-hide-process-buffer.
16225
16226 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
16227
16228 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
16229 (bug#14216).
16230
16231 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
16232
16233 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
16234 Fix adjustment of offset when receiving incomplete responses from GDB
16235 (bug#14129).
16236
16237 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
16238
16239 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
16240 python-mode-abbrev-table.
16241 (python-skeleton-define): Adjust accordingly.
16242 (python-mode-abbrev-table): New table that inherits from it so that
16243 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
16244
16245 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
16246 (abbrev-symbol): Use it.
16247 (abbrev--before-point): Use it since we already handle inheritance.
16248
16249 2013-04-16 Leo Liu <sdl.web@gmail.com>
16250
16251 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
16252 binding to info-lookup-symbol.
16253
16254 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
16255
16256 * minibuffer.el (completion--twq-all):
16257 * term/ns-win.el (ns-initialize-window-system):
16258 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
16259
16260 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
16261
16262 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
16263 global bindings.
16264
16265 * doc-view.el (doc-view-start-process): Handle url-handler directories.
16266
16267 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
16268
16269 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
16270 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
16271 to nil.
16272 (ruby-end-of-defun): Remove the unused arg, change the docstring
16273 to reflect that this function is only used as the value of
16274 `end-of-defun-function'.
16275 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
16276 to reflect an earlier change that beginning/end-of-defun functions
16277 jump between methods in a class definition, as well as top-level
16278 functions.
16279
16280 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16281
16282 * minibuffer.el (minibuffer-complete): Don't just scroll
16283 a *Completions* that's been iconified.
16284 (minibuffer-force-complete): Make sure repetitions do cycle when going
16285 through completion-in-region -> minibuffer-complete.
16286
16287 2013-04-15 Alan Mackenzie <acm@muc.de>
16288
16289 Correct the placement of c-cpp-delimiters when there're #s not at
16290 col 0.
16291
16292 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
16293 place a submatch around the #.
16294 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
16295 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
16296 on the #, not BOL.
16297
16298 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16299
16300 * emacs-lisp/nadvice.el: Properly test names when adding advice.
16301 (advice--member-p): New arg `name'.
16302 (advice--add-function, advice-member-p): Use it (bug#14202).
16303
16304 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
16305
16306 Reformulate java imenu-generic-expression.
16307 The old expression contained ill formed regexps.
16308
16309 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
16310 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
16311 (cc-imenu-java-method-arg-regexp): New defconsts.
16312 (cc-imenu-java-build-type-args-regex): New defun.
16313 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
16314 handling of spaces in the regexp.
16315
16316 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16317
16318 * textmodes/ispell.el (ispell-command-loop): Remove
16319 flyspell highlight of a word when ispell accepts it (bug #14178).
16320
16321 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
16322
16323 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
16324 uses code from the previous `ange-ftp-run-real-handler'.
16325 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
16326 only in case that function exist. This is needed for proper
16327 unloading of Tramp.
16328
16329 2013-04-15 Tassilo Horn <tsdh@gnu.org>
16330
16331 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
16332
16333 * textmodes/reftex.el (reftex-compile-variables): Use it.
16334
16335 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
16336
16337 * files.el (normal-mode): Only use default major-mode if no other mode
16338 was specified.
16339
16340 * emacs-lisp/trace.el (trace-values): New function.
16341
16342 * files.el: Allow : in local variables (bug#14089).
16343 (hack-local-variable-regexp): New var.
16344 (hack-local-variables-prop-line, hack-local-variables): Use it.
16345
16346 2013-04-13 Roland Winkler <winkler@gnu.org>
16347
16348 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
16349 data before it gets modified by bibtex-beginning-of-entry.
16350
16351 2013-04-13 Roland Winkler <winkler@gnu.org>
16352
16353 * textmodes/bibtex.el (bibtex-url): Doc fix.
16354
16355 2013-04-13 Roland Winkler <winkler@gnu.org>
16356
16357 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
16358 does not visit a BibTeX file, exclude it from the list of buffers
16359 returned by bibtex-initialize.
16360
16361 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
16362
16363 * window.el (split-window): Remove interactive form, since as a
16364 command this function is a special case of split-window-below.
16365 Correct doc string.
16366
16367 2013-04-12 Roland Winkler <winkler@gnu.org>
16368
16369 * faces.el (read-face-name): Do not override value of arg default.
16370 Allow single faces and strings as default values. Remove those
16371 elements from return value that are not faces.
16372 (describe-face): Simplify.
16373 (face-at-point): New optional args thing and multiple so that this
16374 function can provide the same functionality previously provided by
16375 read-face-name.
16376 (make-face-bold, make-face-unbold, make-face-italic)
16377 (make-face-unitalic, make-face-bold-italic, invert-face)
16378 (modify-face, read-face-and-attribute): Use face-at-point.
16379
16380 * cus-edit.el (customize-face, customize-face-other-window)
16381 * cus-theme.el (custom-theme-add-face)
16382 * face-remap.el (buffer-face-set)
16383 * facemenu.el (facemenu-set-face): Use face-at-point.
16384
16385 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
16386
16387 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
16388
16389 2013-04-10 Tassilo Horn <tsdh@gnu.org>
16390
16391 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
16392 off leading { and trailing } from field values.
16393
16394 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
16395
16396 * emacs-lisp/timer.el (timer--check): New function.
16397 (timer--time, timer-set-function, timer-event-handler): Use it.
16398 (timer-set-idle-time): Simplify.
16399 (timer--activate): CSE.
16400 (timer-event-handler): Give more info in error message.
16401 (internal-timer-start-idle): New function, moved from C.
16402
16403 * mpc.el (mpc-proc): Add `restart' argument.
16404 (mpc-proc-cmd): Use it.
16405 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
16406 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
16407 less often.
16408
16409 2013-04-10 Masatake YAMATO <yamato@redhat.com>
16410
16411 * progmodes/sh-script.el: Implement `sh-mode' own
16412 `add-log-current-defun-function' (bug#14112).
16413 (sh-current-defun-name): New function.
16414 (sh-mode): Use the function.
16415
16416 2013-04-09 Bastien Guerry <bzg@gnu.org>
16417
16418 * simple.el (choose-completion-string): Fix docstring (bug#14163).
16419
16420 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
16421
16422 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
16423
16424 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
16425 timer (bug#14156).
16426
16427 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
16428
16429 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
16430 declaration.
16431
16432 2013-04-07 Leo Liu <sdl.web@gmail.com>
16433
16434 * pcmpl-x.el: New file.
16435
16436 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
16437
16438 Do not set x-display-name until X connection is established.
16439 This is needed to prevent from weird situation described at
16440 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
16441 * frame.el (make-frame): Set x-display-name after call to
16442 window system initialization function, not before.
16443 * term/x-win.el (x-initialize-window-system): Add optional
16444 display argument and use it.
16445 * term/w32-win.el (w32-initialize-window-system):
16446 * term/ns-win.el (ns-initialize-window-system):
16447 * term/pc-win.el (msdos-initialize-window-system):
16448 Add compatible optional display argument.
16449
16450 2013-04-06 Eli Zaretskii <eliz@gnu.org>
16451
16452 * files.el (normal-backup-enable-predicate): On MS-Windows and
16453 MS-DOS compare truenames of temporary-file-directory and of the
16454 file, so that 8+3 aliases (usually found in $TEMP on Windows)
16455 don't fail comparison by compare-strings. Also, compare file
16456 names case-insensitively on MS-Windows and MS-DOS.
16457
16458 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
16459
16460 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
16461 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
16462
16463 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
16464
16465 * whitespace.el (whitespace-color-on, whitespace-color-off):
16466 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
16467
16468 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
16469
16470 * ispell.el (ispell-set-spellchecker-params):
16471 Really set `ispell-args' for all equivs.
16472
16473 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
16474
16475 * ido.el (ido-completions): Use extra elements of ido-decorations
16476 (bug#14143).
16477 (ido-decorations): Update docstring.
16478
16479 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
16480
16481 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
16482 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
16483 nil during initialization, in order not to miss changes since the
16484 file was opened. (Bug#14140)
16485
16486 2013-04-05 Leo Liu <sdl.web@gmail.com>
16487
16488 * kmacro.el (kmacro-call-macro): Fix bug#14135.
16489
16490 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
16491
16492 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
16493
16494 2013-04-04 Glenn Morris <rgm@gnu.org>
16495
16496 * electric.el (electric-pair-inhibit-predicate): Add :version.
16497
16498 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
16499
16500 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
16501 when a package is required several times (bug#14082).
16502
16503 2013-04-04 Roland Winkler <winkler@gnu.org>
16504
16505 * faces.el (read-face-name): Behave as promised by the docstring.
16506 Assume that arg default is a list of faces.
16507 (describe-face): Call read-face-name with list of default faces.
16508
16509 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16510
16511 * bookmark.el: Fix deletion of bookmarks (bug#13972).
16512 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
16513 (bookmark-bmenu-execute-deletions): Only skip first line if it's
16514 the header.
16515 (bookmark-exit-hook-internal): Save even if list is empty.
16516
16517 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
16518
16519 * emacs-lisp/package.el (package-pinned-packages): New var.
16520 (package--add-to-archive-contents): Obey it (bug#14118).
16521
16522 2013-04-03 Alan Mackenzie <acm@muc.de>
16523
16524 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
16525 Also adapt to the new values of element 7 of a parse state.
16526
16527 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
16528 parameter `not-in-delimiter'. Handle being inside comment opener.
16529 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
16530 character in case we're typing a '*' after a '/'.
16531 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
16532 instead by passing the parameter to c-state-pp-to-literal.
16533
16534 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
16535 for elt. 7 of a parse state.
16536
16537 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
16538
16539 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
16540 * international/latin1-disp.el, international/mule-util.el:
16541 * language/cyril-util.el, language/european.el, language/ind-util.el:
16542 * language/lao-util.el, language/thai.el, language/tibet-util.el:
16543 * language/tibetan.el, language/viet-util.el:
16544 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
16545
16546 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
16547
16548 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
16549 (electric-pair-post-self-insert-function): Use it.
16550 (electric-pair-default-inhibit): New function, extracted from
16551 electric-pair-post-self-insert-function.
16552
16553 2013-03-31 Roland Winkler <winkler@gnu.org>
16554
16555 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
16556
16557 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
16558
16559 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
16560
16561 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
16562
16563 Un-indent after "pass" and "return" statements (Bug#13888)
16564 * progmodes/python.el (python-indent-block-enders): New var.
16565 (python-indent-calculate-indentation): Use it.
16566
16567 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
16568
16569 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
16570 defun. Defining it as defalias could introduce too eager
16571 byte-compiler optimization. (Bug#14030)
16572
16573 2013-03-30 Chong Yidong <cyd@gnu.org>
16574
16575 * iswitchb.el (iswitchb-read-buffer): Fix typo.
16576
16577 2013-03-30 Leo Liu <sdl.web@gmail.com>
16578
16579 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
16580 (kmacro-execute-from-register): Pass the keyboard macro to
16581 kmacro-call-macro or repeating won't work correctly.
16582
16583 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
16584
16585 * progmodes/subword.el: Back to using `forward-symbol'.
16586
16587 * subr.el (forward-whitespace, forward-symbol)
16588 (forward-same-syntax): Move from thingatpt.el.
16589
16590 2013-03-29 Leo Liu <sdl.web@gmail.com>
16591
16592 * kmacro.el (kmacro-to-register): New command.
16593 (kmacro-execute-from-register): New function.
16594 (kmacro-keymap): Bind to 'x'. (Bug#14071)
16595
16596 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
16597
16598 * mpc.el: Use defvar-local and setq-local.
16599 (mpc--proc-connect): Connection failures are not bugs.
16600 (mpc-mode-map): `follow-link' only applies to the buffer's content.
16601 (mpc-volume-map): Bind to the up-events.
16602
16603 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
16604
16605 * progmodes/subword.el (superword-mode): Use `forward-sexp'
16606 instead of `forward-symbol'.
16607
16608 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
16609
16610 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
16611 (edebug--recursive-edit): Use it.
16612 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
16613 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
16614
16615 2013-03-28 Leo Liu <sdl.web@gmail.com>
16616
16617 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
16618
16619 2013-03-27 Eli Zaretskii <eliz@gnu.org>
16620
16621 * facemenu.el (list-colors-callback): New defvar.
16622 (list-colors-redisplay): New function.
16623 (list-colors-display): Install list-colors-redisplay as the
16624 revert-buffer-function. (Bug#14063)
16625
16626 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
16627
16628 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
16629 and suffixes don't overlap (bug#14061).
16630
16631 * case-table.el: Use lexical-binding.
16632 (case-table-get-table): New function.
16633 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
16634
16635 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
16636
16637 * progmodes/subword.el: Add `superword-mode' to do word motion
16638 over symbol_words (parallels and leverages `subword-mode' which
16639 does word motion inside MixedCaseWords).
16640
16641 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
16642
16643 * eshell/em-unix.el: Move su and sudo to...
16644 * eshell/em-tramp.el: ...Eshell tramp module.
16645
16646 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
16647
16648 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
16649 Change return value to be a sexp. Delay `get-buffer' to after
16650 restoring the desktop (bug#13951).
16651
16652 2013-03-26 Leo Liu <sdl.web@gmail.com>
16653
16654 * register.el: Move semantic tag handling back to
16655 cedet/semantic/senator.el. (Bug#14052)
16656
16657 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
16658
16659 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
16660 into the prompt either (bug#13963).
16661
16662 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
16663
16664 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
16665 part of "(error-foo)".
16666
16667 2013-03-24 Juri Linkov <juri@jurta.org>
16668
16669 * replace.el (list-matching-lines-prefix-face): New defcustom.
16670 (occur-1): Pass `list-matching-lines-prefix-face' to the function
16671 `occur-engine' if `face-differs-from-default-p' returns t.
16672 (occur-engine): Add `,' inside backquote construct to evaluate
16673 `prefix-face'. Propertize the prefix with the `prefix-face' face.
16674 Pass `prefix-face' to the functions `occur-context-lines' and
16675 `occur-engine-add-prefix'.
16676 (occur-engine-add-prefix, occur-context-lines): Add optional arg
16677 `prefix-face' and propertize the prefix with `prefix-face'.
16678 (Bug#14017)
16679
16680 2013-03-24 Leo Liu <sdl.web@gmail.com>
16681
16682 * nxml/rng-valid.el (rng-validate-while-idle)
16683 (rng-validate-quick-while-idle): Guard against deleted buffer.
16684 (Bug#13999)
16685
16686 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
16687 is the last entry in kill-buffer-hook.
16688
16689 * files.el (kill-buffer-hook): Doc fix.
16690
16691 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
16692
16693 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
16694 Make it safe-local.
16695
16696 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
16697
16698 2013-03-23 Leo Liu <sdl.web@gmail.com>
16699
16700 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
16701 Remove.
16702
16703 * nxml/rng-valid.el (rng-validate-mode)
16704 (rng-after-change-function, rng-do-some-validation):
16705 * nxml/rng-maint.el (rng-validate-buffer):
16706 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
16707 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
16708 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
16709 (nxml-extend-after-change-region): Use with-silent-modifications.
16710
16711 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
16712 timer-idle-list.
16713
16714 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
16715 (rng-next-error-1, rng-previous-error-1): Do not let-bind
16716 timer-idle-list. (Bug#13999)
16717
16718 2013-03-23 Juri Linkov <juri@jurta.org>
16719
16720 * info.el (info-index-match): New face.
16721 (Info-index, Info-apropos-matches): Add a nested subgroup to the
16722 main pattern and add text properties with the new face to matches
16723 in index entries relative to the beginning of the index entry.
16724 (Bug#14015)
16725
16726 2013-03-21 Eric Ludlam <zappo@gnu.org>
16727
16728 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
16729 Inhibit read only while inserting objects.
16730
16731 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
16732
16733 * progmodes/cfengine.el: Update docs to mention
16734 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
16735 symbol motion. Remove "_" from the word syntax.
16736
16737 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
16738
16739 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
16740 syntax for both `cfengine2-mode' and `cfengine3-mode'.
16741
16742 2013-03-20 Juri Linkov <juri@jurta.org>
16743
16744 * info.el (Info-next-reference-or-link)
16745 (Info-prev-reference-or-link): New functions.
16746 (Info-next-reference, Info-prev-reference): Use them.
16747 (Info-try-follow-nearest-node): Handle footnote navigation.
16748 (Info-fontify-node): Fontify footnotes. (Bug#13989)
16749
16750 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
16751
16752 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
16753 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
16754
16755 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
16756
16757 Suppress unnecessary non-ASCII chatter during build process.
16758 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
16759 (batch-skkdic-convert): Suppress most of the chatter.
16760 It's not needed so much now that machines are faster,
16761 and its non-ASCII component was confusing; see Dmitry Gutov in
16762 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
16763
16764 2013-03-20 Leo Liu <sdl.web@gmail.com>
16765
16766 * ido.el (ido-chop): Fix bug#10994.
16767
16768 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16769
16770 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
16771 Remove vars.
16772 (whitespace-color-on, whitespace-color-off):
16773 Use `font-lock-fontify-buffer' (Bug#13817).
16774
16775 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
16776
16777 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
16778 remapping in mode-line.
16779 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
16780
16781 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16782
16783 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
16784 value for `whitespace-line' face (Bug#13875).
16785 (whitespace-font-lock-keywords): Change description.
16786 (whitespace-color-on): Don't save `font-lock-keywords' value, save
16787 the constructed keywords instead.
16788 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
16789
16790 2013-03-19 Leo Liu <sdl.web@gmail.com>
16791
16792 * progmodes/compile.el (compilation-display-error): New command.
16793 (compilation-mode-map, compilation-minor-mode-map): Bind it to
16794 C-o. (Bug#13992)
16795
16796 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16797
16798 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
16799
16800 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
16801
16802 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
16803
16804 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
16805
16806 * net/tramp-compat.el (tramp-compat-user-error): New defun.
16807
16808 * net/tramp-adb.el (tramp-adb-handle-shell-command):
16809 * net/tramp-gvfs.el (top):
16810 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
16811 (tramp-handle-shell-command): Use it.
16812 (tramp-dissect-file-name): Raise an error when hostname is a
16813 method name, and neither method nor user is specified.
16814
16815 * net/trampver.el: Update release number.
16816
16817 2013-03-18 Leo Liu <sdl.web@gmail.com>
16818
16819 Make sure eldoc can be turned off properly.
16820 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
16821 eldoc-mode.
16822 (eldoc-display-message-p): Revert last change.
16823 (eldoc-display-message-no-interference-p)
16824 (eldoc-print-current-symbol-info): Tweak.
16825
16826 2013-03-18 Tassilo Horn <tsdh@gnu.org>
16827
16828 * doc-view.el (doc-view-new-window-function): Check the new window
16829 overlay's display property instead the char property of the
16830 buffer's first char. Use `with-selected-window' instead of
16831 `save-window-excursion' with `select-window'.
16832 (doc-view-document->bitmap): Check the current doc-view overlay's
16833 display property instead the char property of the buffer's first char.
16834
16835 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16836
16837 Automate the build of ja-dic.el (Bug#13984).
16838 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
16839 from the input, rather than assume that it's been done for us by the
16840 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
16841 the current date into a ja-dic.el comment, as that complicates
16842 regression testing.
16843
16844 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
16845
16846 * whitespace.el: Fix double evaluation.
16847 (whitespace-space, whitespace-hspace, whitespace-tab)
16848 (whitespace-newline, whitespace-trailing, whitespace-line)
16849 (whitespace-space-before-tab, whitespace-indentation)
16850 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
16851 obsolete defvars.
16852 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
16853 (whitespace-color-on): Use a single font-lock-add-keywords call.
16854 Fix double-evaluation of face variables.
16855
16856 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
16857
16858 * net/tramp-adb.el (tramp-adb-parse-device-names):
16859 Use `start-process' instead of `call-process'. Otherwise, the
16860 function might be blocked under MS Windows. (Bug#13299)
16861
16862 2013-03-17 Leo Liu <sdl.web@gmail.com>
16863
16864 Extend eldoc to display info in the mode-line. (Bug#13978)
16865 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
16866 (eldoc-mode-line-string): New variable.
16867 (eldoc-minibuffer-message): New function.
16868 (eldoc-message-function): New variable.
16869 (eldoc-message): Use it.
16870 (eldoc-display-message-p)
16871 (eldoc-display-message-no-interference-p):
16872 Support eldoc-post-insert-mode.
16873
16874 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
16875 (eval-expression): Run it.
16876
16877 2013-03-17 Roland Winkler <winkler@gnu.org>
16878
16879 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
16880 strings in the list of return values.
16881
16882 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
16883
16884 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
16885 radix before checking for HMS forms.
16886
16887 2013-03-16 Leo Liu <sdl.web@gmail.com>
16888
16889 * progmodes/scheme.el: Add indentation and font-locking for λ.
16890 (Bug#13975)
16891
16892 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
16893
16894 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
16895 token before point (bug#13942).
16896
16897 2013-03-16 Leo Liu <sdl.web@gmail.com>
16898
16899 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
16900
16901 2013-03-16 Eli Zaretskii <eliz@gnu.org>
16902
16903 * startup.el (command-line-normalize-file-name): Fix handling of
16904 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
16905 <xfq.free@gmail.com> in
16906 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
16907
16908 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
16909
16910 Sync with Tramp 2.2.7.
16911
16912 * net/trampver.el: Update release number.
16913
16914 2013-03-14 Tassilo Horn <tsdh@gnu.org>
16915
16916 * doc-view.el: Fix bug#13887.
16917 (doc-view-insert-image): Don't modify overlay associated to
16918 non-live windows, and implement horizontal centering of image in
16919 case it's smaller than the window.
16920 (doc-view-new-window-function): Force redisplay of new windows on
16921 doc-view buffers.
16922
16923 2013-03-13 Karl Fogel <kfogel@red-bean.com>
16924
16925 * saveplace.el (save-place-alist-to-file): Don't sort
16926 `save-place-alist', just pretty-print it (bug#13882).
16927
16928 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
16929
16930 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
16931 Check whether `default-file-name-coding-system' is bound.
16932 It isn't in XEmacs.
16933
16934 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
16935
16936 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
16937 backquotes for `obsolete' (bug#13929).
16938
16939 * international/mule.el (find-auto-coding): Include file name in
16940 obsolescence warning (bug#13922).
16941
16942 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
16943
16944 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
16945 for CFEngine 3-specific indentation.
16946 (cfengine3-indent-line): Use it. Fix up category regex.
16947 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
16948
16949 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16950
16951 * type-break.el (type-break-file-name):
16952 * textmodes/remember.el (remember-data-file):
16953 * strokes.el (strokes-file):
16954 * shadowfile.el (shadow-initialize):
16955 * saveplace.el (save-place-file):
16956 * ps-bdf.el (bdf-cache-file):
16957 * progmodes/idlwave.el (idlwave-config-directory):
16958 * net/quickurl.el (quickurl-url-file):
16959 * international/kkc.el (kkc-init-file-name):
16960 * ido.el (ido-save-directory-list-file):
16961 * emulation/viper.el (viper-custom-file-name):
16962 * emulation/vip.el (vip-startup-file):
16963 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
16964 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
16965
16966 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
16967
16968 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
16969 * language/thai-word.el: Switch to UTF-8.
16970
16971 See ChangeLog.16 for earlier changes.
16972
16973 ;; Local Variables:
16974 ;; coding: utf-8
16975 ;; End:
16976
16977 Copyright (C) 2011-2014 Free Software Foundation, Inc.
16978
16979 This file is part of GNU Emacs.
16980
16981 GNU Emacs is free software: you can redistribute it and/or modify
16982 it under the terms of the GNU General Public License as published by
16983 the Free Software Foundation, either version 3 of the License, or
16984 (at your option) any later version.
16985
16986 GNU Emacs is distributed in the hope that it will be useful,
16987 but WITHOUT ANY WARRANTY; without even the implied warranty of
16988 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16989 GNU General Public License for more details.
16990
16991 You should have received a copy of the GNU General Public License
16992 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.