Don't infloop when we can't find a good place to break lines in shr
[bpt/emacs.git] / lisp / ChangeLog
1 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
2
3 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
4 Fix interactive spec. Doc fix. (Bug#15754)
5
6 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
7
8 * emacs-lisp/byte-run.el (eval-when-compile):
9 * progmodes/cc-defs.el (cc-eval-when-compile):
10 Fix edebug spec (bug#16184).
11
12 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
13
14 * net/shr.el (shr-visit-file): Remove debugging function.
15 (shr-insert): Don't infloop if we can't find a good place to break
16 the line (bug#16256).
17
18 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
19
20 * progmodes/python.el:
21 (python-nav--lisp-forward-sexp): New function.
22 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
23 python-nav-lisp-forward-sexp-safe.
24 (python-nav--forward-sexp): New argument SAFE allows switching
25 forward sexp movement behavior for parens.
26 (python-nav-forward-sexp): Throw errors on unterminated parens
27 (Bug#16191).
28 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
29 (python-nav-backward-sexp-safe): New functions.
30 (python-shell-buffer-substring): Use
31 `python-nav-forward-sexp-safe'.
32
33 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
34
35 * net/shr.el (shr-find-fill-point): Don't break lines before a
36 quotation mark.
37 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
38 (shr-find-fill-point): Remove the special checks for the quotation
39 mark, since `shr-char-kinsoku-bol-p' should now return the right
40 thing.
41
42 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
43
44 * net/eww.el (eww-form-textarea): Use a different face for
45 textareas than text input since they have different keymaps
46 (bug#16142).
47
48 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
49
50 * progmodes/python.el (python-nav-beginning-of-statement): Speed
51 up (Bug#15295).
52
53 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
54
55 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
56 the window configuration.
57
58 2013-12-24 Eli Zaretskii <eliz@gnu.org>
59
60 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
61 we run on MS-Windows or MS-DOS.
62
63 2013-12-24 Martin Rudalics <rudalics@gmx.at>
64
65 * window.el (balance-windows-area): Call window-size instead of
66 window-height and window-width. Bug#16241.
67
68 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
69
70 * net/eww.el (eww-bookmark-quit): Remove.
71 (eww-bookmark-browse): Restore the window configuration when you
72 choose a bookmark (bug#16144).
73
74 2013-12-24 Daniel Colascione <dancol@dancol.org>
75
76 * icomplete.el: Remove redundant :group arguments to `defcustom'
77 throughout.
78 (icomplete-show-matches-on-no-input): New customizable variable.
79 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
80 we have something to show.
81 (icomplete-exhibit): Compute completions even if we have no user
82 input.
83
84 2013-12-23 Daniel Colascione <dancol@dancol.org>
85
86 * icomplete.el: Move `provide' to end of file.
87
88 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
89
90 * net/gnutls.el (gnutls-verify-error): Add version tag.
91
92 2013-12-23 Chong Yidong <cyd@gnu.org>
93
94 * subr.el (set-transient-map): Rename from
95 set-temporary-overlay-map. Doc fix.
96
97 * face-remap.el (text-scale-adjust):
98 * indent.el (indent-rigidly):
99 * kmacro.el (kmacro-call-macro):
100 * minibuffer.el (minibuffer-force-complete):
101 * repeat.el (repeat):
102 * simple.el (universal-argument--mode):
103 * calendar/todo-mode.el (todo-insert-item--next-param):
104 * progmodes/f90.el (f90-abbrev-start): Callers changed.
105
106 * indent.el (indent-rigidly): Use substitute-command-keys.
107
108 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
109
110 * net/eww.el (eww-tag-select): Add text-property to jump to next
111 select field.
112 (eww) : Add non-supported ftp error.
113
114 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
115
116 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
117 comments. Handle electric indent after typing `?' and `!'.
118
119 2013-12-22 Chong Yidong <cyd@gnu.org>
120
121 * faces.el (face-spec-recalc): If the theme specs are not
122 applicable to a frame, fall back on the defface spec. This
123 prevents themes from obliterating faces on low-color terminals.
124
125 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
126
127 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
128 after `{'. We need it after block openers, and it doesn't seem
129 to hurt after hash openers.
130
131 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
132
133 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
134 extracted from `ruby-smie-rules'.
135 (ruby--electric-indent-chars): New variable.
136 (ruby--electric-indent-p): New function.
137 (ruby-mode): Use `electric-indent-functions' instead of
138 `electric-indent-chars'.
139
140 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
141
142 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
143 docstring.
144 (ruby-smie-rules): Indent plus one level after `=>'.
145
146 2013-12-21 Richard Stallman <rms@gnu.org>
147
148 * simple.el (newline): Doc fix.
149
150 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
151
152 * net/eww.el (eww-list-histories, eww-list-histories)
153 (eww-history-browse, eww-history-quit, eww-history-kill)
154 (eww-history-mode-map, eww-history-mode): New command and
155 functions to list browser histories.
156 (eww-form-text): Support text form with disabled
157 and readonly attributes.
158 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
159
160 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
161
162 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
163 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
164 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
165 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
166 Use `user-error'.
167 (eww-bookmark-mode-map): Add menu.
168 (eww-render, eww-mode): Use `setq-local'.
169 (eww-tool-bar-map): New variable.
170 (eww-mode): Set `tool-bar-map'.
171 (eww-view-source): Check for `html-mode' with `fboundp'.
172
173 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
174
175 * net/shr.el (shr--extract-best-source): Don't bug out on audio
176 elements with text inside. Also remove debugging.
177
178 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
179
180 * cus-start.el (all): Add ns-use-srgb-colorspace.
181
182 2013-12-21 Chong Yidong <cyd@gnu.org>
183
184 * custom.el (custom-theme-recalc-face): Do nothing if the face is
185 undefined. Thus, theme settings for undefined faces do not take
186 effect until the faces are defined with defface, the same as with
187 theme variables.
188
189 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
190 (face-spec-reset-face): Don't assign extra properties in temacs.
191 (face-spec-recalc): Apply X resources too.
192
193 2013-12-21 Chong Yidong <cyd@gnu.org>
194
195 * faces.el (face-spec-set):
196 * cus-face.el (custom-theme-set-faces, custom-set-faces):
197 * custom.el (defface): Doc fixes (Bug#16203).
198
199 * indent.el (indent-rigidly-map): Add docstring, and move commands
200 into named functions.
201 (indent-rigidly-left, indent-rigidly-right)
202 (indent-rigidly-left-to-tab-stop)
203 (indent-rigidly-right-to-tab-stop): New functions. Decide on
204 indentation direction based on bidi direction, and accumulate
205 sequential commands in a single undo boundary.
206 (indent-rigidly--pop-undo): New utility function.
207
208 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
209
210 * faces.el (read-face-name): Require crm.el when using crm-separator.
211
212 2013-12-20 Daniel Colascione <dancol@dancol.org>
213
214 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
215 so that we don't reflow comments into the shebang line.
216
217 2013-12-20 Juri Linkov <juri@jurta.org>
218
219 * saveplace.el (save-place-to-alist): Add `dired-filename' as
220 a position when `dired-directory' is non-nil. Check integer
221 positions with `integerp'.
222 (toggle-save-place, save-places-to-alist): Add check for
223 `dired-directory'.
224 (save-place-find-file-hook): Check integer positions with
225 `integerp'.
226 (save-place-dired-hook): Use `dired-goto-file' when
227 `dired-filename' is found in the assoc list. Check integer
228 positions with `integerp'.
229 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
230
231 * dired.el (dired-initial-position-hook): Rename back from
232 `dired-initial-point-hook'.
233 (dired-initial-position): Rename `dired-initial-point-hook' to
234 `dired-initial-position-hook'.
235 (dired-file-name-at-point): Doc fix. (Bug#15329)
236
237 2013-12-20 Juri Linkov <juri@jurta.org>
238
239 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
240 (read-regexp-suggestions): New function.
241 (read-regexp): Use `read-regexp-defaults-function' to get default values.
242 Use `read-regexp-suggestions'. Add non-empty default to history
243 for empty input.
244 (occur-read-regexp-defaults-function): Remove function.
245 (occur-read-primary-args): Use `regexp-history-last' instead of
246 `occur-read-regexp-defaults-function'.
247
248 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
249 (hi-lock-line-face-buffer, hi-lock-face-buffer)
250 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
251 `hi-lock-read-regexp-defaults-function'. Doc fix.
252 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
253 with `find-tag-default-as-symbol-regexp'. Doc fix.
254 (hi-lock-read-regexp-defaults): Remove function.
255 (hi-lock-regexp-okay): Add check for null.
256
257 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
258 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
259
260 * subr.el (find-tag-default-as-symbol-regexp): New function.
261 (find-tag-default-as-regexp): Move symbol regexp formatting to
262 `find-tag-default-as-symbol-regexp'.
263
264 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
265
266 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
267 (Bug#14179)
268
269 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
270
271 * calendar/todo-mode.el: New implementation of item insertion
272 commands and key bindings.
273 (todo-key-prompt): New face.
274 (todo-insert-item): New command.
275 (todo-insert-item--parameters): New defconst, replacing defvar
276 todo-insertion-commands-args-genlist.
277 (todo-insert-item--param-key-alist): New defconst, replacing
278 defvar todo-insertion-commands-arg-key-list.
279 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
280 (todo-insert-item--argsleft, todo-insert-item--apply-args)
281 (todo-insert-item--next-param): New functions.
282 (todo-insert-item--args, todo-insert-item--argleft)
283 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
284 New variables.
285 (todo-key-bindings-t): Change binding of "i" from
286 todo-insertion-map to todo-insert-item.
287 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
288 (todo-insertion-command-name, todo-insertion-commands-names)
289 (todo-define-insertion-command, todo-insertion-commands)
290 (todo-insertion-key-bindings, todo-insertion-map): Remove.
291
292 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
293
294 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
295 (todo-toggle-item-highlighting): Use eval-and-compile instead of
296 eval-when-compile.
297 (todo-move-category): Allow choosing a non-existing todo file to
298 move the category to, and create that file.
299 (todo-default-priority): New user option.
300 (todo-set-item-priority): Use it.
301 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
302 (desktop-restore-file-buffer): Declare.
303 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
304 (todo-modes-set-2): Locally set desktop-save-buffer to
305 todo-desktop-save-buffer.
306 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
307 (auto-mode-alist): Add autoload cookie.
308
309 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
310
311 * emacs-lisp/subr-x.el: Renamed from helpers.el.
312 helpers.el was a poor choice of name.
313 (string-remove-prefix): New function.
314 (string-remove-suffix): New function.
315
316 2013-12-20 Martin Rudalics <rudalics@gmx.at>
317
318 Fix assignment for new window total sizes.
319 * window.el (window--pixel-to-size): Remove function.
320 (window--pixel-to-total-1, window--pixel-to-total):
321 Fix calculation of new total sizes.
322
323 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
324
325 * comint.el (comint-output-filter): Fix rear-nonsticky property
326 placement (Bug#16010).
327
328 2013-12-20 Chong Yidong <cyd@gnu.org>
329
330 * faces.el (read-color): Minor fix for completion function.
331
332 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
333
334 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
335 New option. (Bug#16182)
336 (ruby-smie--indent-to-stmt-p): Use it.
337 (ruby-smie-rules): Revert the logic in the handling of `when'.
338 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
339 (ruby-deep-arglist, ruby-deep-indent-paren)
340 (ruby-deep-indent-paren-style): Update docstrings to note that the
341 vars don't have any effect with SMIE.
342
343 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
344
345 * calc/calc.el (calc-enter, calc-pop): Use the variable
346 `calc-context-sensitive-enter'.
347
348 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
349
350 * net/shr.el (shr-insert): Protect against infloops in degenerate
351 tables.
352
353 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
354
355 * progmodes/octave.el (octave): Add link to manual and octave
356 homepage.
357 (octave-mode-menu): Link to octave-mode manual.
358
359 2013-12-20 Leo Liu <sdl.web@gmail.com>
360
361 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
362 insertion using skeleton-end-newline. (Bug#16138)
363
364 2013-12-20 Juri Linkov <juri@jurta.org>
365
366 * replace.el (occur-engine): Use `add-face-text-property'
367 to add the face property to matches and titles. (Bug#14645)
368
369 * hi-lock.el (hi-green): Use lighter color "light green" closer to
370 the palette of other hi-lock colors.
371 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
372
373 2013-12-19 Juri Linkov <juri@jurta.org>
374
375 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
376 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
377 (minibuffer-history-symbol): Move variable declaration closer to
378 its usage.
379
380 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
381 (Bug#14785)
382
383 2013-12-19 Juri Linkov <juri@jurta.org>
384
385 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
386 New function.
387 (log-edit-hook): Add it to :options. (Bug#16170)
388
389 2013-12-19 Juri Linkov <juri@jurta.org>
390
391 * simple.el (eval-expression-print-format): Don't check for
392 command names and the last command. Always display additional
393 formats of the integer result in the echo area, and insert them
394 to the current buffer only with a zero prefix arg.
395 Display character when char-displayable-p is non-nil.
396 (eval-expression): With a zero prefix arg, set `print-length' and
397 `print-level' to nil, and insert the integer values from
398 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
399
400 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
401 `eval-last-sexp-arg-internal'. Doc fix.
402 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
403 `eval-last-sexp-print-value'. Doc fix.
404 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
405 Set `print-length' and `print-level' to nil when arg is zero.
406 (eval-last-sexp): Doc fix.
407 (eval-defun-2): Print the integer values from
408 `eval-expression-print-format' at the end.
409
410 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
411 values from `eval-expression-print-format' at the end.
412
413 * ielm.el (ielm-eval-input): Print the integer
414 values from `eval-expression-print-format' at the end.
415
416 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
417
418 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
419 2013-12-11T19:01:44Z!tzz@lifelogs.com.
420
421 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
422
423 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
424 (hl-line-highlight, global-hl-line-highlight): Use it.
425 (hl-line-overlay): Use defvar-local.
426
427 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
428
429 * term/ns-win.el: Require dnd.
430 (global-map): Remove drag items.
431 (ns-insert-text, ns-set-foreground-at-mouse)
432 (ns-set-background-at-mouse):
433 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
434 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
435 New functions.
436
437 2013-12-19 Glenn Morris <rgm@gnu.org>
438
439 * emacs-lisp/ert.el (ert-select-tests):
440 Fix string/symbol mixup. (Bug#16121)
441
442 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
443
444 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
445 keywords to their parent.
446
447 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
448
449 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
450 first arg to be a string (fixed dead code), or an operator symbol.
451 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
452 operator symbols.
453 (ruby-smie-rules): Remove parent token check in the `.' clause, it
454 did nothing. Don't respond to `(:after ".")', it will be called
455 with :before anyway. Remove the ` @ ' rule, it didn't seem to
456 change anything. Only return indentation for binary operators
457 when they are hanging. De-dent opening paren when its parent is
458 `.', otherwise it looks bad when the dot is not at bol or eol
459 (bug#16182).
460
461 2013-12-19 Juri Linkov <juri@jurta.org>
462
463 * replace.el (query-replace-read-args): Split a non-negative arg
464 and a negative arg into separate elements.
465 (query-replace, query-replace-regexp, replace-string)
466 (replace-regexp): Add arg `backward'. Doc fix.
467 (replace-match-maybe-edit): When new arg `backward' is non-nil,
468 move point to the beginning of the match.
469 (replace-search, replace-highlight): Use new arg `backward'
470 to set the value of `isearch-forward'.
471 (perform-replace): Add arg `backward' and use it to perform
472 replacement backward. (Bug#14979)
473
474 * isearch.el (isearch-query-replace): Use a negative prefix arg
475 to call `perform-replace' with a non-nil arg `backward'.
476
477 2013-12-18 Juri Linkov <juri@jurta.org>
478
479 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
480 to the default list. Move `log-edit-show-files' to the end.
481 Add more available functions to options.
482 (log-edit): Move default specific settings to
483 `log-edit-insert-message-template'. Don't move point.
484 (log-edit-insert-message-template): New function.
485 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
486 (Bug#16170)
487
488 2013-12-18 Juri Linkov <juri@jurta.org>
489
490 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
491 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
492
493 2013-12-18 Leo Liu <sdl.web@gmail.com>
494
495 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change. (Bug#16186)
496
497 2013-12-18 Eli Zaretskii <eliz@gnu.org>
498
499 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
500 formats for displaying file sizes when the -s switch is given.
501 Instead, compute a separate format for displaying the size in
502 blocks, which is displayed in addition to the "regular" size.
503 When -h is given in addition to -s, produce size in blocks in
504 human-readable form as well. (Bug#16179)
505
506 2013-12-18 Tassilo Horn <tsdh@gnu.org>
507
508 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
509 Reference tables with ~\ref{...} instead of only \ref{...}.
510
511 2013-12-18 Chong Yidong <cyd@gnu.org>
512
513 * cus-edit.el (custom-magic-alist): Fix "themed" description
514 (Bug#14348).
515
516 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
517 is non-nil, do not create a new entry in the symbol's theme-value
518 or theme-face property; update theme-settings only (Bug#14664).
519 (custom-available-themes): Doc fix.
520
521 * cus-theme.el (custom-new-theme-mode-map): Add bindings
522 (Bug#15674).
523
524 * replace.el (occur-engine): Avoid infloop (Bug#7593).
525
526 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
527
528 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
529 (Bug#13914).
530
531 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
532
533 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
534
535 2013-12-18 Glenn Morris <rgm@gnu.org>
536
537 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
538 * cus-start.el (load-prefer-newer): New option.
539
540 2013-12-18 Le Wang <l26wang@gmail.com>
541
542 * comint.el (comint-previous-matching-input-from-input):
543 Retain point (Bug#13404).
544
545 2013-12-18 Chong Yidong <cyd@gnu.org>
546
547 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
548
549 2013-12-18 Glenn Morris <rgm@gnu.org>
550
551 * mail/emacsbug.el (report-emacs-bug):
552 Only mention enable-multibyte-characters if non-standard.
553
554 2013-12-17 Juri Linkov <juri@jurta.org>
555
556 * arc-mode.el (archive-extract-by-file): Check if directory exists
557 before deletion to not show irrelevant errors if it doesn't exist.
558
559 2013-12-17 Juri Linkov <juri@jurta.org>
560
561 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
562 (Bug#14751)
563
564 * net/eww.el (browse-web): Add alias to `eww'.
565 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
566 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
567
568 * net/browse-url.el (browse-url-browser-function): Move `eww'
569 closer to similar functions.
570
571 * startup.el (fancy-startup-screen, fancy-about-screen):
572 Set browse-url-browser-function to eww-browse-url locally.
573 (Bug#14751)
574
575 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
576
577 * window.el (window--pixel-to-total): Remove unused `mini' var.
578 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
579 (split-window): Remove unused `new' var.
580 (window--display-buffer): Remove unused `frame' and `delta' vars.
581 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
582 and display-width'.
583
584 2013-12-17 Martin Rudalics <rudalics@gmx.at>
585
586 * dired.el (dired-mark-pop-up):
587 * register.el (register-preview): Don't bind
588 split-height-threshold here since it's now done in
589 display-buffer-below-selected.
590
591 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
592
593 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
594 xterm-rgb-convert-to-16bit.
595 (rxvt-register-default-colors): Standardize with
596 xterm-register-default-colors (Bug#14078).
597
598 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
599
600 * simple.el (kill-region): Pass mark first, then point, so that
601 kill-append works right (Bug#12819).
602 (copy-region-as-kill, kill-ring-save): Likewise.
603
604 2013-12-17 Leo Liu <sdl.web@gmail.com>
605
606 * net/rcirc.el (rcirc-add-face):
607 * eshell/em-prompt.el (eshell-emit-prompt):
608 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
609 (Bug#16167)
610
611 2013-12-17 Chong Yidong <cyd@gnu.org>
612
613 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
614 Suggested by Xue Fuqiao.
615
616 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
617
618 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
619
620 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
621
622 * net/shr.el (shr-insert-document): Remove unused var
623 `shr-preliminary-table-render'.
624 (shr-rescale-image): Remove unused arg `force'.
625 (shr-put-image): Update calls accordingly.
626 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
627
628 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
629
630 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
631 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
632 :close-all, to see which indentation method to use (Bug#16116).
633 (smie-rules-function): Document the method :close-all.
634
635 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
636
637 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
638
639 * net/eww.el (eww-display-html): If we can't find the anchor we're
640 looking for, then go to point-min.
641
642 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
643
644 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
645 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
646 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
647 Expand dir too, in case it's relative.
648
649 2013-12-16 Juri Linkov <juri@jurta.org>
650
651 * desktop.el (desktop-auto-save-timeout): Change default to
652 `auto-save-timeout'. Doc fix.
653 (desktop-save): Skip the timestamp in desktop-saved-frameset
654 when checking for auto-save changes.
655 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
656 `desktop-auto-save' is called repeatedly by the idle timer.
657 (desktop-auto-save-set-timer): Replace `run-with-timer' with
658 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
659 (Bug#15331)
660
661 2013-12-16 Juri Linkov <juri@jurta.org>
662
663 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
664 (Bug#16035)
665 (isearch-pre-command-hook): Check `this-command' for symbolp.
666
667 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
668
669 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
670
671 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
672
673 * progmodes/cfengine.el (cfengine3--current-word): Remove.
674 (cfengine3--current-function): Bring in the current-function
675 functionality from `cfengine3--current-word'.
676 (cfengine3-completion-function): Bring in the
677 bounds-of-current-word functionality from
678 `cfengine3--current-word'.
679
680 2013-12-16 Martin Rudalics <rudalics@gmx.at>
681
682 * window.el (display-buffer-below-selected):
683 Bind split-height-threshold to 0 as suggested by Juri Linkov.
684
685 2013-12-16 Leo Liu <sdl.web@gmail.com>
686
687 * progmodes/compile.el (compile-goto-error): Do not push-mark.
688 Remove NOMSG arg and all uses changed.
689
690 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
691
692 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
693 (cua--deactivate-rectangle): Don't deactivate the mark.
694 (cua-set-rectangle-mark): Don't set mark-active since
695 cua--activate-rectangle already does it for us.
696 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
697 non-rectangular region.
698
699 * emulation/cua-base.el (cua-repeat-replace-region):
700 Use with-current-buffer.
701
702 * net/gnutls.el: Use cl-lib.
703 (gnutls-negotiate): `mapcan' -> cl-mapcan.
704
705 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
706
707 * emacs-lisp/package.el (package-built-in-p): Support both
708 built-in and the package.el converted package descriptions.
709 (package-show-package-list): Allow keywords.
710 (package-keyword-button-action): Use it instead of
711 `finder-list-matches'.
712 (package-menu-filter-interactive): Interactive filtering (by
713 keyword) function.
714 (package-menu--generate): Support keywords and change keymappings
715 and headers when they are given.
716 (package--has-keyword-p): Helper function.
717 (package-menu--refresh): Use it.
718 (package--mapc): Helper function.
719 (package-all-keywords): Use it.
720 (package-menu-mode-map): Set up menu items and keybindings to
721 provide a filtering UI.
722
723 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
724
725 * net/gnutls.el (gnutls-verify-error): New defcustom to control
726 the behavior when a certificate fails validation. Defaults to
727 old behavior: never abort, just warn.
728 (gnutls-negotiate): Use it.
729
730 2013-12-14 Martin Rudalics <rudalics@gmx.at>
731
732 * window.el (display-buffer-below-selected): Never split window
733 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
734
735 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
736
737 * emacs-lisp/package.el (package--prepare-dependencies): New function.
738 (package-buffer-info): Use it (bug#15108).
739
740 * icomplete.el (icomplete-completions): Make sure the prefix is already
741 displayed elsewhere before hiding it.
742
743 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
744
745 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
746 open-paren tokens when preceded by a open-paren, too.
747 (ruby-smie-rules): Handle virtual indentation after open-paren
748 tokens specially. If there is code between it and eol, return the
749 column where is starts (Bug#16118).
750
751 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
752
753 * progmodes/cfengine.el: Fix `add-hook' doc.
754 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
755 (cfengine3--current-word): Fix parameters.
756 (cfengine3-make-syntax-cache): Simplify further.
757 (cfengine3-completion-function, cfengine3--current-function):
758 Use `assq' for symbols.
759 (cfengine3--current-function): Fix `cfengine3--current-word' call.
760
761 2013-12-13 Glenn Morris <rgm@gnu.org>
762
763 * loadup.el (load-path): Warn if site-load or site-init changes it.
764 No more need to reset it when bootstrapping.
765
766 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
767
768 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
769 locations for cf-promises.
770 (cfengine-mode-syntax-functions-regex): New caching variable.
771 (cfengine3-fallback-syntax): Fallback syntax for cases where
772 cf-promises doesn't run.
773 (cfengine3--current-word): Reimplement using
774 `cfengine-mode-syntax-functions-regex'.
775 (cfengine3-completion-function, cfengine3--current-function):
776 Use `cfengine3-make-syntax-cache' directly.
777 (cfengine3-clear-syntax-cache): New function.
778 (cfengine3-make-syntax-cache): Simplify and create
779 `cfengine-mode-syntax-functions-regex' on demand.
780 (cfengine3-format-function-docstring): Don't call
781 `cfengine3-make-syntax-cache' explicitly.
782
783 2013-12-13 Martin Rudalics <rudalics@gmx.at>
784
785 Fix windmove-find-other-window broken after pixelwise resizing
786 (Bug#16017).
787 * windmove.el (windmove-other-window-loc): Revert change from
788 2013-12-04.
789 (windmove-find-other-window): Call window-in-direction.
790 * window.el (window-in-direction): New arguments SIGN, WRAP and
791 MINI to emulate original windmove-find-other-window behavior.
792
793 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
794
795 * simple.el (blink-matching--overlay): New variable.
796 (blink-matching-open): Instead of moving point, highlight the
797 matching paren with an overlay
798 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
799
800 * faces.el (paren-showing-faces, show-paren-match)
801 (show-paren-mismatch): Move from paren.el.
802
803 2013-12-13 Leo Liu <sdl.web@gmail.com>
804
805 * indent.el (indent-region): Disable progress reporter in
806 minibuffer. (Bug#16108)
807
808 * bindings.el (visual-order-cursor-movement): Fix version.
809
810 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
811
812 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
813 Also match after beginning of line.
814 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
815 files. Thanks to Russell Sim. (Bug#15378)
816
817 2013-12-13 Juri Linkov <juri@jurta.org>
818
819 * simple.el <Keypad support>: Remove key bindings duplicated
820 with bindings.el. (Bug#14397)
821
822 2013-12-13 Juri Linkov <juri@jurta.org>
823
824 * comint.el (comint-mode-map): Replace `delete-char' with
825 `delete-forward-char'. (Bug#16109)
826
827 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
828
829 * progmodes/python.el (python-indent-calculate-indentation):
830 Fix de-denters cornercase. (Bug#15731)
831
832 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
833
834 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
835 (advice--make): Pay attention to `depth'.
836 (advice--make-1): Don't autoload commands eagerly.
837 * emacs-lisp/elp.el (elp-instrument-function):
838 * emacs-lisp/trace.el (trace-function-internal):
839 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
840
841 * iswitchb.el (iswitchb-mode): Don't belittle ido.
842
843 2013-12-12 Eli Zaretskii <eliz@gnu.org>
844
845 * term/w32-win.el (w32-handle-dropped-file):
846 * startup.el (normal-top-level):
847 * net/browse-url.el (browse-url-file-url):
848 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
849 decode file names using 'utf-8' rather than
850 file-name-coding-system.
851
852 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
853
854 * progmodes/python.el (python-indent-context)
855 (python-indent-calculate-indentation): Fix auto-identation
856 behavior for comment blocks. (Bug#15916)
857
858 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
859
860 * progmodes/python.el (python-indent-calculate-indentation):
861 When determining indentation, don't treat "return", "pass", etc., as
862 operators when they are just string constituents. (Bug#15812)
863
864 2013-12-12 Juri Linkov <juri@jurta.org>
865
866 * uniquify.el (uniquify-buffer-name-style): Change default to
867 `post-forward-angle-brackets'.
868
869 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
870 `uniquify'. Change default to `post-forward-angle-brackets'.
871
872 2013-12-11 Glenn Morris <rgm@gnu.org>
873
874 * emacs-lisp/package.el (finder-list-matches):
875 Autoload rather than falsely declaring.
876
877 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
878
879 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
880 (eww-mode-map): Use them.
881
882 2013-12-11 Martin Rudalics <rudalics@gmx.at>
883
884 * window.el (display-buffer-in-side-window): Fix doc-string
885 (Bug#16115).
886
887 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
888
889 * vc/vc-git.el: Silence byte-compiler warnings.
890 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
891 (log-edit-set-header): Declare.
892
893 2013-12-11 Eli Zaretskii <eliz@gnu.org>
894
895 * Makefile.in (custom-deps, finder-data): Run output file names
896 through unmsys--file-name. (Bug#16099)
897
898 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
899
900 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
901 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
902
903 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
904 instead of deleting the selection "by hand" (bug#16098).
905 Rely on insert-for-yank to yank rectangles.
906 (cua-highlight-region-shift-only): Mark obsolete.
907 (cua-mode): Don't enable/disable transient-mark-mode,
908 shift-select-mode (cua-mode works both with and without them), and
909 pc-selection-mode (obsolete).
910 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
911 (cua--deactivate-rectangle): Deactivate it.
912
913 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
914 (delete-selection-helper): Make sure yank starts at the top of the
915 deleted region.
916 (minibuffer-keyboard-quit): Use region-active-p.
917
918 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
919
920 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
921 to `delete' (bug#16109).
922
923 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
924
925 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
926 info manual and show keybindings and set `:group' keyword.
927
928 2013-12-11 Juri Linkov <juri@jurta.org>
929
930 * delsel.el (delete-active-region): Let-bind `this-command'
931 to prevent `kill-region' from changing its original value.
932 (delete-selection-helper): Handle `overwrite-mode' for the type
933 `kill' exactly the same way as for the type `t'.
934 (insert-char, quoted-insert, reindent-then-newline-and-indent):
935 Support more commands. (Bug#13312)
936
937 2013-12-11 Juri Linkov <juri@jurta.org>
938
939 * bindings.el: Map kp keys to non-kp keys systematically
940 with basic modifiers control, meta and shift. (Bug#14397)
941
942 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com> (tiny change)
943
944 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
945 "Close browser" menu items. Fix wrong function of "List
946 bookmarks".
947
948 2013-12-11 Juri Linkov <juri@jurta.org>
949
950 * misearch.el (multi-isearch-buffers): Set the value of
951 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
952 arg of isearch-forward to t.
953 (multi-isearch-buffers-regexp): Set the value of
954 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
955 arg of isearch-forward-regexp to t.
956 (multi-isearch-files): Set the value of
957 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
958 arg of isearch-forward to t.
959 (multi-isearch-files-regexp): Set the value of
960 `multi-isearch-file-list globally. Set NO-RECURSIVE-EDIT
961 arg of isearch-forward-regexp to t. (Bug#16035)
962
963 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
964 arg of isearch-forward to t.
965 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
966 arg of isearch-forward-regexp to t.
967 (dired-isearch-filter-filenames): Remove unnecessary check for
968 `dired-isearch-filenames'.
969
970 * comint.el (comint-history-isearch-backward):
971 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
972 (comint-history-isearch-backward-regexp):
973 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
974
975 2013-12-10 Eli Zaretskii <eliz@gnu.org>
976
977 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
978 unmsys--file-name. (Bug#16099)
979
980 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
981
982 * emacs-lisp/package.el (package-keyword-button-action):
983 Remove finder.el require dependency.
984
985 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
986
987 * emacs-lisp/package.el: Require finder.el.
988 (describe-package-1): Add keyword buttons.
989 (package-make-button): New convenience function.
990 (package-keyword-button-action): Keyword button action using
991 `finder-list-matches'.
992
993 2013-12-09 Eli Zaretskii <eliz@gnu.org>
994
995 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
996 last commit.
997
998 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
999
1000 * autorevert.el (auto-revert-notify-add-watch): Do not handle
1001 symlinked files.
1002
1003 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
1004
1005 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
1006 after the end of a percent literal.
1007
1008 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
1009
1010 * progmodes/ruby-mode.el (ruby-forward-string): Document.
1011 Handle caret-delimited strings (Bug#16079).
1012
1013 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
1014
1015 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
1016 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
1017 `ruby-parse-partial' (Bug#16078).
1018
1019 2013-12-09 Leo Liu <sdl.web@gmail.com>
1020
1021 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
1022
1023 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
1024
1025 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
1026 (js-switch-indent-offset): New option.
1027 (js--proper-indentation): Use it. And handle the case when
1028 "default" is actually a key in an object literal.
1029 (js--same-line): New function.
1030 (js--multi-line-declaration-indentation): Use it.
1031 (js--indent-in-array-comp, js--array-comp-indentation):
1032 New functions.
1033 (js--proper-indentation): Use them, to handle array comprehension
1034 continuations.
1035
1036 2013-12-08 Leo Liu <sdl.web@gmail.com>
1037
1038 * progmodes/flymake.el (flymake-highlight-line): Re-write.
1039 (flymake-make-overlay): Remove arg MOUSE-FACE.
1040 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
1041
1042 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
1043
1044 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
1045 New function.
1046 (redisplay-highlight-region-function): Use it.
1047
1048 * emulation/cua-base.el (cua--explicit-region-start)
1049 (cua--last-region-shifted): Remove.
1050 (cua--deactivate): Use deactivate-mark.
1051 (cua--pre-command-handler-1): Don't handle shift-selection.
1052 (cua--post-command-handler-1): Don't change transient-mark-mode.
1053 (cua--select-keymaps): Use region-active-p rather than
1054 cua--explicit-region-start or cua--last-region-shifted.
1055 (cua-mode): Enable shift-select-mode.
1056
1057 2013-12-08 Leo Liu <sdl.web@gmail.com>
1058
1059 * progmodes/flymake.el (flymake-popup-current-error-menu):
1060 Rename from flymake-display-err-menu-for-current-line. Reimplement.
1061 (flymake-posn-at-point-as-event, flymake-popup-menu)
1062 (flymake-make-emacs-menu): Remove. (Bug#16077)
1063
1064 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
1065
1066 * rect.el (rectangle-mark-mode): Activate mark even if
1067 transient-mark-mode is off (bug#16066).
1068 (rectangle--highlight-for-redisplay): Fix boundary condition when point
1069 is > mark and at bolp.
1070
1071 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
1072 (region-extract-function): Use it.
1073 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
1074 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
1075 Delete functions.
1076 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
1077 kill-ring-save, kill-region, delete-char, delete-forward-char.
1078 Ignore self-insert-iso.
1079
1080 * emulation/cua-gmrk.el (cua--init-global-mark):
1081 Ignore `self-insert-iso'.
1082
1083 * emulation/cua-base.el (cua--prefix-copy-handler)
1084 (cua--prefix-cut-handler): Rely on region-extract-function rather than
1085 checking cua--rectangle.
1086 (cua-delete-region): Use region-extract-function.
1087 (cua-replace-region): Delete function.
1088 (cua-copy-region, cua-cut-region): Obey region-extract-function.
1089 (cua--pre-command-handler-1): Don't do the delete-selection thing.
1090 (cua--self-insert-char-p): Ignore `self-insert-iso'.
1091 (cua--init-keymaps): Don't remap delete-selection commands.
1092 (cua-mode): Use delete-selection-mode instead of rolling our own
1093 (bug#16085).
1094
1095 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
1096 Obey region-extract-function.
1097
1098 Make registers and delete-selection-mode work on rectangles.
1099 * register.el (describe-register-1): Don't modify the register's value.
1100 (copy-to-register): Obey region-extract-function.
1101 * delsel.el (delete-active-region): Obey region-extract-function.
1102
1103 2013-12-08 Leo Liu <sdl.web@gmail.com>
1104
1105 * progmodes/flymake.el (flymake, flymake-error-bitmap)
1106 (flymake-warning-bitmap, flymake-fringe-indicator-position)
1107 (flymake-compilation-prevents-syntax-check)
1108 (flymake-start-syntax-check-on-newline)
1109 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
1110 (flymake-start-syntax-check-on-find-file, flymake-log-level)
1111 (flymake-xml-program, flymake-master-file-dirs)
1112 (flymake-master-file-count-limit)
1113 (flymake-allowed-file-name-masks): Relocate.
1114 (flymake-makehash, flymake-float-time)
1115 (flymake-replace-regexp-in-string, flymake-split-string)
1116 (flymake-get-temp-dir): Remove.
1117 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
1118 (flymake-current-row, flymake-selected-frame)
1119 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
1120 related functions. (Bug#16077)
1121
1122 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
1123
1124 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
1125
1126 2013-12-07 Tassilo Horn <tsdh@gnu.org>
1127
1128 * help-fns.el (describe-function-1): Use new advice-* functions
1129 rather than old ad-* functions. Fix function type description and
1130 source links for advised functions and subrs.
1131
1132 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
1133
1134 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
1135
1136 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
1137
1138 * progmodes/compile.el (compilation-start):
1139 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
1140
1141 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1142 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
1143
1144 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
1145
1146 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1147 Touch up the last change.
1148
1149 2013-12-06 Leo Liu <sdl.web@gmail.com>
1150
1151 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
1152 (inferior-octave-startup): Always use "octave> " for prompt.
1153 (octave-goto-function-definition)
1154 (octave-sync-function-file-names)
1155 (octave-find-definition-default-filename): Remove redundant backquotes.
1156
1157 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
1158
1159 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
1160 syntax for `?'.
1161 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
1162 where appropriate already.
1163 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
1164 end of method names (Bug#15874).
1165
1166 2013-12-06 Juri Linkov <juri@jurta.org>
1167
1168 * isearch.el (isearch--saved-overriding-local-map):
1169 New internal variable.
1170 (isearch-mode): Set it to the initial value of
1171 `overriding-terminal-local-map'.
1172 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
1173 with `isearch--saved-overriding-local-map'. (Bug#16035)
1174
1175 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
1176
1177 * progmodes/octave.el (inferior-octave-completion-table):
1178 Turn back into function, use `completion-table-with-cache'
1179 (Bug#11906). Update all references.
1180
1181 * minibuffer.el (completion-table-with-cache): New function.
1182
1183 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
1184
1185 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
1186
1187 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
1188
1189 * net/eww.el (eww-current-source): New variable to store page
1190 source.
1191 (eww-display-html, eww-mode, eww-save-history)
1192 (eww-restore-history): Use it.
1193 (eww-view-source): New command to view page source.
1194 Opportunistically uses `html-mode' to highlight the buffer.
1195 (eww-mode-map): Install it.
1196
1197 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
1198
1199 * net/dbus.el (dbus-unregister-service)
1200 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
1201 Fix docstring.
1202 (dbus-unregister-service): Skip :serial entries in
1203 `dbus-registered-objects-table'.
1204 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
1205
1206 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
1207
1208 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
1209 around keywords with extra `split-string' argument.
1210
1211 2013-12-04 Martin Rudalics <rudalics@gmx.at>
1212
1213 * windmove.el (windmove-other-window-loc): Handle navigation
1214 between windows (excluding the minibuffer window - Bug#16017).
1215
1216 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
1217
1218 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
1219 in D-Bus type syntax.
1220 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
1221 preserve unibyte strings. (Bug#16048)
1222
1223 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
1224
1225 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
1226 Call force-mode-line-update is the proper buffer (bug#16042).
1227
1228 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
1229
1230 * vc/log-edit.el (log-edit-add-new-comment): Rename to
1231 `log-edit-remember-comment', make argument optional. Adjust all
1232 callers.
1233 (log-edit-mode): Add `log-edit-remember-comment' to
1234 `kill-buffer-hook' locally.
1235 (log-edit-kill-buffer): Don't remember comment explicitly since
1236 the buffer is killed anyway.
1237
1238 2013-12-04 Juri Linkov <juri@jurta.org>
1239
1240 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
1241 add-hook and remove-hook for multi-buffer search. (Bug#16035)
1242
1243 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
1244
1245 * notifications.el (notifications-close-notification): Call the
1246 D-Bus method with ID being a `:uint32'. (Bug#16030)
1247
1248 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
1249
1250 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
1251
1252 2013-12-03 Juri Linkov <juri@jurta.org>
1253
1254 * progmodes/compile.el (compilation-start): Rename window alist
1255 entry `no-display-ok' to `allow-no-window'.
1256
1257 * simple.el (shell-command): Add window alist entry
1258 `allow-no-window' to `display-buffer'.
1259 (async-shell-command): Doc fix.
1260
1261 * window.el (display-buffer-no-window): New action function.
1262 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
1263
1264 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
1265
1266 * vc/log-edit.el (log-edit-set-header): Extract from
1267 `log-edit-toggle-header'.
1268 (log-edit-extract-headers): Separate the summary, when extracted
1269 from header, from the rest of the message with an empty line.
1270
1271 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
1272 line, if present, to the Summary header.
1273
1274 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
1275
1276 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
1277 in current-buffer (bug#16029).
1278
1279 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
1280
1281 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
1282 (debugger-mode-map): Bind it.
1283 (debugger--backtrace-base): New function.
1284 (debugger-eval-expression): Use it.
1285 (debugger-frame-number): Skip local vars when present.
1286 (debugger--locals-visible-p, debugger--insert-locals)
1287 (debugger--show-locals, debugger--hide-locals): New functions.
1288
1289 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
1290
1291 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
1292 "LC_ALL".
1293 (tramp-get-remote-locale): New defun.
1294 (tramp-open-connection-setup-interactive-shell): Use it.
1295
1296 2013-12-02 Leo Liu <sdl.web@gmail.com>
1297
1298 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
1299
1300 * progmodes/sh-script.el (sh-shell-process):
1301 * progmodes/octave.el (inferior-octave-process-live-p):
1302 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
1303 (gdb-inferior-io-sentinel):
1304 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
1305
1306 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
1307
1308 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
1309 `save-selected-window' to `log-edit-hide-buf'. This makes
1310 `log-edit-show-files' idempotent.
1311 (log-edit-show-files): Mark the new window as dedicated.
1312
1313 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
1314
1315 * vc/log-edit.el (log-edit-mode-map): Add binding for
1316 `log-edit-kill-biffer'.
1317 (log-edit-hide-buf): Add a FIXME comment.
1318 (log-edit-add-new-comment): New function, extracted from
1319 `log-edit-done'.
1320 (log-edit-done, log-edit-add-to-changelog): Use it.
1321 (log-edit-kill-buffer): New command.
1322
1323 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
1324
1325 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
1326 instead of killing the buffer.
1327
1328 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
1329
1330 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
1331
1332 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1333
1334 * net/eww.el (eww-form-checkbox-selected-symbol)
1335 (eww-form-checkbox-symbol): New customizable variable.
1336 (eww-form-checkbox, eww-toggle-checkbox):
1337 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
1338
1339 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
1340 (shr--get-media-pref, shr--extract-best-source): New function.
1341 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
1342 no :src tag was specified.
1343
1344 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
1345 (eww-render): Handle `eww-use-external-browser-for-content-type'.
1346 Use \\` to match beginning of string instead of ^.
1347 (eww-browse-with-external-browser): Provide optional URL parameter.
1348 (eww-render): Set `eww-current-title' back to "".
1349
1350 * net/shr.el (shr-tag-video): Display content for video if no
1351 poster is available.
1352 (shr-tag-audio): Add support for <audio> tag.
1353
1354 * net/eww.el (eww-text-input-types): New const.
1355 (eww-process-text-input): Treat input types in
1356 `eww-text-input-types' as text.
1357
1358 * net/shr.el (shr-tag-table): Fix comment typo.
1359
1360 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
1361
1362 * net/eww.el (eww-follow-link): New command to avoid reloading
1363 pages when we follow #target links (bug#15243).
1364 (eww-quit): Special mode buffers shouldn't query before exiting.
1365
1366 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
1367
1368 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
1369 forms.
1370
1371 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
1372
1373 * net/eww.el (eww-restore-history): Update the window title after
1374 moving in the history.
1375 (eww-current-dom): New variable used to save the current DOM.
1376
1377 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
1378
1379 * vc/log-edit.el (log-edit-mode-map): Add binding for
1380 `log-edit-beginning-of-line'.
1381 (log-edit-setup-add-author): New user option.
1382 (log-edit-beginning-of-line): New command.
1383 (log-edit): Move major mode call above the contents setup so that
1384 the local variable values are already applied.
1385 (log-edit): Only insert "Author: " when
1386 `log-edit-setup-add-author' is non-nil.
1387 (log-edit): When SETUP is non-nil, position point after ": "
1388 instead of point-min.
1389
1390 2013-12-01 Glenn Morris <rgm@gnu.org>
1391
1392 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
1393
1394 2013-11-30 Eli Zaretskii <eliz@gnu.org>
1395
1396 * startup.el (fancy-splash-frame): On MS-Windows, trigger
1397 redisplay to make sure the initial frame gets a chance to become
1398 visible. (Bug#16014)
1399
1400 2013-11-30 Martin Rudalics <rudalics@gmx.at>
1401
1402 Support resizing frames and windows pixelwise.
1403 * cus-start.el (frame-resize-pixelwise)
1404 (window-resize-pixelwise): New entries.
1405 * emacs-lisp/debug.el (debug): Use window-total-height instead
1406 of window-total-size.
1407 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
1408 * help.el (describe-bindings-internal): Call help-buffer
1409 (temp-buffer-max-width): New option.
1410 (resize-temp-buffer-window, help-window-setup)
1411 (with-help-window): Rewrite.
1412 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
1413 dragging dividers.
1414 * window.el (frame-char-size, window-min-pixel-height)
1415 (window-safe-min-pixel-height, window-safe-min-pixel-width)
1416 (window-min-pixel-width, window-safe-min-pixel-size)
1417 (window-combination-p, window-safe-min-size)
1418 (window-resizable-p, window--size-to-pixel)
1419 (window--pixel-to-size, window--resize-apply-p): New functions.
1420 (window-safe-min-height): Fix doc-string.
1421 (window-size, window-min-size, window--min-size-1)
1422 (window-sizable, window-sizable-p, window--min-delta-1)
1423 (window-min-delta, window--max-delta-1, window-max-delta)
1424 (window--resizable, window--resizable-p, window-resizable)
1425 (window-full-height-p, window-full-width-p, window-at-side-p)
1426 (window--in-direction-2, window-in-direction)
1427 (window--resize-reset-1, window--resize-mini-window)
1428 (window-resize, window-resize-no-error)
1429 (window--resize-child-windows-normal)
1430 (window--resize-child-windows, window--resize-siblings)
1431 (window--resize-this-window, window--resize-root-window)
1432 (window--resize-root-window-vertically)
1433 (adjust-window-trailing-edge, enlarge-window, shrink-window)
1434 (maximize-window, minimize-window, delete-window)
1435 (quit-restore-window, window-split-min-size, split-window)
1436 (balance-windows-2, balance-windows)
1437 (balance-windows-area-adjust, balance-windows-area)
1438 (window--state-get-1, window-state-get, window--state-put-1)
1439 (window--state-put-2, window-state-put)
1440 (display-buffer-record-window, window--display-buffer):
1441 Make functions handle pixelwise sizing of windows.
1442 (display-buffer--action-function-custom-type)
1443 (display-buffer-fallback-action):
1444 Add display-buffer-in-previous-window.
1445 (display-buffer-use-some-window): Resize window to height it had
1446 before.
1447 (fit-window-to-buffer-horizontally): New option.
1448 (fit-frame-to-buffer): Describe new values.
1449 (fit-frame-to-buffer-bottom-margin): Replace with
1450 fit-frame-to-buffer-margins.
1451 (window--sanitize-margin): New function.
1452 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
1453 using window-text-pixel-size.
1454
1455 2013-11-30 Glenn Morris <rgm@gnu.org>
1456
1457 * emacs-lisp/bytecomp.el (byte-compile-form):
1458 Make the `interactive-only' warning like the `obsolete' one.
1459 * comint.el (comint-run):
1460 * files.el (insert-file-literally, insert-file):
1461 * replace.el (replace-string, replace-regexp):
1462 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
1463 (goto-line, insert-buffer, next-line, previous-line):
1464 Tweak `interactive-only' spec.
1465
1466 Stop keeping (most) generated cedet grammar files in the repository.
1467 * Makefile.in (semantic): New.
1468 (compile-main): Depend on semantic.
1469
1470 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
1471
1472 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
1473 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
1474
1475 * uniquify.el (uniquify-buffer-name-style): Change default.
1476
1477 * loadup.el: Preload "uniquify".
1478
1479 * time.el (display-time-update): Update all mode lines (bug#15999).
1480
1481 * electric.el (electric-indent-mode): Enable by default.
1482 * loadup.el: Preload "electric".
1483
1484 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
1485
1486 * emacs-lisp/helpers.el (string-empty-p): New function.
1487 (string-blank-p): New function.
1488
1489 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
1490
1491 * imenu.el (imenu--index-alist): Add missing dot to the docstring
1492 (Bug#14029).
1493
1494 2013-11-29 Andreas Politz <politza@fh-trier.de>
1495 * imenu.el (imenu--subalist-p): Don't error on non-conses and
1496 allow non-lambda lists as functions.
1497 (imenu--in-alist): Don't recurse into non-subalists.
1498 (imenu): Don't pass function itself as an argument (Bug#14029).
1499
1500 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
1501
1502 * progmodes/python.el (python-mode-map): Remove binding for ":".
1503 (python-indent-electric-colon): Remove command.
1504 (python-indent-post-self-insert-function): Integrate the previous code
1505 of python-indent-electric-colon. Make it conditional on
1506 electric-indent-mode.
1507 (python-mode): Add ?: to electric-indent-chars.
1508 Move python-indent-post-self-insert-function to the end of
1509 post-self-insert-hook.
1510
1511 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
1512
1513 * doc-view.el (doc-view-goto-page): Update mode-line.
1514
1515 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
1516
1517 2013-11-27 Glenn Morris <rgm@gnu.org>
1518
1519 * international/charprop.el, international/uni-bidi.el:
1520 * international/uni-category.el, international/uni-combining.el:
1521 * international/uni-comment.el, international/uni-decimal.el:
1522 * international/uni-decomposition.el, international/uni-digit.el:
1523 * international/uni-lowercase.el, international/uni-mirrored.el:
1524 * international/uni-name.el, international/uni-numeric.el:
1525 * international/uni-old-name.el, international/uni-titlecase.el:
1526 * international/uni-uppercase.el:
1527 Remove generated files from VCS repository.
1528
1529 2013-11-27 Eli Zaretskii <eliz@gnu.org>
1530
1531 * filenotify.el (file-notify-add-watch): Don't special-case
1532 w32notify when computing the directory to watch.
1533
1534 2013-11-27 Glenn Morris <rgm@gnu.org>
1535
1536 Make bootstrap without generated uni-*.el files possible again.
1537 * loadup.el: Update command-line-args checking for unidata-gen.
1538 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
1539 * composite.el, international/characters.el:
1540 Handle unicode tables being undefined.
1541
1542 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
1543 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
1544 (compile-main): Depend on leim rule.
1545 (leim): New rule.
1546 * loadup.el: Move leim-list.el to leim/ subdirectory.
1547 * startup.el (normal-top-level): No more leim directory.
1548 * international/ja-dic-cnv.el (skkdic-convert):
1549 Disable version-control and autoloads in output files.
1550 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
1551 Disable version-control and autoloads in output files.
1552 * leim/quail: Move here from ../leim.
1553 * leim/quail/hangul.el (hangul-input-method-activate):
1554 Add autoload cookie.
1555 (generated-autoload-load-name): Set file-local value.
1556 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
1557 (generated-autoload-load-name): Set file-local value.
1558
1559 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com> (tiny change)
1560
1561 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
1562 (eww-add-bookmark): Ask confirmation when add to bookmarks
1563 (eww-quit): Ask confirmation before quitting eww.
1564
1565 2013-11-26 Eli Zaretskii <eliz@gnu.org>
1566
1567 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
1568 reading output from Diff on MS-Windows and MS-DOS.
1569
1570 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
1571
1572 * emacs-lisp/helpers.el (string-reverse): New function.
1573
1574 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
1575
1576 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
1577 names on MS Windows, like "/[::1]:".
1578
1579 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
1580 SWITCHES.
1581
1582 2013-11-26 Glenn Morris <rgm@gnu.org>
1583
1584 * progmodes/python.el (python-indent-guess-indent-offset):
1585 Avoid corner-case error. (Bug#15975)
1586
1587 Preload leim-list.el. (Bug#4789)
1588 * loadup.el: Load leim-list.el when found.
1589 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
1590
1591 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
1592
1593 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
1594
1595 * emacs-lisp/helpers.el (string-join): New function.
1596
1597 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
1598
1599 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
1600 Mark as obsolete and replace it with a symbol property.
1601 (byte-compile-form): Use new 'interactive-only property.
1602 * comint.el, files.el, replace.el, simple.el:
1603 Apply new 'interactive-only properly.
1604
1605 2013-11-25 Martin Rudalics <rudalics@gmx.at>
1606
1607 * window.el (display-buffer-at-bottom): Make sure that
1608 split-window-sensibly creates the new window on bottom
1609 (Bug#15961).
1610
1611 2013-11-23 David Kastrup <dak@gnu.org>
1612
1613 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
1614 on the conflict markers when available.
1615 (smerge--get-marker): New function.
1616 (smerge-end-re, smerge-base-re): Add subgroup.
1617
1618 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
1619
1620 * frame.el (handle-focus-in, handle-focus-out): Add missing
1621 interactive spec.
1622
1623 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
1624
1625 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
1626 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
1627
1628 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
1629
1630 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
1631 (gomoku--last-pos): New var.
1632 (gomoku--intangible-chars): New const.
1633 (gomoku--intangible): New function.
1634 (gomoku-mode): Use it. Derive from special-mode.
1635 (gomoku-move-up): Adjust line count.
1636 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
1637 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
1638 Simplify accordingly.
1639
1640 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
1641 Remove blink-cursor code.
1642 (blink-cursor-timer-function, blink-cursor-suspend):
1643 Don't special-case GUIs.
1644 (blink-cursor-mode): Use focus-in/out-hook.
1645
1646 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
1647
1648 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
1649 work when annotation is invisible (Bug#13886).
1650
1651 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
1652
1653 * json.el (json-alist-p): Only return non-nil if the alist has
1654 simple keys (Bug#13518).
1655
1656 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
1657
1658 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
1659 when control-statement is the first statement in a buffer (Bug#15956).
1660
1661 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
1662
1663 * imenu.el (imenu-generic-skip-comments-and-strings):
1664 New option (Bug#15560).
1665 (imenu--generic-function): Use it.
1666
1667 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
1668
1669 * minibuffer.el (completion--in-region-1): Scroll the correct
1670 window. (Bug#13898)
1671
1672 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
1673
1674 * emacs-lisp/helpers.el: Add some string helpers.
1675 (string-trim-left): Removes leading whitespace.
1676 (string-trim-right): Removes trailing whitespace.
1677 (string-trim): Removes leading and trailing whitespace.
1678
1679 * subr.el (string-suffix-p): New function.
1680
1681 2013-11-23 Glenn Morris <rgm@gnu.org>
1682
1683 * progmodes/python.el (python-shell-send-file):
1684 Add option to delete file when done. (Bug#15647)
1685 (python-shell-send-string, python-shell-send-region): Use it.
1686
1687 2013-11-23 Ivan Shmakov <ivan@siamics.net> (tiny change)
1688
1689 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
1690 to set buffer-read-only to t, never to nil. (Bug#15938)
1691
1692 * textmodes/tex-mode.el (latex-noindent-environments):
1693 Add safe-local-variable property. (Bug#15936)
1694
1695 2013-11-23 Glenn Morris <rgm@gnu.org>
1696
1697 * textmodes/enriched.el (enriched-mode): Doc fix.
1698 * emacs-lisp/authors.el (authors-renamed-files-alist):
1699 Add enriched.doc -> enriched.txt.
1700
1701 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
1702
1703 2013-11-22 Leo Liu <sdl.web@gmail.com>
1704
1705 * progmodes/octave.el (inferior-octave-startup): Spit out error
1706 message.
1707
1708 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
1709
1710 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
1711 Improve docstring.
1712 Add :version.
1713 (ruby-encoding-magic-comment-style): Add :version.
1714
1715 2013-11-22 Leo Liu <sdl.web@gmail.com>
1716
1717 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
1718 (Bug#15076)
1719 (octave-help-mode): Adapt to change to help-mode-finish to use
1720 derived-mode-p on 2013-09-17.
1721 (inferior-octave-prompt): Also match octave-gui.
1722 (octave-kill-process): Don't ask twice. (Bug#10564)
1723
1724 2013-11-22 Leo Liu <sdl.web@gmail.com>
1725
1726 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
1727 (inferior-octave-startup, inferior-octave-check-process)
1728 (inferior-octave-track-window-width-change)
1729 (octave-completion-at-point, octave-eldoc-function): Use it.
1730 (octave-kill-process): Provide confirmation. (Bug#10564)
1731
1732 2013-11-21 Leo Liu <sdl.web@gmail.com>
1733
1734 * progmodes/octave.el (octave-mode, inferior-octave-mode):
1735 Fix obsolete variable comment-use-global-state.
1736
1737 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1738
1739 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
1740 Add `octave-source-file'.
1741 (octave-source-file): New function. (Bug#15935)
1742
1743 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com> (tiny change)
1744
1745 * net/eww.el (eww-local-regex): New variable.
1746 (eww): Use it to detect localhost and similar.
1747
1748 2013-11-21 Leo Liu <sdl.web@gmail.com>
1749
1750 Add completion for command `ag'.
1751 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
1752 (pcomplete/ag): New function.
1753 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
1754
1755 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
1756
1757 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
1758 (bug#14646).
1759 (make-obsolete): Remove interactive spec.
1760
1761 2013-11-21 Glenn Morris <rgm@gnu.org>
1762
1763 * startup.el (command-line-1): Use path-separator with -L.
1764
1765 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
1766
1767 * emacs-lisp/package.el (describe-package-1): Add package archive
1768 to shown fields.
1769
1770 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
1771
1772 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
1773 Change default to "# encoding: %s" to differentiate it from the
1774 default Ruby encoding comment template.
1775
1776 2013-11-20 era eriksson <era+emacsbugs@iki.fi>
1777
1778 * ses.el (ses-mode): Doc fix. (Bug#14748)
1779
1780 2013-11-20 Leo Liu <sdl.web@gmail.com>
1781
1782 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
1783
1784 2013-11-19 Dan Nicolaescu <dann@gnu.org>
1785
1786 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
1787 when rebase or bisect are in progress.
1788
1789 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
1790
1791 * filenotify.el (file-notify-add-watch): Doc fix.
1792
1793 2013-11-19 Leo Liu <sdl.web@gmail.com>
1794
1795 * obsolete/rcompile.el: Mark obsolete.
1796
1797 * progmodes/compile.el (compilation-start)
1798 (compilation-goto-locus, compilation-find-file):
1799 Pass no-display-ok and handle nil value from display-buffer.
1800 (Bug#13594)
1801
1802 * window.el (display-buffer-alist, display-buffer): Document the
1803 new parameter no-display-ok. Return either a window or nil
1804 but never a non-window value.
1805
1806 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
1807
1808 * electric.el (electric-indent-mode-map): Remove.
1809 (electric-indent-mode): Change the global-map instead (bug#15915).
1810
1811 * textmodes/text-mode.el (paragraph-indent-minor-mode):
1812 Use add-function.
1813
1814 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
1815
1816 * emacs-lisp/nadvice.el (remove-function): Align with
1817 add-function's behavior.
1818
1819 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
1820 (gdb--string-regexp): New constant.
1821 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
1822 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
1823 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
1824 submatch 1.
1825 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
1826 Adjust use accordingly.
1827 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
1828
1829 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
1830
1831 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
1832 interpolation curlies (Bug#15914).
1833
1834 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
1835
1836 * calc/calc.el (calc-context-sensitive-enter): New variable.
1837 (calc-enter): Use `calc-context-sensitive-enter'.
1838
1839 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
1840
1841 * progmodes/cfengine.el: Version bump.
1842 (cfengine-cf-promises): New defcustom to locate cf-promises.
1843 (cfengine3-vartypes): Add new "data" type.
1844 (cfengine3--current-word): New function to get current name-like
1845 word or its bounds.
1846 (cfengine3--current-function): New function to look up a CFEngine
1847 function's definition.
1848 (cfengine3-format-function-docstring): New function.
1849 (cfengine3-make-syntax-cache): New function.
1850 (cfengine3-documentation-function): New function: ElDoc glue.
1851 (cfengine3-completion-function): New function: completion glue.
1852 (cfengine3-mode): Set `compile-command',
1853 `eldoc-documentation-function', and add to
1854 `completion-at-point-functions'.
1855
1856 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
1857
1858 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
1859 `tramp-current-connection'.
1860
1861 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
1862
1863 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
1864 nil/self/true/false with "end of symbol".
1865
1866 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
1867
1868 * subr.el (version-regexp-alist): Fix a typo.
1869
1870 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
1871
1872 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
1873 "en_US.utf8" and "LC_CTYPE" to "".
1874 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
1875 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
1876
1877 2013-11-15 Leo Liu <sdl.web@gmail.com>
1878
1879 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
1880
1881 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
1882
1883 * progmodes/gud.el (ctl-x-map):
1884 Remove C-x SPC binding. (Bug#12342)
1885 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
1886
1887 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
1888
1889 * subr.el (version-regexp-alist):
1890 Recognize hg, svn and darcs versions as snapshot versions.
1891
1892 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
1893 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
1894 (ruby--encoding-comment-required-p): Extract from
1895 `ruby-mode-set-encoding'.
1896 (ruby-mode-set-encoding): Add the ability to always insert an
1897 utf-8 encoding comment. Fix and simplify coding comment update
1898 logic.
1899
1900 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
1901
1902 * net/tramp-gvfs.el (top): Run init code only when
1903 `tramp-gvfs-enabled' is not nil.
1904 (tramp-gvfs-enabled): Check also :system bus.
1905
1906 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
1907
1908 Sync with upstream verilog-mode revision 78e66ba.
1909 * progmodes/verilog-mode.el (verilog-end-of-defun)
1910 (verilog-type-completion, verilog-get-list): Remove unused funcs.
1911 (verilog-get-end-of-defun): Remove unused argument.
1912 (verilog-comment-depth): Remove unused local `e'.
1913 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
1914 Don't pass arg to verilog-get-end-of-defun.
1915
1916 2013-11-14 Glenn Morris <rgm@gnu.org>
1917
1918 * obsolete/assoc.el (aget): Prefix dynamic variable.
1919
1920 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
1921
1922 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
1923
1924 * widget.el, hfy-cmap.el: Remove bogus package version number.
1925
1926 2013-11-13 Glenn Morris <rgm@gnu.org>
1927
1928 * replace.el (replace-eval-replacement):
1929 Try to give more helpful error message. (Bug#15836)
1930
1931 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
1932 (archive-7z-update): Avoid custom type mismatches.
1933
1934 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
1935
1936 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
1937
1938 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
1939 address can be empty.
1940
1941 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
1942 Accept nil SWITCHES.
1943 (tramp-gvfs-handle-write-region): Implement APPEND.
1944
1945 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
1946
1947 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
1948 binary "|" operator and closing block args delimiter.
1949 Remove FIXME comment referring to Ruby 1.8-only syntax.
1950 (ruby-smie--implicit-semi-p): Not after "|" operator.
1951 (ruby-smie--closing-pipe-p): New function.
1952 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
1953 (ruby-smie-rules): Indent after "|".
1954
1955 2013-11-12 Glenn Morris <rgm@gnu.org>
1956
1957 * ps-print.el (ps-face-attribute-list):
1958 Handle anonymous faces. (Bug#15827)
1959
1960 2013-11-12 Martin Rudalics <rudalics@gmx.at>
1961
1962 * window.el (display-buffer-other-frame): Fix doc-string.
1963 (Bug#15868)
1964
1965 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
1966
1967 * subr.el (force-mode-line-update): Delete, move to buffer.c.
1968
1969 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
1970
1971 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
1972 (tramp-sh-handle-file-local-copy): Don't write a message when
1973 saving temporary files.
1974
1975 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
1976 both directories are remote.
1977 (tramp-smb-handle-directory-files): Do not return double entries.
1978 Do not expand full file names.
1979 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
1980 (tramp-smb-handle-write-region): Implement APPEND.
1981 (tramp-smb-get-stat-capability): Fix a stupid bug.
1982
1983 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
1984
1985 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
1986
1987 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
1988
1989 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
1990 throwing error over malformed let/let* (bug#15814).
1991
1992 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
1993
1994 * iswitchb.el (iswitchb-mode): Mark obsolete.
1995
1996 2013-11-11 Glenn Morris <rgm@gnu.org>
1997
1998 * international/uni-bidi.el, international/uni-category.el:
1999 * international/uni-name.el, international/uni-numeric.el:
2000 Regenerate for Unicode 6.3.0.
2001
2002 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
2003
2004 * net/tramp.el (tramp-methods):
2005 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
2006 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
2007
2008 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
2009
2010 * progmodes/sh-script.el (sh-font-lock-keywords-var):
2011 Force highlighting text after Summary keyword in doc face for rpm.
2012
2013 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
2014
2015 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
2016 available and the word has no wildcards, append one to the grep pattern.
2017 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
2018 (ispell-complete-word): Call `ispell-lookup-words' with the value
2019 independent of `ispell-look-p'.
2020
2021 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
2022
2023 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
2024 Not after "||".
2025 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
2026 their parent.
2027
2028 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2029
2030 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
2031 (ruby-font-lock-keywords): Use backquote.
2032
2033 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
2034
2035 * progmodes/ruby-mode.el (ruby-smie--forward-token)
2036 (ruby-smie--backward-token): Only consider full-string matches.
2037
2038 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
2039
2040 * faces.el (describe-face): Add distant-foreground.
2041
2042 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
2043
2044 * progmodes/ruby-mode.el: Improve encoding comment handling.
2045 (ruby-encoding-magic-comment-style): New option.
2046 (ruby-custom-encoding-magic-comment-template): New option.
2047 (ruby--insert-coding-comment, ruby--detect-encoding):
2048 New functions extracted from `ruby-mode-set-encoding'.
2049 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
2050 to control the style of the auto-inserted encoding comment.
2051
2052 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
2053
2054 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
2055 Use `smie-backward-sexp' with token argument.
2056
2057 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
2058
2059 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
2060 Remove instrumentation code.
2061
2062 2013-11-08 Glenn Morris <rgm@gnu.org>
2063
2064 * progmodes/autoconf.el (autoconf-mode):
2065 Tweak comment-start-skip. (Bug#15822)
2066
2067 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2068
2069 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
2070 at bobp (bug#15826).
2071 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
2072
2073 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
2074
2075 * man.el (Man-start-calling): New macro, extracted from
2076 Man-getpage-in-background.
2077 (Man-getpage-in-background): Use it.
2078 (Man-update-manpage): New command.
2079 (Man-mode-map): Bind it.
2080
2081 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
2082
2083 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
2084 of "and", "or", "&&" and "||".
2085 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
2086 argument. Prohibit opening curly brace because it could only be a
2087 block opener in that position.
2088 (ruby-smie--forward-token, ruby-smie--backward-token):
2089 Separate "|" from "&" or "*" going after it. That can happen in block
2090 arguments.
2091 (ruby-smie--indent-to-stmt): New function, seeks the end of
2092 previous statement or beginning of buffer.
2093 (ruby-smie-rules): Use it.
2094 (ruby-smie-rules): Check if there's a ":" before a curly block
2095 opener candidate; if there is, it's a hash.
2096
2097 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
2098
2099 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
2100 (cl--block-wrapper): Fix last accidental change.
2101
2102 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
2103
2104 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
2105 Instrument, in order to hunt failure on hydra.
2106
2107 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
2108
2109 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
2110 malformed bindings form (bug#15814).
2111
2112 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
2113
2114 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
2115 "." compared to " @ ". This incidentally fixes some indentation
2116 examples with "do".
2117 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
2118 (ruby-smie-grammar): New tokens: "and" and "or".
2119 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
2120 Exclude "and" and "or". Remove "do" in order to work around token
2121 priorities.
2122 (ruby-smie-rules): Add all infix tokens. Handle the case of
2123 beginning-of-buffer.
2124
2125 2013-11-06 Glenn Morris <rgm@gnu.org>
2126
2127 * Makefile.in (setwins_almost, setwins_for_subdirs):
2128 Avoid accidental matches.
2129
2130 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
2131
2132 * menu-bar.el (popup-menu): Use key-binding.
2133
2134 2013-11-06 Eli Zaretskii <eliz@gnu.org>
2135
2136 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
2137 menus, support also the menus produced by minor modes.
2138 (Bug#15817)
2139
2140 2013-11-06 Leo Liu <sdl.web@gmail.com>
2141
2142 * thingatpt.el (thing-at-point-looking-at): Add optional arg
2143 DISTANCE to bound the search. All uses changed. (Bug#15808)
2144
2145 2013-11-06 Glenn Morris <rgm@gnu.org>
2146
2147 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
2148 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
2149 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
2150
2151 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
2152
2153 * electric.el (electric-indent-just-newline): New command.
2154 (electric-indent-mode-map): New keymap.
2155 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
2156 Re-add :group which weren't redundant.
2157
2158 * electric.el (electric-indent-local-mode): New minor mode.
2159 (electric-indent-functions-without-reindent): New var.
2160 (electric-indent-post-self-insert-function): Use it.
2161 * emacs-lisp/gv.el (buffer-local-value): Add setter.
2162
2163 2013-11-05 Eli Zaretskii <eliz@gnu.org>
2164
2165 * international/quail.el (quail-help): Be more explicit about the
2166 meaning of the labels shown on the keys. (Bug#15800)
2167
2168 * startup.el (normal-top-level): Load the subdirs.el files before
2169 setting the locale environment. (Bug#15805)
2170
2171 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
2172
2173 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
2174 via arguments so as to get the right ones (bug#15418).
2175
2176 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
2177
2178 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
2179
2180 Fix problems found while writing a test suite.
2181
2182 * net/tramp-compat.el (tramp-compat-load): New defun.
2183 * net/tramp.el (tramp-handle-load): Use it.
2184
2185 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
2186 "(numberp ok-if-already-exists)" correctly.
2187
2188 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
2189
2190 * international/characters.el (glyphless-char-display-control):
2191 Add usage note.
2192
2193 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
2194
2195 * progmodes/python.el (python-mode):
2196 * progmodes/scheme.el (scheme-mode):
2197 * progmodes/prolog.el (prolog-mode):
2198 * progmodes/ruby-mode.el (ruby-mode):
2199 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
2200 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
2201
2202 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
2203
2204 * rect.el (rectangle--highlight-for-redisplay):
2205 * emacs-lisp/smie.el (smie--next-indent-change):
2206 Use buffer-chars-modified-tick.
2207
2208 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
2209
2210 * electric.el (electric-indent-post-self-insert-function):
2211 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
2212
2213 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
2214
2215 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
2216
2217 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
2218
2219 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
2220 (bug#15786).
2221
2222 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
2223
2224 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
2225
2226 * progmodes/python.el: Fix up last change.
2227 (python-shell--save-temp-file): New function.
2228 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
2229 `string' comes from the current buffer.
2230 (python-shell-send-string-no-output): Remove `msg' arg.
2231 (python--use-fake-loc): New var.
2232 (python-shell-buffer-substring): Obey it. Try to compensate for the
2233 extra coding line added by python-shell--save-temp-file.
2234 (python-shell-send-region): Use python-shell--save-temp-file and
2235 python-shell-send-file directly. Add `nomain' argument.
2236 (python-shell-send-buffer): Use python-shell-send-region.
2237 (python-electric-pair-string-delimiter): New function.
2238 (python-mode): Use it.
2239
2240 2013-11-04 Eli Zaretskii <eliz@gnu.org>
2241
2242 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
2243 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
2244 environment and decoding all of the default-directory's to here
2245 from command-line.
2246 (command-line): Decode also argv[0].
2247
2248 * loadup.el: Error out if default-directory is a multibyte string
2249 when we are dumping.
2250
2251 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
2252
2253 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
2254
2255 * emacs-lisp/package.el (package-menu-mode)
2256 (package-menu--print-info, package-menu--archive-predicate):
2257 Add Archive column to package list.
2258
2259 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
2260
2261 Fix problems found while writing a test suite.
2262
2263 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
2264 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
2265 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
2266 to nil when running original file name handler. Otherwise,
2267 there are problems with constructs like "$$FOO".
2268
2269 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
2270 for `localname'.
2271
2272 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
2273
2274 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
2275
2276 * subr.el (version<, version<=, version=):
2277 Update docstrings with information for snapshot versions.
2278
2279 * helpers.el: New library for misc helper functions.
2280 (hash-table-keys): New function returning a list of hash keys.
2281 (hash-table-values): New function returning a list of hash values.
2282
2283 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
2284
2285 * progmodes/ruby-mode.el (ruby-smie--forward-token)
2286 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
2287
2288 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
2289
2290 * textmodes/fill.el (fill-single-char-nobreak-p): New function
2291 checking whether point is after a 1-letter word.
2292
2293 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
2294
2295 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
2296 Don't infloop when expanding region over `multiline' syntax-type that
2297 begins a line (bug#15778).
2298
2299 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
2300
2301 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
2302 Make it into a proper minor mode.
2303 (rectangle--region): (implicitly) rename to rectangle-mark-mode.
2304 (rectangle-mark-mode-map): New keymap.
2305 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
2306
2307 2013-11-04 Glenn Morris <rgm@gnu.org>
2308
2309 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
2310
2311 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
2312
2313 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
2314 (ruby-smie-rules): Use smie-rule-parent instead.
2315
2316 * emacs-lisp/smie.el (smie-rule-parent): Always call
2317 smie-indent-virtual rather than only for hanging tokens.
2318 (smie--next-indent-change): New helper command.
2319
2320 2013-11-03 Glenn Morris <rgm@gnu.org>
2321
2322 * Makefile.in (abs_srcdir): Remove.
2323 (emacs): Unset EMACSLOADPATH.
2324
2325 2013-11-02 Glenn Morris <rgm@gnu.org>
2326
2327 * Makefile.in (EMACS): Use a relative filename.
2328 (abs_top_builddir): Remove.
2329 (custom-deps, finder-data, autoloads): Use --chdir.
2330
2331 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
2332
2333 Use relative filenames in TAGS files.
2334 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
2335 (lisptagsfiles4, TAGS): Use relative file names.
2336 (TAGS-LISP): Remove.
2337 (maintainer-clean): No more TAGS-LISP file.
2338
2339 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
2340 (lisptagsfiles4): Use absolute filenames again.
2341 (TAGS, TAGS-LISP): Not everything needs to run in one line.
2342 Remove all *loaddefs files, not just the first. Remove esh-groups.
2343 (maintainer-clean): Delete TAGS, TAGS-LISP.
2344
2345 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
2346
2347 * emacs-lisp/package.el (package-version-join):
2348 Recognize snapshot versions.
2349
2350 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
2351
2352 * subr.el (version-regexp-alist): Add support for snapshot versions.
2353
2354 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
2355
2356 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
2357 New function, replacement for `smie-rule-parent' for when we want to
2358 skip over our direct parent if it's an assignment token..
2359 (ruby-smie-rules): Use it.
2360
2361 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
2362
2363 * progmodes/ruby-mode.el Use `syntax-propertize-function'
2364 unconditionally. Remove now unnecessary forward declarations.
2365 Remove XEmacs-specific setup.
2366 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
2367 (ruby-font-lock-syntactic-keywords)
2368 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
2369 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
2370 (ruby-here-doc-end-syntax): Remove.
2371 (ruby-mode): Don't check whether `syntax-propertize-rules' is
2372 defined as function.
2373
2374 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
2375
2376 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
2377
2378 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
2379
2380 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
2381 table and abbrev table, `define-derived-mode' does that for us
2382 anyway.
2383
2384 2013-11-01 Glenn Morris <rgm@gnu.org>
2385
2386 * Makefile.in: Remove manual mh-e dependencies (writing .elc
2387 files is atomic for some time, so no parallel compilation issues).
2388
2389 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
2390
2391 * faces.el (face-x-resources): Add :distant-foreground.
2392 (region): Use :distant-foreground for gtk and ns.
2393
2394 2013-11-01 Tassilo Horn <tsdh@gnu.org>
2395
2396 Allow multiple bibliographies when BibLaTeX is used rather than
2397 BibTeX.
2398 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
2399 (reftex-locate-bibliography-files): Us it.
2400
2401 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
2402
2403 * image.el (image-type-header-regexps): Fix the 'pbm' part to
2404 allow comments in pbm files.
2405
2406 * term/w32-win.el (dynamic-library-alist): Support newer versions
2407 of libjpeg starting with v7: look only for the DLL from the
2408 version against which Emacs was built.
2409 Support versions of libpng beyond 1.4.x.
2410 Support libtiff v4.x.
2411
2412 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
2413
2414 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
2415 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
2416 Add property :safe.
2417 (ruby-deep-arglist): Add property :type.
2418
2419 2013-10-31 Glenn Morris <rgm@gnu.org>
2420
2421 * Makefile.in (custom-deps, finder-data): No need to setq the target
2422 variables, we are in the right directory and the defaults work fine.
2423
2424 2013-10-30 Glenn Morris <rgm@gnu.org>
2425
2426 * Makefile.in (autoloads): Do not use abs_lisp.
2427
2428 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
2429 `newline' does not respect `standard-output', so use `princ'.
2430
2431 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
2432
2433 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
2434 * buff-menu.el (Buffer-menu--unmark): New function.
2435 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
2436
2437 2013-10-30 Glenn Morris <rgm@gnu.org>
2438
2439 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
2440
2441 * emacs-lisp/package.el (lm-homepage): Declare.
2442
2443 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
2444 Fix doc typos.
2445
2446 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
2447
2448 * Makefile.in (finder-data, autoloads, update-subdirs)
2449 (compile-main, compile-clean, compile-always, bootstrap-clean):
2450 Check return value of cd.
2451 (compile-calc): Remove.
2452
2453 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
2454
2455 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
2456
2457 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
2458 (byte-compile-and-folded): New function.
2459 (=, <, >, <=, >=): Use it.
2460
2461 * dos-w32.el (minibuffer-history-case-insensitive-variables)
2462 (path-separator, null-device, buffer-file-coding-system)
2463 (lpr-headers-switches): Check system-type before modifying them.
2464 (find-buffer-file-type-coding-system): Mark obsolete.
2465 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
2466 find-file-not-found-set-buffer-file-coding-system.
2467 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name):
2468 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
2469 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p):
2470 (w32-direct-print-region-helper, w32-direct-print-region-function)
2471 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
2472 * startup.el (normal-top-level-add-subdirs-to-load-path):
2473 * ps-print.el (ps-print-region-function):
2474 * lpr.el (print-region-function): Use new name.
2475
2476 * subr.el (custom-declare-variable-early): Remove function.
2477 (custom-declare-variable-list): Remove var.
2478 (error, user-error): Remove `while' loop.
2479 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
2480 (user-emacs-directory-warning, locate-user-emacs-file):
2481 Move to files.el.
2482 * simple.el (read-quoted-char-radix, read-quoted-char):
2483 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
2484 Move from subr.el.
2485 * custom.el (custom-declare-variable-list): Don't process
2486 custom-declare-variable-list.
2487
2488 * progmodes/python.el (python-shell-get-buffer): New function.
2489 (python-shell-get-process): Use it.
2490 (python-shell-send-string): Always use utf-8 and add a cookie to tell
2491 Python which encoding was used. Don't split-string since we only care
2492 about the first line. Return the temp-file, if applicable.
2493 (python-shell-send-region): Tell compile.el how to turn locations in
2494 the temp-file into locations in the source buffer.
2495
2496 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
2497
2498 * subr.el (undefined): Add missing behavior from the C code for
2499 unbound keys.
2500
2501 * rect.el: Use lexical-binding. Add new rectangular region support.
2502 (rectangle-mark): New command.
2503 (rectangle--region): New var.
2504 (deactivate-mark-hook): Reset rectangle--region.
2505 (rectangle--extract-region, rectangle--insert-for-yank)
2506 (rectangle--highlight-for-redisplay)
2507 (rectangle--unhighlight-for-redisplay): New functions.
2508 (region-extract-function, redisplay-unhighlight-region-function)
2509 (redisplay-highlight-region-function): Use them to handle
2510 rectangular region.
2511 * simple.el (region-extract-function): New var.
2512 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
2513 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
2514 (kill-region): Replace obsolete `yank-handler' arg with `region'.
2515 (copy-region-as-kill, kill-ring-save): Add `region' argument.
2516 (redisplay-unhighlight-region-function)
2517 (redisplay-highlight-region-function): New vars.
2518 (redisplay--update-region-highlight): New function.
2519 (pre-redisplay-function): Use it.
2520 (exchange-point-and-mark): Don't deactivate the mark before
2521 reactivate-it anyway.
2522 * comint.el (comint-kill-region): Remove yank-handler argument.
2523 * delsel.el (delete-backward-char, backward-delete-char-untabify)
2524 (delete-char): Remove property, since it's now part of their
2525 default behavior.
2526 (self-insert-iso): Remove property since this command doesn't exist.
2527
2528 * emacs-lisp/package.el (package--download-one-archive)
2529 (describe-package-1): Don't query the user about final newline.
2530
2531 2013-10-29 Daniel Colascione <dancol@dancol.org>
2532
2533 * net/tramp.el (tramp-methods): Document new functionality.
2534 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
2535 tramp-hostname-checker if method provides one instead of scanning
2536 argument list for "%h" to decide hostname acceptability.
2537
2538 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
2539
2540 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
2541 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
2542 Handle COPY-CONTENTS. (Bug#15737)
2543
2544 2013-10-28 Daiki Ueno <ueno@gnu.org>
2545
2546 * epa-file.el
2547 (epa-file-cache-passphrase-for-symmetric-encryption):
2548 Document that this option has no effect with GnuPG 2.0 (bug#15552).
2549
2550 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
2551
2552 * image.el (defimage):
2553 (image-load-path): Doc fixes.
2554
2555 2013-10-27 Alan Mackenzie <acm@muc.de>
2556
2557 Indent statements in macros following "##" correctly.
2558 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
2559 Modify the "#" arm of a cond form to handle "#" and "##" operators.
2560
2561 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
2562
2563 * linum.el (linum-update-window): Fix boundary test (bug#13446).
2564
2565 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
2566
2567 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
2568 after `=' is probably a new expression.
2569
2570 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2571
2572 * man.el (man-imenu-title): New option.
2573 (Man-mode-map): Add menu. (Bug#15722)
2574 (Man-mode): Add imenu to menu.
2575
2576 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
2577
2578 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
2579 specific in what the first arg can be: a non-keyword word,
2580 string/regexp/percent literal opener, opening paren, or unary
2581 operator followed directly by word.
2582
2583 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
2584
2585 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
2586 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
2587 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
2588 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
2589 Remove vars, they do not apply any more.
2590 (prolog-mode-abbrev-table): Remove redundant declaration.
2591 (prolog-upper-case-string, prolog-lower-case-string): Remove.
2592 (prolog-use-smie): Remove.
2593 (prolog-smie-rules): Add indentation rule for the if-then-else layout
2594 supported by prolog-electric-if-then-else-flag.
2595 (prolog-mode-variables, prolog-menu): Use setq-local.
2596 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
2597 Remove binding to `Backspace' since this key doesn't exist anyway.
2598 Remove bindings for electric self-inserting keys.
2599 (prog-mode): Assume it's defined.
2600 (prolog-post-self-insert): New function.
2601 (prolog-mode): Use it.
2602 (prolog-indent-line, prolog-indent-level)
2603 (prolog-find-indent-of-matching-paren)
2604 (prolog-indentation-level-of-line, prolog-goto-comment-column)
2605 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
2606 (prolog-goto-next-paren, prolog-in-string-or-comment)
2607 (prolog-tokenize, prolog-inside-mline-comment)
2608 (prolog-find-start-of-mline-comment): Remove functions.
2609 (prolog-find-unmatched-paren, prolog-clause-end)
2610 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
2611 (prolog-electric--if-then-else): Rename from
2612 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
2613 (prolog-tokenize-searchkey): Remove const.
2614 (prolog-clause-info): Use forward-sexp.
2615 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
2616 (prolog-electric-if-then-else): Remove commands.
2617 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
2618 for use in post-self-insert-hook.
2619 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
2620 for use in post-self-insert-hook.
2621 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
2622 for use in post-self-insert-hook.
2623 (prolog-electric--underscore): Rename from prolog-electric--underscore;
2624 adapt it for use in post-self-insert-hook.
2625
2626 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
2627
2628 * emacs-lisp/ert.el (ert-run-tests-interactively):
2629 Use `completing-read'. (Bug#9756)
2630
2631 2013-10-25 Eli Zaretskii <eliz@gnu.org>
2632
2633 * simple.el (line-move): Call line-move-1 instead of
2634 line-move-visual when the current window hscroll is zero, but
2635 temporary-goal-column indicates we will need to hscroll as result
2636 of the movement. (Bug#15712)
2637
2638 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
2639
2640 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
2641 capitalization. Use :visible instead of :active.
2642 Fix `ruby-indent-exp' reference. Add menu items for the generic
2643 commands that are used with SMIE.
2644 (ruby-do-end-to-brace): Insert space after `{'.
2645
2646 2013-10-25 John Anthony <john@jo.hnanthony.com>
2647
2648 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
2649
2650 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
2651
2652 2013-10-25 Glenn Morris <rgm@gnu.org>
2653
2654 * vc/vc.el (vc-print-log): Don't use a working revision unless
2655 one was explicitly specified. (Bug#15322)
2656
2657 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
2658
2659 * subr.el (add-to-list): Preserve return value in compiler-macro
2660 (bug#15692).
2661
2662 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2663
2664 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
2665 result. Ask user to retry using '-all' flag. (Bug#15701)
2666
2667 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
2668
2669 * emacs-lisp/smie.el: New smie-config system.
2670 (smie-config): New defcustom.
2671 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
2672 (smie-config-guess, smie-config-save): New commands.
2673 (smie-config--mode-local, smie-config--buffer-local)
2674 (smie-config--trace, smie-config--modefuns): New vars.
2675 (smie-config--advice, smie-config--mode-hook)
2676 (smie-config--setter, smie-config-local, smie-config--get-trace)
2677 (smie-config--guess-value, smie-config--guess): New functions.
2678 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
2679 text properties. Treat "string fence" syntax like string syntax.
2680
2681 * progmodes/sh-script.el (sh-use-smie): Change default.
2682 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
2683 (sh-var-value): Simplify by CSE.
2684 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
2685 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
2686 is used.
2687 (sh-guess-basic-offset): Use cl-incf.
2688 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
2689
2690 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
2691
2692 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
2693 (bug#15699).
2694
2695 2013-10-24 Glenn Morris <rgm@gnu.org>
2696
2697 * Makefile.in (abs_top_srcdir): Remove.
2698 (update-subdirs): Use relative path to update-subdirs.
2699
2700 2013-10-24 Eli Zaretskii <eliz@gnu.org>
2701
2702 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
2703 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
2704 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
2705 Call unmsys--file-name before expand-file-name, not after it.
2706
2707 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
2708
2709 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
2710 (ert-test-skipped): New error.
2711 (ert-skip, ert-stats-skipped): New defuns.
2712 (ert--skip-unless): New macro.
2713 (ert-test-skipped): New struct.
2714 (ert--run-test-debugger, ert-test-result-type-p)
2715 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
2716 (ert--stats-set-test-and-result, ert-char-for-test-result)
2717 (ert-string-for-test-result, ert-run-tests-batch)
2718 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
2719 Handle skipped tests. (Bug#9803)
2720
2721 2013-10-24 Glenn Morris <rgm@gnu.org>
2722
2723 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
2724
2725 * Makefile.in (abs_top_srcdir): New, set by configure.
2726 (update-subdirs): Correct build-aux location.
2727
2728 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
2729
2730 * vc/vc.el (vc-print-root-log): Always set `default-directory'
2731 value, whether we could auto-deduce `backend', or not.
2732
2733 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
2734 with parameters" example. Simplify the "is it block or is it
2735 hash" check, but also make it more thorough.
2736
2737 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
2738
2739 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
2740
2741 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
2742
2743 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
2744 { if it is hanging.
2745
2746 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
2747 :before ";".
2748
2749 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
2750
2751 * progmodes/compile.el (compilation-directory-matcher)
2752 (compilation-page-delimiter):
2753 Support GNU Make-4.0 directory quoting. (Bug#15678)
2754
2755 2013-10-23 Leo Liu <sdl.web@gmail.com>
2756
2757 * ido.el (ido-tidy): Handle read-only text.
2758
2759 2013-10-23 Glenn Morris <rgm@gnu.org>
2760
2761 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
2762 (emacs, compile, compile-always):
2763 Quote entities that might contain whitespace.
2764 (custom-deps, finder-data, autoloads): Use abs_lisp.
2765 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
2766 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
2767 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
2768
2769 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
2770
2771 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
2772 Use `following-char'.
2773
2774 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
2775
2776 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
2777 * progmodes/ruby-mode.el (ruby-smie-rules):
2778 Remove corresponding workaround. Fix indentation rule of ";" so it
2779 also applies when ";" is the parent.
2780
2781 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
2782
2783 * frame.el (display-screens, display-pixel-height)
2784 (display-pixel-width, display-mm-width, display-backing-store)
2785 (display-save-under, display-planes, display-color-cells)
2786 (display-visual-class, display-monitor-attributes-list):
2787 Mention the optional ‘display’ argument in doc strings.
2788
2789 2013-10-22 Michael Gauland <mikelygee@amuri.net>
2790
2791 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
2792 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
2793
2794 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
2795
2796 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
2797 TODO. Add "." after " @ ".
2798 (ruby-smie--at-dot-call): New function. Checks if point at method
2799 call with explicit target.
2800 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
2801 to the method name tokens when it precedes them.
2802 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
2803 (ruby-smie-rules): Add rule for indentation before and after "."
2804 token.
2805
2806 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
2807
2808 * textmodes/remember.el (remember-diary-extract-entries):
2809 Avoid add-to-list.
2810
2811 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
2812 an instruction.
2813
2814 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
2815
2816 * progmodes/ruby-mode.el (ruby-smie-grammar): Add (almost) all infix operators.
2817 (ruby-smie--implicit-semi-p): Add new operator chars.
2818
2819 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
2820 `smie-down-list'.
2821 (ruby-smie--args-separator-p): Check that there's no newline
2822 between method call and its arguments.
2823
2824 2013-10-20 Alan Mackenzie <acm@muc.de>
2825
2826 Allow comma separated lists after Java "implements".
2827
2828 * progmodes/cc-engine.el (c-backward-over-enum-header):
2829 Parse commas.
2830 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
2831 from a "disallowed" list in enum fontification.
2832
2833 2013-10-20 Johan Bockgård <bojohan@gnu.org>
2834
2835 * startup.el (default-frame-background-mode): Remove unused defvar.
2836
2837 * progmodes/verilog-mode.el (verilog-mode): Don't set
2838 comment-indent-function globally.
2839
2840 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
2841
2842 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
2843 Move Info menu item creation to ns-win.el.
2844
2845 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
2846 in menu bar.
2847
2848 * menu-bar.el: Move GNUStep specific menus...
2849
2850 * term/ns-win.el (ns-initialize-window-system): ... to here.
2851
2852 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
2853
2854 * simple.el (newline): Only run post-self-insert-hook when
2855 called interactively.
2856
2857 2013-10-19 Johan Bockgård <bojohan@gnu.org>
2858
2859 * icomplete.el (icomplete-with-completion-tables): Add :version.
2860
2861 2013-10-19 Alan Mackenzie <acm@muc.de>
2862
2863 Fix fontification bugs with constructors and const.
2864
2865 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
2866 CASE 2) Remove the check for the absence of a suffix construct
2867 after a function declaration with only types (no identifiers) in
2868 the parentheses. Also, accept a function declaration with just a
2869 type inside the parentheses, if this type can be positively
2870 recognised as such, or if a prefix keyword like "explicit" nails
2871 down the construct as a declaration.
2872
2873 2013-10-19 Eli Zaretskii <eliz@gnu.org>
2874
2875 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
2876 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
2877 the problem whereby selecting a menu item that leads to a
2878 minibuffer prompt moves the cursor out of the minibuffer window,
2879 making it hard to type at the prompt. Suggested by Stefan Monnier
2880 <monnier@iro.umontreal.ca>.
2881
2882 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
2883
2884 * menu-bar.el: Don't make Services menu.
2885
2886 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2887
2888 * ffap.el: Handle "/usr/include/c++/<version>" directories.
2889 (ffap-alist): Use ffap-c++-mode for c++-mode.
2890 (ffap-c++-path): New variable.
2891 (ffap-c++-mode): New function.
2892
2893 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
2894
2895 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
2896
2897 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
2898
2899 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
2900 introduced on 2013-09-08, which results in an infinite loop
2901 requesting a password.
2902
2903 2013-10-18 Glenn Morris <rgm@gnu.org>
2904
2905 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
2906
2907 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
2908
2909 Sync with upstream verilog-mode revision 1a6ecec7.
2910 * progmodes/verilog-mode.el (verilog-mode-version): Update.
2911 (verilog-mode-release-date): Remove.
2912 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
2913 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
2914 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
2915 (verilog-auto-tieoff-ignore-regexp)
2916 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
2917 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
2918 (verilog-signals-with, verilog-dir-cache-preserving)
2919 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
2920 Doc fixes.
2921 (verilog-case-fold): New option, to control case folding in
2922 regexp searches, bug597.
2923 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
2924 (verilog-string-match-fold, verilog-in-paren-count)
2925 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
2926 (verilog-at-close-struct-p): New functions.
2927 (verilog-beg-block-re-ordered, verilog-extended-case-re)
2928 (verilog-forward-sexp, verilog-set-auto-endcomments):
2929 (verilog-leap-to-case-head): Handle "unique0" case.
2930 (verilog-in-constraint-re): New constant.
2931 (verilog-keywords, verilog-type-font-keywords):
2932 Add some SystemVerilog 1800-2012 keywords.
2933 (verilog-label-be): Remove unimplemented argument, bug669.
2934 (verilog-batch-execute-func): When batch expanding clear
2935 create-lockfiles to prevent spurious user locks when a file ends
2936 up not changing.
2937 (verilog-calculate-indent, verilog-calc-1)
2938 (verilog-at-close-constraint-p, verilog-at-constraint-p)
2939 (verilog-do-indent): Fix indentation of nested constraints
2940 and structures.
2941 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
2942 (verilog-auto-inst-param): Use verilog-string-match-fold.
2943 (verilog-read-inst-module-matcher):
2944 Fix AUTOINST on gate primitives with #1.
2945 (verilog-read-decls): Fix double-declaring user-defined typed signals.
2946 Reads all user-defined typed variables.
2947 (verilog-read-defines): Fix reading definitions inside comments, bug647.
2948 (verilog-signals-matching-regexp)
2949 (verilog-signals-not-matching-regexp, verilog-auto):
2950 Respect verilog-case-fold.
2951 (verilog-diff-report): Fix line count.
2952 (verilog-auto-assign-modport): Remove unused local `modi'.
2953 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
2954 better handle multidimensional arrays.
2955 Fix packed array ports misadding bit index in AUTOINST, bug637.
2956 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
2957 to not double-declare existing outputs and inputs, respectively.
2958 (verilog-template-map): Bind U to verilog-sk-uvm-component.
2959 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
2960 (verilog-sk-uvm-component): New skeleton.
2961 (verilog-submit-bug-report): Add verilog-case-fold,
2962 remove verilog-mode-release-date.
2963
2964 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
2965
2966 * lisp/subr.el (sit-for): Call (input-pending-p t) so as to behave
2967 as before.
2968
2969 2013-10-18 Reuben Thomas <rrt@sc3d.org>
2970
2971 * textmodes/remember.el (remember): Set buffer-offer-save in
2972 remember buffers (bug#13566).
2973
2974 2013-10-18 Daniel Colascione <dancol@dancol.org>
2975
2976 When evaluating forms in ielm, direct standard output to ielm
2977 buffer. Add new ielm-return-for-effect command. Remove trailing
2978 whitespace throughout.
2979
2980 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
2981 (ielm-return-for-effect): New command.
2982 (ielm-send-input): Accept optional `for-effect' parameter.
2983 (ielm-eval-input): Accept optional `for-effect' parameter.
2984 Bind `standard-output' to stream we create using
2985 `ielm-standard-output-impl'. Suppress printing result when
2986 `for-effect'.
2987 (ielm-standard-output-impl): New function.
2988 (inferior-emacs-lisp-mode): Explain new features in documentation.
2989
2990 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
2991
2992 Code cleanup.
2993
2994 * net/tramp.el (tramp-debug-message): Do not check for connection
2995 buffer.
2996 (tramp-message): Use "vector" connection property.
2997
2998 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
2999 (tramp-equal-remote, tramp-eshell-directory-change)
3000 * net/tramp-adb.el (tramp-adb-handle-copy-file)
3001 (tramp-adb-handle-rename-file)
3002 * net/tramp-cmds.el (tramp-list-remote-buffers)
3003 (tramp-cleanup-connection, tramp-cleanup-this-connection)
3004 * net/tramp-compat.el (tramp-compat-process-running-p)
3005 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
3006 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
3007 (tramp-gvfs-handle-rename-file)
3008 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
3009 (tramp-set-file-uid-gid)
3010 * net/tramp-smb.el (tramp-smb-handle-copy-file)
3011 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
3012 of `file-remote-p'.
3013
3014 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
3015 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
3016 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
3017 (tramp-gw-open-network-stream): Suppress unrelated traces.
3018
3019 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
3020 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
3021 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
3022 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
3023 connection property.
3024
3025 * net/tramp-cache.el (top): Suppress traces when reading
3026 persistency file.
3027
3028 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
3029 Refactor common code. Improve debug message.
3030 (tramp-maybe-open-connection)
3031 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
3032 connection buffer too early.
3033
3034 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
3035 from `tramp-smb-actions-with-acl'.
3036 (tramp-smb-actions-set-acl): New defconst.
3037 (tramp-smb-handle-copy-directory)
3038 (tramp-smb-action-get-acl): New defun, renamed from
3039 `tramp-smb-action-with-acl'.
3040 (tramp-smb-action-set-acl): New defun.
3041 (tramp-smb-handle-set-file-acl): Rewrite.
3042
3043 2013-10-17 Glenn Morris <rgm@gnu.org>
3044
3045 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
3046
3047 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
3048
3049 * skeleton.el (skeleton-newline): Remove.
3050 (skeleton-internal-1): Use (insert "\n") instead.
3051
3052 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
3053 let-bindings.
3054
3055 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
3056 forward-sexp-function while we redo its job (bug#15613).
3057
3058 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
3059
3060 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
3061 represented by lists.
3062
3063 2013-10-16 Glenn Morris <rgm@gnu.org>
3064
3065 * tmm.el (tmm--history): New dynamic variable.
3066 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
3067
3068 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
3069
3070 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
3071 (tramp-smb-errors): Add error messages.
3072 (tramp-smb-actions-with-acl): New defconst.
3073 (tramp-smb-file-name-handler-alist) [set-file-acl]: Add handler.
3074 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
3075 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
3076 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
3077 (tramp-smb-get-stat-capability): Fix tests.
3078
3079 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
3080
3081 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
3082 (bug#15580).
3083
3084 2013-10-16 Glenn Morris <rgm@gnu.org>
3085
3086 * ansi-color.el (ansi-color-drop-regexp):
3087 Add 1J, 1K, 2K. (Bug#15617)
3088
3089 * files.el (hack-local-variables--warned-lexical): New.
3090 (hack-local-variables):
3091 Warn about misplaced lexical-binding. (Bug#15616)
3092
3093 * net/eww.el (eww-render): Always set eww-current-url,
3094 and update header line. (Bug#15622)
3095 (eww-display-html): ... Rather than just doing it here.
3096
3097 2013-10-15 Eli Zaretskii <eliz@gnu.org>
3098
3099 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
3100 menu navigations commands.
3101
3102 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
3103
3104 * progmodes/subword.el (subword-capitalize): Be careful when
3105 the search for [[:alpha:]] fails (bug#15580).
3106
3107 2013-10-14 Eli Zaretskii <eliz@gnu.org>
3108
3109 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
3110 to commands that scroll the menu.
3111
3112 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
3113
3114 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
3115 Handle methods ending with `?' and `!'.
3116
3117 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
3118
3119 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
3120 `japanese-cp932' to `cp932' to fix the problem where saving a
3121 source file written in Shift_JIS twice would end up having
3122 `coding: japanese-cp932' which Ruby could not recognize.
3123 (ruby-mode-set-encoding): Add support for encodings mapped to nil
3124 in `ruby-encoding-map'.
3125 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
3126 doesn't need to be explicitly declared in magic comment.
3127 (ruby-encoding-map): Add type declaration for better customize UI.
3128
3129 2013-10-13 Glenn Morris <rgm@gnu.org>
3130
3131 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
3132 Occur buffers are read-only. http://bugs.debian.org/720775
3133
3134 * emacs-lisp/authors.el (authors-fixed-entries):
3135 Comment out old alpha stuff.
3136
3137 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
3138
3139 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
3140 to `after-save-hook' instead of `before-save-hook'.
3141 (ruby-mode-set-encoding): Use the value of coding system used to
3142 write the file. Call `basic-save-buffer-1' after modifying the
3143 buffer.
3144
3145 2013-10-13 Alan Mackenzie <acm@muc.de>
3146
3147 Fix indentation/fontification of Java enum with
3148 "implements"/generic.
3149
3150 * progmodes/cc-engine.el (c-backward-over-enum-header):
3151 Extracted from the three other places and enhanced to handle generics.
3152 (c-inside-bracelist-p): Uses new function above.
3153 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
3154 function above.
3155 (c-font-lock-enum-tail): Uses new function above.
3156
3157 2013-10-13 Kenichi Handa <handa@gnu.org>
3158
3159 * international/mule-cmds.el (select-safe-coding-system): Remove a
3160 superfluous condition in chekcing whether a coding system is safe
3161 or not.
3162
3163 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
3164
3165 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
3166
3167 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
3168
3169 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
3170
3171 2013-10-13 Glenn Morris <rgm@gnu.org>
3172
3173 * menu-bar.el (menu-bar-update-buffers):
3174 Unify Buffers menu prompt string. (Bug#15576)
3175
3176 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
3177
3178 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
3179 Add some entries.
3180 (authors-fixed-entries): Use accented form of name.
3181
3182 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
3183
3184 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
3185 method calls (bug#15594).
3186 (ruby-smie--args-separator-p): New function.
3187 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
3188 recognize paren-free method calls.
3189
3190 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
3191 internals of universal-argument.
3192
3193 2013-10-11 Eli Zaretskii <eliz@gnu.org>
3194
3195 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
3196 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
3197 dropped menu on second mouse click on the menu bar.
3198
3199 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
3200
3201 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
3202 (explicit-shell-file-name): Declare.
3203 (sh--vars-before-point, sh--cmd-completion-table): New functions.
3204 (sh-completion-at-point-function): New function.
3205 (sh-mode): Use it.
3206 (sh-smie--keyword-p): Remove unused argument.
3207 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
3208 vars.
3209 (sh-set-shell): Always setup SMIE, even if we use the
3210 old indentation code.
3211
3212 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
3213
3214 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
3215 cases of ? and =.
3216 (ruby-smie-rules): Simplify the "do" rule. The cases when the
3217 predicate would return nil are almost non-existent.
3218 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
3219
3220 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
3221 cache also after commands that modify the buffer but don't move
3222 point.
3223
3224 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
3225
3226 * env.el (substitute-env-in-file-name): New function.
3227 (substitute-env-vars): Extend the meaning of the optional arg.
3228
3229 2013-10-10 Eli Zaretskii <eliz@gnu.org>
3230
3231 * term/w32-win.el (dynamic-library-alist): Define separate lists
3232 of GIF DLLs for versions before and after 5.0.0 of giflib.
3233 (Bug#15531)
3234
3235 2013-10-10 João Távora <joaotavora@gmail.com>
3236
3237 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
3238 not locked, use last revision and current source as
3239 defaults. (Bug#15569)
3240
3241 2013-10-10 Masatake YAMATO <yamato@redhat.com>
3242
3243 * menu-bar.el (menu-bar-open): Don't use popup-menu if
3244 menu-bar is hidden.
3245
3246 2013-10-10 Martin Rudalics <rudalics@gmx.at>
3247
3248 * window.el (pop-to-buffer-same-window): Fix doc-string.
3249 (Bug#15492)
3250
3251 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
3252
3253 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
3254
3255 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
3256
3257 * calendar/icalendar.el (icalendar-import-file):
3258 Fix interactive spec. (Bug#15482)
3259
3260 2013-10-10 Glenn Morris <rgm@gnu.org>
3261
3262 * desktop.el (desktop-save): Default to saving in .emacs.d,
3263 since PWD is no longer in desktop-path by default. (Bug#15319)
3264
3265 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
3266 now that text mode has a menu with the same entry.
3267 (menu-bar-text-mode-auto-fill): Remove now unused func.
3268 * textmodes/text-mode.el (text-mode-map):
3269 Use auto-fill help text from menu-bar.el.
3270
3271 2013-10-10 John Anthony <john@jo.hnanthony.com>
3272
3273 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
3274
3275 2013-10-09 Juri Linkov <juri@jurta.org>
3276
3277 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
3278 instead of this-command-keys. Add universal-argument-more and
3279 universal-argument-minus to the list of prefix commands. (Bug#15568)
3280
3281 2013-10-09 Glenn Morris <rgm@gnu.org>
3282
3283 * vc/vc-svn.el (vc-svn-create-repo):
3284 Expand paths in file://... url. (Bug#15446)
3285
3286 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
3287 Add some entries.
3288 (authors): Remove unused local variables.
3289
3290 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
3291
3292 * profiler.el: Create a more coherent calltree from partial backtraces.
3293 (profiler-format): Hide the tail with `invisible' so that C-s can still
3294 find the hidden elements.
3295 (profiler-calltree-depth): Don't recurse so enthusiastically.
3296 (profiler-function-equal): New hash-table-test.
3297 (profiler-calltree-build-unified): New function.
3298 (profiler-calltree-build): Use it.
3299 (profiler-report-make-name-part): Indent the calltree less.
3300 (profiler-report-mode): Add visibility specs for profiler-format.
3301 (profiler-report-expand-entry, profiler-report-toggle-entry):
3302 Expand the whole subtree when provided with a prefix arg.
3303
3304 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
3305
3306 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
3307 iuwu-mod token.
3308 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
3309 hanging iuwu-mod token.
3310 (ruby-smie--forward-token): Do not include a dot after a token in
3311 that token.
3312 (ruby-smie--backward-token): Likewise.
3313
3314 2013-10-08 Juri Linkov <juri@jurta.org>
3315
3316 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
3317 to isearch-other-control-char.
3318 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
3319 and isearch-post-command-hook to post-command-hook.
3320 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
3321 and isearch-post-command-hook from post-command-hook.
3322 (isearch-unread-key-sequence)
3323 (isearch-reread-key-sequence-naturally)
3324 (isearch-lookup-scroll-key, isearch-other-control-char)
3325 (isearch-other-meta-char): Remove functions.
3326 (isearch-pre-command-hook, isearch-post-command-hook):
3327 New functions based on isearch-other-meta-char rewritten
3328 relying on the new behavior of overriding-terminal-local-map
3329 that does not replace the local keymaps any more. (Bug#15200)
3330
3331 2013-10-08 Eli Zaretskii <eliz@gnu.org>
3332
3333 Support menus on text-mode terminals.
3334 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
3335 functionality.
3336
3337 * tooltip.el (tooltip-mode): Don't error out on TTYs.
3338
3339 * menu-bar.el (popup-menu, popup-menu-normalize-position):
3340 Move here from mouse.el.
3341 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
3342 and arrow keys.
3343 (tty-menu-navigation-map): New map for TTY menu navigation.
3344
3345 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
3346
3347 * frame.el (display-mouse-p): Report text-mode mouse as available
3348 on w32.
3349 (display-popup-menus-p): Report availability if mouse is
3350 available; don't condition on window-system.
3351
3352 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
3353 (tty-menu-selected-face): New faces.
3354
3355 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
3356
3357 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
3358 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
3359 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
3360 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
3361 New constants.
3362 (lisp-mode-variables): New `elisp' argument.
3363 (emacs-lisp-mode): Use it.
3364 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
3365 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
3366
3367 * indent.el: Use lexical-binding.
3368 (indent-region): Add progress reporter.
3369 (tab-stop-list): Make it implicitly extend to infinity by repeating the
3370 last step.
3371 (indent--next-tab-stop): New function to implement this behavior.
3372 (tab-to-tab-stop, move-to-tab-stop): Use it.
3373
3374 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
3375
3376 * indent.el (indent-rigidly--current-indentation): New function.
3377 (indent-rigidly-map): New var.
3378 (indent-rigidly): Use it to provide interactive mode (bug#8196).
3379
3380 2013-10-08 Bastien Guerry <bzg@gnu.org>
3381
3382 * register.el (insert-register): Fix 2013-10-07T01:28:34Z!sdl.web@gmail.com.
3383
3384 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
3385
3386 * progmodes/perl-mode.el: Use lexical-binding.
3387 Remove redundant :group args.
3388 (perl-nochange): Change default to be closer to other major modes's
3389 standard behavior.
3390 (perl-indent-line): Don't consider text on current line as a
3391 valid beginning of function from which to indent.
3392
3393 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
3394 with more than one argument (bug#15538).
3395
3396 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
3397
3398 * vc/pcvs.el: Use lexical-binding.
3399 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
3400 environment of `eval'.
3401 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
3402 than a list of expressions. Adjust callers.
3403 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
3404
3405 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
3406
3407 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
3408 case of the dot in a chained method call being on the following line.
3409
3410 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
3411
3412 * electric.el (electric-indent-inhibit): New var.
3413 (electric-indent-post-self-insert-function): Use it.
3414 * progmodes/python.el (python-mode): Set it.
3415
3416 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
3417 open braces.
3418
3419 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
3420
3421 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
3422 (css-mode): Use electric-indent-chars.
3423
3424 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
3425 (font-lock-beg, font-lock-end): Move before first use.
3426 (nxml-mode): Use syntax-propertize-function.
3427 (nxml-after-change, nxml-after-change1): Adjust accordingly.
3428 (nxml-extend-after-change-region): Remove.
3429 * nxml/xmltok.el: Use lexical-binding.
3430 (xmltok-save): Use `declare'.
3431 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
3432 * nxml/nxml-util.el: Use lexical-binding.
3433 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
3434 Use `declare'.
3435 * nxml/nxml-ns.el: Use lexical-binding.
3436 (nxml-ns-save): Use `declare'.
3437 (nxml-ns-prefixes-for): Avoid add-to-list.
3438 * nxml/rng-match.el: Use lexical-binding.
3439 (rng--ipattern): Use cl-defstruct.
3440 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
3441 (rng-cons-group-after, rng-subst-group-after)
3442 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
3443 Use closures instead of `(lambda...).
3444
3445 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
3446
3447 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
3448 of BEG and END.
3449
3450 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3451 Use `tramp-handle-insert-file-contents'.
3452 (tramp-gvfs-handle-insert-file-contents): Remove function.
3453
3454 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
3455 Use `save-restriction' in order to keep markers.
3456
3457 * net/trampver.el: Update release number.
3458
3459 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
3460
3461 * progmodes/compile.el (compilation-parse-errors):
3462 Use compilation--put-prop.
3463 (compilation--ensure-parse): Check compilation-multiline.
3464
3465 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
3466
3467 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
3468 lexical-binding.
3469
3470 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
3471
3472 * progmodes/ruby-mode.el: Fix recently added tests.
3473 (ruby-smie-grammar): Add - and +.
3474 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
3475 (ruby-smie--backward-id): New functions.
3476 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
3477 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
3478 any more.
3479
3480 2013-10-07 Leo Liu <sdl.web@gmail.com>
3481
3482 * register.el (register-preview-delay)
3483 (register-preview-functions): New variables.
3484 (register-read-with-preview, register-preview)
3485 (register-describe-oneline): New functions.
3486 (point-to-register, window-configuration-to-register)
3487 (frame-configuration-to-register, jump-to-register)
3488 (number-to-register, view-register, insert-register)
3489 (copy-to-register, append-to-register, prepend-to-register)
3490 (copy-rectangle-to-register): Use register-read-with-preview to
3491 read register. (Bug#15525)
3492
3493 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
3494
3495 * net/network-stream.el (network-stream-open-starttls): Don't add
3496 --insecure if it's already present, because that gnutls-cli
3497 rejects getting that parameter twice.
3498
3499 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
3500
3501 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
3502 keyword, too.
3503
3504 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
3505
3506 * newcomment.el (comment-use-global-state): Change default value
3507 to t, mark obsolete (Bug#15251).
3508 (comment-beginning): In addition to `comment-to-syntax', check the
3509 value of `comment-use-global-state'.
3510
3511 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
3512
3513 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
3514 (ruby-comment-column): Follow the global default, by default.
3515 (ruby-smie-grammar): Add assignment syntax.
3516 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
3517 open-paren, a comma, or a \.
3518 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
3519 and line continuations.
3520 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
3521 followed by implicit semi-colons. Add rule for string concatenation
3522 and for indentation at BOB.
3523 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
3524
3525 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
3526 calling next-sexp, since next-token may have skipped chars which
3527 next-sexp doesn't know should be skipped!
3528
3529 2013-10-05 Leo Liu <sdl.web@gmail.com>
3530
3531 * progmodes/octave.el (octave-send-region):
3532 Call compilation-forget-errors.
3533
3534 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
3535
3536 * vc/vc-svn.el (vc-svn-find-admin-dir):
3537 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
3538 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
3539 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
3540 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
3541
3542 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
3543
3544 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
3545
3546 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
3547
3548 * subr.el (read-passwd): Hide chars even when called within a context
3549 where after-change-functions is disabled (bug#15501).
3550 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
3551 until we removed ourself from overriding-terminal-local-map.
3552
3553 2013-10-04 Leo Liu <sdl.web@gmail.com>
3554
3555 * progmodes/octave.el (inferior-octave-mode):
3556 Call compilation-forget-errors.
3557
3558 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
3559
3560 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
3561
3562 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
3563
3564 * net/secrets.el (secrets-create-collection): Add optional
3565 argument ALIAS. Use proper Label keyword. Append ALIAS as
3566 dbus-call-method argument. (Bug#15516)
3567
3568 2013-10-04 Leo Liu <sdl.web@gmail.com>
3569
3570 * progmodes/octave.el (inferior-octave-error-regexp-alist)
3571 (inferior-octave-compilation-font-lock-keywords): New variables.
3572 (compilation-error-regexp-alist)
3573 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
3574 (inferior-octave-mode): Use compilation-shell-minor-mode.
3575
3576 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
3577
3578 * minibuffer.el (completion--replace): Be careful that `end' might be
3579 a marker.
3580
3581 2013-10-03 Daiki Ueno <ueno@gnu.org>
3582
3583 Add support for package signature checking.
3584 * emacs-lisp/package.el (url-http-file-exists-p)
3585 (epg-make-context, epg-context-set-home-directory)
3586 (epg-verify-string, epg-context-result-for)
3587 (epg-signature-status, epg-signature-to-string)
3588 (epg-check-configuration, epg-configuration)
3589 (epg-import-keys-from-file): Declare.
3590 (package-check-signature): New user option.
3591 (package-unsigned-archives): New user option.
3592 (package-desc): Add `signed' field.
3593 (package-load-descriptor): Set `signed' field if .signed file exists.
3594 (package--archive-file-exists-p): New function.
3595 (package--check-signature): New function.
3596 (package-install-from-archive): Check package signature.
3597 (package--download-one-archive): Check archive signature.
3598 (package-delete): Remove .signed file.
3599 (package-import-keyring): New command.
3600 (package-refresh-contents): Import default keyring.
3601 (package-desc-status): Add "unsigned" status.
3602 (describe-package-1, package-menu--print-info)
3603 (package-menu-mark-delete, package-menu--find-upgrades)
3604 (package-menu--status-predicate): Support "unsigned" status.
3605
3606 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
3607
3608 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
3609 the new compilation scheme using the new byte-codes.
3610
3611 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
3612 (byte-pophandler): New byte codes.
3613 (byte-goto-ops): Adjust accordingly.
3614 (byte-compile--use-old-handlers): New var.
3615 (byte-compile-catch): Use new byte codes depending on
3616 byte-compile--use-old-handlers.
3617 (byte-compile-condition-case--old): Rename from
3618 byte-compile-condition-case.
3619 (byte-compile-condition-case--new): New function.
3620 (byte-compile-condition-case): New function that dispatches depending
3621 on byte-compile--use-old-handlers.
3622 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
3623 when we can.
3624
3625 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
3626 Optimize under `condition-case' and `catch' if
3627 byte-compile--use-old-handlers is nil.
3628 (disassemble-offset): Handle new bytecodes.
3629
3630 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
3631
3632 * subr.el (error): Use `declare'.
3633 (decode-char, encode-char): Use advertised-calling-convention instead
3634 of the docstring to discourage use of the `restriction' arg.
3635
3636 2013-10-03 Daiki Ueno <ueno@gnu.org>
3637
3638 * epg.el (epg-verify-file): Add a comment saying that it does not
3639 notify verification error as a return value nor a signal.
3640 (epg-verify-string): Ditto.
3641
3642 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
3643
3644 * progmodes/compile.el (compilation-start): Try globbing the arg to
3645 `cd' (bug#15417).
3646
3647 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
3648
3649 Sync with Tramp 2.2.8.
3650
3651 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
3652 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
3653 * net/trampver.el: Update release number.
3654
3655 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
3656
3657 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
3658 and default-process-coding-system for darwin only.
3659
3660 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
3661
3662 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
3663
3664 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
3665
3666 * vc/vc-git.el (vc-git-grep): Disable pager.
3667
3668 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
3669
3670 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
3671 Use :url instead of :homepage, as per
3672 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
3673
3674 * newcomment.el (comment-beginning): When `comment-use-syntax' is
3675 non-nil, use `syntax-ppss' (Bug#15251).
3676
3677 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3678
3679 * progmodes/octave.el (inferior-octave-startup-file):
3680 Prefer ~/.emacs.d/init_octave.m.
3681
3682 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
3683
3684 * emacs-lisp/package.el (package-desc-from-define):
3685 Accept additional arguments as plist, convert them to an alist and store
3686 them in the `extras' slot.
3687 (package-generate-description-file): Convert extras alist back to
3688 plist and append to the `define-package' form arguments.
3689 (package--alist-to-plist): New function.
3690 (package--ac-desc): Add `extras' slot.
3691 (package--add-to-archive-contents): Check if the archive-contents
3692 vector is long enough, and if it is, pass its `extras' slot value
3693 to `package-desc-create'.
3694 (package-buffer-info): Call `lm-homepage', pass the returned value
3695 to `package-desc-from-define'.
3696 (describe-package-1): Render the homepage button (Bug#13291).
3697
3698 * emacs-lisp/package-x.el (package-upload-buffer-internal):
3699 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
3700
3701 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
3702
3703 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
3704 and default-process-coding-system to utf-8-unix (Bug#15402).
3705
3706 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
3707
3708 * subr.el (looking-back): Do not recommend using looking-back.
3709
3710 2013-09-28 Alan Mackenzie <acm@muc.de>
3711
3712 Fix indentation/fontification of Java enum with "implements".
3713
3714 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
3715 regexp which matches "implements", etc., in Java.
3716 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
3717 specifier clauses coming after "enum".
3718 * progmodes/cc-fonts.el (c-font-lock-declarations)
3719 (c-font-lock-enum-tail): Check for extra specifier clauses coming
3720 after "enum".
3721
3722 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
3723
3724 * faces.el (region): Change ns_selection_color to
3725 ns_selection_fg_color, add ns_selection_bg_color.
3726
3727 2013-09-28 Leo Liu <sdl.web@gmail.com>
3728
3729 * progmodes/octave.el (inferior-octave-completion-table)
3730 (inferior-octave-completion-at-point): Minor tweaks.
3731
3732 * textmodes/ispell.el (ispell-lookup-words): Rename from
3733 lookup-words. (Bug#15460)
3734 (lookup-words): Obsolete.
3735 (ispell-complete-word, ispell-command-loop): All uses changed.
3736
3737 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3738
3739 * lisp/progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
3740 (octave-mode-menu): Add octave-send-buffer.
3741 (octave-send-buffer): New function.
3742
3743 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3744
3745 * lisp/progmodes/octave.el (octave-mode-map): Add key binding for
3746 octave-lookfor.
3747 (octave-mode-menu): Add octave-lookfor.
3748 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
3749 octave-lookfor.
3750 (octave-lookfor): New function.
3751
3752 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
3753
3754 * emacs-lisp/cl-macs.el:
3755 (cl--loop-destr-temps): Remove.
3756 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
3757 its convention.
3758 (cl--loop-set-iterator-function): New function.
3759 (cl-loop): Adjust accordingly, so as not to use cl-subst.
3760 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
3761 Bind `it' with `let' instead of substituting it with `cl-subst'.
3762 (cl--unused-var-p): New function.
3763 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
3764 Eliminate some unused variable warnings (bug#15326).
3765
3766 2013-09-27 Tassilo Horn <tsdh@gnu.org>
3767
3768 * doc-view.el (doc-view-scale-reset): Rename from
3769 `doc-view-reset-zoom-level'.
3770 (doc-view-scale-adjust): New command.
3771 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
3772 `doc-view-scale-adjust'.
3773
3774 2013-09-26 Tassilo Horn <tsdh@gnu.org>
3775
3776 * doc-view.el (doc-view-reset-zoom-level): New command.
3777 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
3778 zoom commands (bug#15466).
3779
3780 2013-09-26 Kenichi Handa <handa@gnu.org>
3781
3782 * international/quail.el (quail-help): Make it not a command.
3783
3784 2013-09-26 Leo Liu <sdl.web@gmail.com>
3785
3786 * minibuffer.el (completion-all-sorted-completions): Make args
3787 optional as they are.
3788
3789 2013-09-25 Daniel Colascione <dancol@dancol.org>
3790
3791 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
3792 specs are and that they're not evaluated.
3793
3794 2013-09-24 Sam Steingold <sds@gnu.org>
3795
3796 * midnight.el (clean-buffer-list-kill-regexps)
3797 (clean-buffer-list-kill-buffer-names): Update for the new Man
3798 buffer naming which includes the object name.
3799
3800 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
3801
3802 * eshell/esh-cmd.el (eshell--sep-terms): New var.
3803 (eshell-parse-command, eshell-parse-pipeline): Use it since
3804 eshell-separate-commands requires a dynamic scoped var.
3805 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
3806
3807 2013-09-23 Leo Liu <sdl.web@gmail.com>
3808
3809 * autoinsert.el (auto-insert-alist): Make the value of
3810 lexical-binding match its file setting.
3811
3812 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
3813
3814 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
3815
3816 * autoarg.el (autoarg-kp-digit-argument):
3817 * electric.el (Electric-command-loop):
3818 * kmacro.el (kmacro-step-edit-insert):
3819 Do not set universal-argument-num-events.
3820
3821 2013-09-22 Leo Liu <sdl.web@gmail.com>
3822
3823 * files.el (interpreter-mode-alist): Add octave.
3824
3825 2013-09-21 Alan Mackenzie <acm@muc.de>
3826
3827 C++: fontify identifier in declaration following "public:" correctly.
3828 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
3829 to match "public", etc.
3830 (c-decl-prefix-re): Add ":" into the C++ value.
3831 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
3832 bit. Add a check for a ":" preceded by "public", etc.
3833
3834 2013-09-21 Eli Zaretskii <eliz@gnu.org>
3835
3836 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
3837 recognized by GDB 7.5 and later.
3838
3839 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
3840
3841 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
3842
3843 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
3844
3845 * subr.el (internal--call-interactively): New const.
3846 (called-interactively-p): Use it (bug#3984).
3847
3848 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
3849
3850 * vc/pcvs.el (cvs-mode-ignore):
3851 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
3852 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
3853
3854 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
3855
3856 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
3857 (eshell-ls-orig-insert-directory): Remove.
3858 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
3859 (eshell-ls-use-in-dired): Use advice-add/remove.
3860 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
3861 Add `orig-fun' arg for use in :around advice.
3862 Make it check (redundantly) eshell-ls-use-in-dired.
3863
3864 2013-09-19 Glenn Morris <rgm@gnu.org>
3865
3866 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
3867
3868 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
3869
3870 * emacs-lisp/eieio.el (class-parent): Undo previous change.
3871
3872 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
3873
3874 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
3875 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
3876 (tramp-get-remote-python): New defuns.
3877 (tramp-get-remote-uid-with-perl)
3878 (tramp-get-remote-gid-with-perl): New defuns. Perl code
3879 contributed by yary <not.com@gmail.com> (tiny change).
3880 (tramp-get-remote-uid-with-python)
3881 (tramp-get-remote-gid-with-python): New defuns. Python code
3882 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
3883 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
3884
3885 2013-09-19 Glenn Morris <rgm@gnu.org>
3886
3887 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
3888
3889 * eshell/em-unix.el (eshell-remove-entries):
3890 Rename argument to avoid name-clash with global `top-level'.
3891
3892 * eshell/esh-proc.el (eshell-kill-process-function):
3893 Remove eshell-reset-after-proc from eshell-kill-hook if present.
3894 (eshell-reset-after-proc): Remove unused arg `proc'.
3895
3896 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
3897 (directory-files-and-attributes): Mark unused arg.
3898
3899 * eshell/em-unix.el (eshell-remove-entries):
3900 Remove unused arg `path'. Update callers.
3901
3902 * eshell/em-hist.el (eshell-hist-parse-arguments):
3903 Remove unused arg `silent'. Update callers.
3904
3905 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
3906 Fix (f)boundp mix-up.
3907
3908 * eshell/em-smart.el (eshell-smart-scroll-window)
3909 (eshell-disable-after-change):
3910 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
3911
3912 2013-09-18 Alan Mackenzie <acm@muc.de>
3913
3914 Fix fontification of type when followed by "const".
3915 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
3916 "known" types from fontification.
3917
3918 2013-09-18 Glenn Morris <rgm@gnu.org>
3919
3920 * emacs-lisp/chart.el (x-display-color-cells): Declare.
3921 (chart-face-list): Drop Emacsen without display-color-p.
3922
3923 * net/eww.el (libxml-parse-html-region): Declare.
3924 (eww-display-html): Explicit error if no libxml2 support.
3925
3926 * doc-view.el (doc-view-mode): Silence --without-x compilation.
3927
3928 * image.el (image-type-from-buffer, image-multi-frame-p):
3929 Remove --without-x warning/error.
3930
3931 * mouse.el (mouse-yank-primary):
3932 * term.el (term-mouse-paste):
3933 Reorder to silence --without-x compilation.
3934
3935 * mpc.el (doc-view-mode): Silence --without-x compilation.
3936
3937 * mail/rmailmm.el (rmail-mime-set-bulk-data):
3938 Silence --without-x compilation.
3939
3940 * progmodes/gud.el (gud-find-file, gud-mode):
3941 Silence --without-x compilation.
3942 (tooltip-mode): Declare.
3943
3944 * wdired.el (dired-backup-overwrite): Remove declaration.
3945 (wdired-mode-map): Add doc string.
3946
3947 * custom.el (x-get-resource): Declare.
3948
3949 * eshell/em-glob.el (ange-cache):
3950 * eshell/em-unix.el (ange-cache): Declare.
3951
3952 * faces.el (x-display-list, x-open-connection, x-get-resource):
3953 Declare.
3954
3955 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
3956 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
3957 Declare.
3958
3959 * frame.el (x-display-grayscale-p, x-display-name): Declare.
3960
3961 * net/gnutls.el (gnutls-log-level): Declare.
3962
3963 * net/shr.el (image-size, image-animate): Declare.
3964
3965 * simple.el (font-info): Declare.
3966
3967 * subr.el (x-popup-dialog): Declare.
3968
3969 * term/common-win.el (x-select-enable-primary)
3970 (x-last-selected-text-primary, x-last-selected-text-clipboard):
3971 Declare.
3972
3973 * term/ns-win.el (x-handle-args): Declare.
3974
3975 * term/x-win.el (x-select-enable-clipboard): Declare.
3976
3977 * term/w32-win.el (create-default-fontset): Declare.
3978
3979 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
3980 Declare.
3981
3982 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
3983 (fit-frame-to-buffer): Explicit error if --without-x.
3984 (mouse-autoselect-window-select): Silence compiler.
3985
3986 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
3987
3988 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
3989 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
3990 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
3991 * eshell/esh-util.el (eshell-sublist):
3992 Remove unused local variables.
3993
3994 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
3995
3996 * textmodes/two-column.el: Make 2C-split work for --without-x.
3997 (scroll-bar-columns): Autoload.
3998 (top-level): Require fringe when compiling.
3999
4000 2013-09-18 Leo Liu <sdl.web@gmail.com>
4001
4002 * subr.el (add-hook): Robustify to handle closure as well.
4003
4004 2013-09-17 Glenn Morris <rgm@gnu.org>
4005
4006 * simple.el (messages-buffer-mode-map): Unbind "g".
4007
4008 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4009
4010 * help-mode.el (help-mode-finish): Use derived-mode-p.
4011 Remove obsolete highlighting.
4012
4013 * play/life.el (life-mode): Use define-derived-mode. Derive from
4014 special-mode.
4015 (life): Let-bind inhibit-read-only.
4016 (life-setup): Avoid `setq'. Use `life-mode'.
4017
4018 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
4019 which should not be needed any more.
4020 (package-menu-refresh, package-menu-describe-package): Use user-error.
4021
4022 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
4023 (eshell-post-rewrite-command-hook): Make obsolete.
4024 (eshell-parse-command): Simplify.
4025 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
4026 (eshell--cmd): Declare.
4027 (eshell-parse-pipeline): Remove unused var `final-p'.
4028 Pass a dynvar to eshell-post-rewrite-command-hook.
4029 Implement the new eshell-post-rewrite-command-function.
4030 (eshell-invoke-directly): Remove unused arg `input'.
4031 * eshell/esh-io.el (eshell-io-initialize):
4032 Use eshell-post-rewrite-command-function (bug#15399).
4033 (eshell--apply-redirections): Rename from eshell-apply-redirections;
4034 adjust to new calling convention.
4035 (eshell-create-handles): Rename args to avoid clashing with dynvar
4036 `standard-output'.
4037
4038 2013-09-17 Glenn Morris <rgm@gnu.org>
4039
4040 * simple.el (messages-buffer-mode): New major mode.
4041 (messages-buffer): New function.
4042 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
4043 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
4044 (ert-run-test): Use `messages-buffer' function.
4045 (ert--force-message-log-buffer-truncation): Ignore read-only.
4046 * help.el (view-echo-area-messages): Use `messages-buffer' function.
4047 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
4048
4049 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4050
4051 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
4052
4053 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
4054
4055 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
4056
4057 * icomplete.el (icomplete-in-buffer): New var.
4058 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
4059 vars and replace them with functions.
4060 (icomplete-minibuffer-setup): Adjust accordingly.
4061 (icomplete--completion-table, icomplete--completion-predicate)
4062 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
4063 New functions.
4064 (icomplete-forward-completions, icomplete-backward-completions)
4065 (icomplete-simple-completing-p, icomplete-exhibit)
4066 (icomplete-completions): Use them.
4067 (icomplete--in-region-buffer): New var.
4068 (icomplete--in-region-setup): New function.
4069 (icomplete-mode): Use it.
4070
4071 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
4072 (bug#15379).
4073 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
4074 return args and options.
4075 (eshell-eval-using-options): Use the new return value of
4076 eshell--do-opts to set the options's vars in their scope.
4077 (eshell--set-option): Rename from eshell-set-option.
4078 Add arg `opt-vals'.
4079 (eshell--process-option): Rename from eshell-process-option.
4080 Add arg `opt-vals'.
4081 (eshell--process-args): Use an `opt-vals' alist to store the options's
4082 values during their processing and return them additionally to the
4083 remaining args.
4084
4085 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
4086
4087 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
4088 continuation character an operator, as far as indentation is
4089 concerned (Bug#15369).
4090
4091 2013-09-15 Martin Rudalics <rudalics@gmx.at>
4092
4093 * window.el (window--state-put-2): Don't process buffer state
4094 when buffer doesn't exist any more (Bug#15382).
4095
4096 2013-09-15 Glenn Morris <rgm@gnu.org>
4097
4098 * eshell/em-unix.el (eshell/rm):
4099 Make -f ignore missing files. (Bug#15373)
4100
4101 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
4102 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
4103 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
4104
4105 2013-09-14 Glenn Morris <rgm@gnu.org>
4106
4107 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
4108
4109 2013-09-13 Glenn Morris <rgm@gnu.org>
4110
4111 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
4112 (dired-guess-default): Make `file' available in the env. (Bug#15363)
4113
4114 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
4115
4116 * frame.el (x-focus-frame): Mark as declared in frame.c.
4117
4118 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
4119
4120 * ls-lisp.el: Use advice-add.
4121 (original-insert-directory): Remove.
4122 (ls-lisp--insert-directory): Rename from insert-directory; add
4123 `orig-fun' argument.
4124 (insert-directory): Advise.
4125
4126 2013-09-13 Eli Zaretskii <eliz@gnu.org>
4127
4128 * term.el (term-emulate-terminal): Decode the command string
4129 before passing it to term-command-hook. (Bug#15337)
4130
4131 2013-09-13 Glenn Morris <rgm@gnu.org>
4132
4133 * eshell/esh-util.el (ange-cache): Move declaration earlier.
4134
4135 * eshell/esh-ext.el (eshell-search-path): Declare.
4136
4137 * eshell/em-prompt.el (eshell/pwd): Autoload it.
4138 Otherwise an error occurs if eshell-dirs module not loaded.
4139
4140 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
4141
4142 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
4143
4144 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
4145 `tramp-check-proper-host'. Check for a valid method name.
4146
4147 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
4148 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4149 * net/tramp-sh.el (tramp-maybe-open-connection):
4150 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
4151
4152 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
4153 also for hash values.
4154
4155 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4156
4157 * term/ns-win.el (parameters): Don't declare as dynamic.
4158 (before-make-frame-hook): Don't add ineffective function.
4159
4160 * eshell/*.el: Use lexical-binding (bug#15231).
4161
4162 2013-09-12 Kenichi Handa <handa@gnu.org>
4163
4164 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
4165
4166 2013-09-12 Glenn Morris <rgm@gnu.org>
4167
4168 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
4169 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
4170
4171 * subr.el (do-after-load-evaluation): Also give compiler warnings
4172 when obsolete files are used (except by obsolete files).
4173
4174 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
4175 in the status output, assume `filename' is the first. (Bug#15322)
4176
4177 * vc/vc.el (vc-deduce-fileset): Doc fix.
4178
4179 * calc/calc-help.el (Info-goto-node):
4180 * progmodes/cperl-mode.el (Info-find-node):
4181 * vc/ediff.el (Info-goto-node): Update declarations.
4182
4183 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
4184
4185 * vc/vc-bzr.el (vc-compilation-mode): Declare.
4186 (vc-bzr-pull): Require vc-dispatcher.
4187 * vc/vc-git.el (vc-compilation-mode): Declare.
4188 (vc-git-pull): Require vc-dispatcher.
4189
4190 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
4191
4192 * progmodes/octave.el (help-button-action): Declare.
4193
4194 * shell.el (shell-directory-tracker): Output error as a message
4195 rather than just returning it as a string.
4196 (shell-process-pushd): Remove useless use of message.
4197
4198 * dframe.el (dframe-timer-fn):
4199 * files.el (dir-locals-read-from-file):
4200 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
4201 (mpc-format):
4202 * reveal.el (reveal-post-command):
4203 * saveplace.el (load-save-place-alist-from-file):
4204 * shell.el (shell-resync-dirs):
4205 * w32-common-fns.el (x-get-selection-value):
4206 * emacs-lisp/copyright.el (copyright-find-copyright):
4207 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
4208 * emulation/tpu-edt.el (tpu-copy-keyfile):
4209 * play/bubbles.el (bubbles--mark-neighbourhood):
4210 * progmodes/executable.el
4211 (executable-make-buffer-file-executable-if-script-p):
4212 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
4213
4214 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4215
4216 Cleanup Eshell to rely less on dynamic scoping.
4217 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
4218 last-value, and ext-command here. Bind `args' closer to `body'.
4219 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
4220 (eshell--args): Declare new dynamic var.
4221 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
4222 last-value, and ext-command. Pass `args' to `body'.
4223 (eshell-process-args): Bind eshell--args.
4224 (eshell-set-option): Use eshell--args.
4225 * eshell/eshell.el (eshell): Use derived-mode-p.
4226 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
4227 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
4228 (eshell-glob-function): Declare.
4229 * eshell/esh-util.el: Require cl-lib.
4230 (eshell-read-hosts-file): Avoid add-to-list.
4231 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
4232 `err'.
4233 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
4234 Declare.
4235 (eshell/diff): Remove unused var `err'.
4236 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
4237 `killflag'.
4238 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
4239 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
4240 first use.
4241 * eshell/em-glob.el (eshell-glob-matches, message-shown):
4242 Move declaration before first use.
4243 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
4244 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
4245 rely on cl-return.
4246
4247 2013-09-12 Glenn Morris <rgm@gnu.org>
4248
4249 * term/ns-win.el (global-map): Remove binding for ispell-next,
4250 deleted 1999-05-29. (Bug#15357)
4251
4252 2013-09-11 Glenn Morris <rgm@gnu.org>
4253
4254 * echistory.el (electric-command-history): Remove call to deleted func.
4255
4256 * play/landmark.el (landmark-mode): Fix typos.
4257
4258 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
4259 Check cvs-sort-ignore-file is bound.
4260
4261 * savehist.el: No need for cl when compiling on Emacs.
4262
4263 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
4264
4265 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
4266 (bug#15338).
4267 (eshell-self-insert-command, eshell-send-invisible):
4268 Remove unused argument.
4269 (eshell-handle-control-codes): Remove unused var `orig'.
4270 Avoid delete-backward-char.
4271
4272 * files.el (set-auto-mode): Simplify a bit further.
4273
4274 2013-09-11 Glenn Morris <rgm@gnu.org>
4275
4276 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
4277 (set-auto-mode): Don't regexp-quote elements.
4278 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
4279 * progmodes/cc-mode.el (interpreter-mode-alist):
4280 * progmodes/ruby-mode.el (interpreter-mode-alist):
4281 Revert previous change.
4282
4283 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
4284
4285 * play/snake.el (snake-mode):
4286 * play/mpuz.el (mpuz-mode):
4287 * play/landmark.el (lm-mode):
4288 * play/blackbox.el (blackbox-mode):
4289 * play/5x5.el (5x5-mode):
4290 * obsolete/options.el (Edit-options-mode):
4291 * net/quickurl.el (quickurl-list-mode):
4292 * net/newst-treeview.el (newsticker-treeview-mode):
4293 * mail/rmailsum.el (rmail-summary-mode):
4294 * mail/mspools.el (mspools-mode):
4295 * locate.el (locate-mode):
4296 * ibuffer.el (ibuffer-mode):
4297 * emulation/ws-mode.el (wordstar-mode):
4298 * emacs-lisp/debug.el (debugger-mode):
4299 * array.el (array-mode):
4300 * net/eudc.el (eudc-mode): Use define-derived-mode.
4301 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
4302 Move initialization into declaration.
4303 (mairix-searches-mode): Use define-derived-mode.
4304 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
4305 (eudc-edit-hotlist): Use dolist.
4306 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
4307 (Man-mode): Use define-derived-mode.
4308 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
4309 (Info-edit-mode): Use define-derived-mode.
4310 (Info-cease-edit): Use Info-mode.
4311 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
4312 into declaration.
4313 (eshell-mode): Use define-derived-mode.
4314 * chistory.el (command-history-mode-map): Rename from
4315 command-history-map.
4316 (command-history-mode): Use define-derived-mode.
4317 (Command-history-setup): Remove function.
4318 * calc/calc.el (calc-trail-mode-map): New var.
4319 (calc-trail-mode): Use define-derived-mode.
4320 (calc-trail-buffer): Set calc-main-buffer manually.
4321 * bookmark.el (bookmark-insert-annotation): New function.
4322 (bookmark-edit-annotation): Use it.
4323 (bookmark-edit-annotation-mode): Make it a proper major mode.
4324 (bookmark-send-edited-annotation): Use derived-mode-p.
4325 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
4326 closer to its ideal place. Use \' to match EOS.
4327
4328 * profiler.el (profiler-calltree-find): Use function-equal.
4329
4330 2013-09-10 Glenn Morris <rgm@gnu.org>
4331
4332 * files.el (interpreter-mode-alist): Convert to regexps.
4333 (set-auto-mode): Adapt for this. (Bug#15306)
4334 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
4335 Comment out unused variable.
4336 * progmodes/cc-mode.el (interpreter-mode-alist):
4337 * progmodes/python.el (interpreter-mode-alist):
4338 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
4339 * progmodes/sh-script.el (sh-set-shell):
4340 No longer use interpreter-mode-alist to get list of shells.
4341
4342 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
4343
4344 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
4345
4346 * simple.el: Use set-temporary-overlay-map for universal-argument.
4347 (universal-argument-map): Don't use default-bindings (bug#15317).
4348 Bind switch-frame explicitly. Replace universal-argument-minus with
4349 a conditional binding.
4350 (universal-argument-num-events, saved-overriding-map): Remove.
4351 (restore-overriding-map): Remove.
4352 (universal-argument--mode): Rename from save&set-overriding-map,
4353 and rewrite.
4354 (universal-argument, universal-argument-more, negative-argument)
4355 (digit-argument): Adjust accordingly.
4356 (universal-argument-minus): Remove.
4357 (universal-argument-other-key): Remove.
4358
4359 * subr.el (with-demoted-errors): Add `format' argument.
4360
4361 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
4362
4363 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
4364 `tramp-cleanup-connection'.
4365
4366 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
4367 parameters KEEP-DEBUG and KEEP-PASSWORD.
4368
4369 * net/tramp.el (tramp-file-name-handler):
4370 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
4371 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
4372 (tramp-maybe-open-connection):
4373 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
4374 Use `tramp-cleanup-connection'.
4375
4376 * net/tramp-sh.el (tramp-maybe-open-connection):
4377 Catch 'uname-changed inside the progress reporter.
4378
4379 2013-09-10 Glenn Morris <rgm@gnu.org>
4380
4381 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
4382
4383 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
4384 returns "alternate access method" in mode (eg "-rw-r--r--.").
4385
4386 2013-09-08 Glenn Morris <rgm@gnu.org>
4387
4388 * saveplace.el (load-save-place-alist-from-file):
4389 Demote errors. (Bug#15305)
4390
4391 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
4392
4393 Improve compatibility with older Emacsen, and XEmacs.
4394
4395 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
4396 only if it is bound. It isn't for XEmacs.
4397 (with-tramp-progress-reporter): Do not let-bind `result'.
4398 This yields to scoping errors in XEmacs.
4399 (tramp-handle-make-auto-save-file-name): New function, moved from
4400 tramp-sh.el.
4401
4402 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
4403 for `make-auto-save-file-name'.
4404 (tramp-adb--gnu-switches-to-ash):
4405 Use `tramp-compat-replace-regexp-in-string'.
4406
4407 * net/tramp-cache.el (tramp-cache-print): Call
4408 `substring-no-properties' only if it is bound. It isn't for XEmacs.
4409
4410 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
4411 bound. It isn't for XEmacs.
4412
4413 * net/tramp-compat.el (tramp-compat-copy-file):
4414 Catch `wrong-number-of-arguments' error.
4415 (tramp-compat-replace-regexp-in-string): New defun.
4416
4417 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
4418 for `make-auto-save-file-name'.
4419 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
4420 `copy-file'.
4421 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
4422 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
4423 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
4424
4425 * net/tramp-gw.el (tramp-gw-open-network-stream):
4426 Use `tramp-compat-replace-regexp-in-string'.
4427
4428 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
4429 Call `tramp-handle-make-auto-save-file-name'.
4430 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
4431 (tramp-sh-file-gvfs-monitor-dir-process-filter)
4432 (tramp-sh-file-inotifywait-process-filter):
4433 Use `tramp-compat-replace-regexp-in-string'.
4434 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
4435
4436 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
4437 for `make-auto-save-file-name'.
4438 (tramp-smb-handle-copy-directory):
4439 Call `tramp-compat-replace-regexp-in-string'.
4440 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
4441 (tramp-smb-handle-copy-file): Improve error message.
4442 (tramp-smb-handle-rename-file): Rename directly only in case
4443 `newname' does not exist yet. This is a restriction of smbclient.
4444 (tramp-smb-maybe-open-connection): Rerun the function only when
4445 `auth-sources' is non-nil.
4446
4447 2013-09-08 Kenichi Handa <handa@gnu.org>
4448
4449 * international/characters.el: Set category "^" (Combining) for
4450 more characters.
4451
4452 2013-09-07 Alan Mackenzie <acm@muc.de>
4453
4454 Correctly fontify Java class constructors.
4455 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
4456 in Java Mode.
4457 (c-recognize-typeless-decls): Set the Java value to t.
4458 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
4459 While handling a "(", add a check for, effectively, Java, and handle a
4460 "typeless" declaration there.
4461
4462 2013-09-07 Roland Winkler <winkler@gnu.org>
4463
4464 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
4465 field subtitle for entry type book.
4466
4467 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
4468
4469 * minibuffer.el: Make minibuffer-complete call completion-in-region
4470 rather than other way around.
4471 (completion--some, completion-pcm--find-all-completions):
4472 Don't delay signals when debugging.
4473 (minibuffer-completion-contents): Beware fields within the
4474 minibuffer contents.
4475 (completion-all-sorted-completions): Use defvar-local.
4476 (completion--do-completion, completion--cache-all-sorted-completions)
4477 (completion-all-sorted-completions, minibuffer-force-complete):
4478 Add args `beg' and `end'.
4479 (completion--in-region-1): New fun, extracted from minibuffer-complete.
4480 (minibuffer-complete): Use completion-in-region.
4481 (completion-complete-and-exit): New fun, extracted from
4482 minibuffer-complete-and-exit.
4483 (minibuffer-complete-and-exit): Use it.
4484 (completion--complete-and-exit): Rename from
4485 minibuffer--complete-and-exit.
4486 (completion-in-region--single-word): New function, extracted from
4487 minibuffer-complete-word.
4488 (minibuffer-complete-word): Use it.
4489 (display-completion-list): Make `common-substring' argument obsolete.
4490 (completion--in-region): Call completion--in-region-1 instead of
4491 minibuffer-complete.
4492 (completion-help-at-point): Pass boundaries to
4493 minibuffer-completion-help as args rather than via an overlay.
4494 (completion-pcm--string->pattern): Use `any-delim'.
4495 (completion-pcm--optimize-pattern): New function.
4496 (completion-pcm--pattern->regex): Handle `any-delim'.
4497 * icomplete.el (icomplete-forward-completions)
4498 (icomplete-backward-completions, icomplete-completions):
4499 Adjust calls to completion-all-sorted-completions and
4500 completion--cache-all-sorted-completions.
4501 (icomplete-with-completion-tables): Default to t.
4502 * emacs-lisp/crm.el (crm--current-element): Rename from
4503 crm--select-current-element. Don't put an overlay but return the
4504 boundaries instead.
4505 (crm--completion-command): Take two new args to bind to the boundaries.
4506 (crm-completion-help): Adjust accordingly.
4507 (crm-complete): Use completion-in-region.
4508 (crm-complete-word): Use completion-in-region--single-word.
4509 (crm-complete-and-exit): Use completion-complete-and-exit.
4510
4511 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
4512
4513 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
4514 than dynamically.
4515
4516 2013-09-06 Juri Linkov <juri@jurta.org>
4517
4518 * info.el (Info-display-images-node): When image file doesn't exist
4519 display text version of the image if it's provided in the Info file.
4520 Otherwise, display the location of missing image from SRC attribute.
4521 Add help-echo text property from ALT attribute. (Bug#15279)
4522
4523 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
4524
4525 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
4526 (edit-abbrevs-mode): Use define-derived-mode.
4527
4528 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
4529 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
4530 that it's defined.
4531 (epa-key-list-mode, epa-key-mode, epa-info-mode):
4532 Use define-derived-mode.
4533
4534 * epg.el (epg-start-encrypt): Minor CSE simplification.
4535
4536 2013-09-06 William Xu <william.xwl@gmail.com>
4537
4538 * arc-mode.el: Add support for 7za (bug#15264).
4539 (archive-7z-program): New var.
4540 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
4541 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
4542 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
4543
4544 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
4545
4546 Remove URL syntax.
4547
4548 * net/tramp.el (tramp-syntax, tramp-prefix-format)
4549 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
4550 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
4551 (tramp-postfix-host-format, tramp-file-name-regexp)
4552 (tramp-completion-file-name-regexp)
4553 (tramp-completion-dissect-file-name)
4554 (tramp-handle-substitute-in-file-name): Remove 'url case.
4555 (tramp-file-name-regexp-url)
4556 (tramp-completion-file-name-regexp-url): Remove constants.
4557
4558 2013-09-06 Glenn Morris <rgm@gnu.org>
4559
4560 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
4561
4562 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
4563
4564 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
4565 keywords" below "here-doc beginnings" (Bug#15270).
4566
4567 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
4568
4569 * subr.el (pop): Use `car-safe'.
4570 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
4571 to detect unused `pop' return value.
4572
4573 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
4574 var `block-regexp'.
4575 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
4576 (python-fill-string): Remove unused var `marker'.
4577 (python-skeleton-add-menu-items): Remove unused var `items'.
4578
4579 * international/mule-cmds.el: Require CL.
4580 (find-coding-systems-for-charsets): Avoid add-to-list.
4581 (sanitize-coding-system-list): New function, extracted from
4582 select-safe-coding-system-interactively.
4583 (select-safe-coding-system-interactively): Use it.
4584 (read-input-method-name): Accept symbols for `default'.
4585
4586 * emacs-lisp/advice.el (defadvice): Add indent rule.
4587
4588 2013-09-05 Daniel Hackney <dan@haxney.org>
4589
4590 * dired-x.el:
4591 * net/ange-ftp.el:
4592 * net/browse-url.el:
4593 * net/dbus.el:
4594 * net/eudc.el:
4595 * net/eudcb-ldap.el:
4596 * net/eww.el:
4597 * net/imap.el:
4598 * printing.el:
4599 * vc/ediff-diff.el:
4600 * vc/ediff-init.el:
4601 * vc/ediff-merg.el:
4602 * vc/ediff-mult.el:
4603 * vc/ediff-util.el:
4604 * vc/ediff-wind.el:
4605 * vc/ediff.el:
4606 * vc/emerge.el:
4607 * vc/pcvs.el:
4608 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
4609 byte compiler. Remove some unused let-bound variables.
4610
4611 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
4612
4613 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
4614 a "ref-cell", since it gets better optimized (bug#14883).
4615
4616 2013-09-05 Glenn Morris <rgm@gnu.org>
4617
4618 * progmodes/cc-awk.el (c-forward-sws): Declare.
4619
4620 2013-09-04 Glenn Morris <rgm@gnu.org>
4621
4622 * generic-x.el [rul-generic-mode]: Require cc-mode.
4623 (c++-mode-syntax-table): Declare.
4624 (rul-generic-mode-syntax-table): Init in the defvar.
4625
4626 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
4627
4628 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
4629 (vc-do-command, vc-set-async-update):
4630 * vc/vc-mtn.el (vc-mtn-dir-status):
4631 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
4632 (vc-hg-pull, vc-hg-merge-branch):
4633 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
4634 (vc-git-merge-branch):
4635 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
4636 (vc-cvs-dir-status-files):
4637 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
4638 (vc-bzr-dir-status-files):
4639 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
4640 * vc/vc-annotate.el: Use lexical-binding.
4641 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
4642 (vc-sentinel-movepoint): Declare.
4643 (vc-annotate): Don't use `goto-line'.
4644 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
4645 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
4646 (vc-sentinel-movepoint): Declare.
4647 * vc/vc-svn.el: Use lexical-binding.
4648 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
4649 * vc/vc-sccs.el:
4650 * vc/vc-rcs.el: Use lexical-binding.
4651
4652 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
4653 `deleted'. Don't drop errors silently.
4654
4655 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
4656
4657 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
4658
4659 * vc/vc.el (vc-ignore): Rewrite.
4660 (vc-default-ignore): New function.
4661 (vc-default-ignore-completion-table): Use find-ignore-file.
4662
4663 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
4664 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
4665 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
4666 Remove. Most code moved to vc.el.
4667
4668 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
4669
4670 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
4671 * net/tramp-smb.el (tramp-smb-get-file-entries):
4672 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
4673 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
4674
4675 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
4676 Update call to it.
4677 (eww-change-select): Remove unused var `properties'.
4678 (eww-make-unique-file-name): Remove unused var `base'.
4679
4680 * finder.el (finder-compile-keywords): Don't mess with windows.
4681
4682 * calculator.el (calculator-funcall): Fix typo in last change.
4683
4684 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
4685
4686 * emacs-lisp/package.el (package-activate-1): Don't let a missing
4687 <pkg>-autoloads.el file stop us.
4688
4689 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
4690 warnings, and factor out common code.
4691
4692 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
4693
4694 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
4695 two-character operators and whether the character preceding them
4696 changes their meaning (Bug#15208).
4697
4698 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
4699
4700 Format code sent to Python shell for robustness.
4701 * progmodes/python.el (python-shell-buffer-substring):
4702 New function.
4703 (python-shell-send-region, python-shell-send-buffer): Use it.
4704
4705 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
4706
4707 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
4708 * net/tramp.el (tramp-user-error): ... here.
4709 (tramp-find-method, tramp-check-proper-host)
4710 (tramp-dissect-file-name, tramp-debug-message)
4711 (tramp-handle-shell-command):
4712 * net/tramp-adb.el (tramp-adb-handle-shell-command):
4713 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
4714
4715 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
4716
4717 2013-09-02 Martin Rudalics <rudalics@gmx.at>
4718
4719 * avoid.el (mouse-avoidance-point-position)
4720 (mouse-avoidance-too-close-p): Handle case where posn-at-point
4721 returns nil.
4722
4723 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
4724
4725 * progmodes/python.el (python-shell-completion-get-completions):
4726 Drop use of deleted `comint-last-prompt-overlay'.
4727 (python-nav-if-name-main): New command.
4728
4729 2013-09-01 Glenn Morris <rgm@gnu.org>
4730
4731 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
4732 Avoid leading space in $wins. Otherwise the sed command used by
4733 eg compile-main ends up containing "/*.el". (Bug#15170)
4734
4735 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
4736
4737 2013-08-30 Glenn Morris <rgm@gnu.org>
4738
4739 * emacs-lisp/bytecomp.el (byte-recompile-directory):
4740 Fix is-this-a-directory logic. (Bug#15220)
4741
4742 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
4743
4744 * textmodes/css-mode.el: Use SMIE.
4745 (css-smie-grammar): New var.
4746 (css-smie--forward-token, css-smie--backward-token)
4747 (css-smie-rules): New functions.
4748 (css-mode): Use them.
4749 (css-navigation-syntax-table): Remove var.
4750 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
4751 (css-indent-calculate, css-indent-line): Remove functions.
4752
4753 Misc changes to reduce use of `(lambda...); and other cleanups.
4754 * cus-edit.el: Use lexical-binding.
4755 (customize-push-and-save, customize-apropos)
4756 (custom-buffer-create-internal): Use closures.
4757 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
4758 * progmodes/ada-xref.el: Use setq.
4759 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
4760 * dframe.el: Use lexical-binding.
4761 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
4762 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
4763 * descr-text.el: Use lexical-binding.
4764 (describe-text-widget, describe-text-sexp, describe-property-list):
4765 Use closures.
4766 * comint.el (comint-history-isearch-push-state): Use a closure.
4767 * calculator.el: Use lexical-binding.
4768 (calculator-number-to-string): Make it work with lexical-binding.
4769 (calculator-funcall): Same and use cl-letf.
4770
4771 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
4772 (lisp--company-doc-string, lisp--company-location): New functions.
4773 (lisp-completion-at-point): Use them to improve Company support.
4774
4775 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
4776 params of lambda expressions.
4777 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
4778 (ruby-smie--opening-pipe-p): New function.
4779 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
4780 symbols and matched |...| for formal params.
4781 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
4782 from being treated as hanging. Handle "rescue".
4783
4784 2013-08-29 Glenn Morris <rgm@gnu.org>
4785
4786 * progmodes/cc-engine.el (c-pull-open-brace):
4787 Move definition before use.
4788
4789 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
4790
4791 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
4792 are immutable. Don't use `unsafe' any more.
4793 (cl--defsubst-expand): Don't substitute at the same time as keeping
4794 a residual unused let-binding. Don't use `unsafe' any more.
4795
4796 2013-08-29 Glenn Morris <rgm@gnu.org>
4797
4798 * calendar/cal-china.el (calendar-chinese-year-cache):
4799 Recenter on 2015.
4800
4801 * nxml/nxml-util.el (nxml-debug-clear-inside):
4802 Use cl-loop rather than loop.
4803
4804 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
4805
4806 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
4807
4808 2013-08-28 Glenn Morris <rgm@gnu.org>
4809
4810 * progmodes/antlr-mode.el: No need to require cc-mode twice.
4811
4812 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
4813
4814 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
4815
4816 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
4817
4818 * simple.el (repeat-complex-command--called-interactively-skip):
4819 New function.
4820 (repeat-complex-command): Use it (bug#14136).
4821
4822 * progmodes/cc-mode.el: Minor cleanup of var declarations.
4823 (c-define-abbrev-table): Add `doc' argument.
4824 (c-mode-abbrev-table, c++-mode-abbrev-table)
4825 (objc-mode-abbrev-table, java-mode-abbrev-table)
4826 (idl-mode-abbrev-table, pike-mode-abbrev-table)
4827 (awk-mode-abbrev-table): Use it.
4828 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
4829 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
4830 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
4831 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
4832 Move initialization into the declaration; and remove any
4833 autoload cookie.
4834
4835 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
4836 and dynamic let binding.
4837
4838 * vc/smerge-mode.el: Remove redundant :group args.
4839
4840 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
4841 to load-path.
4842
4843 2013-08-28 Juri Linkov <juri@jurta.org>
4844
4845 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
4846 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
4847 (isearch-other-meta-char): Handle an undefined shifted printing
4848 character by downshifting it. (Bug#15200)
4849
4850 2013-08-28 Juri Linkov <juri@jurta.org>
4851
4852 * isearch.el (isearch-search): Change regexp error message for
4853 non-regexp searches. (Bug#15166)
4854
4855 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
4856
4857 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
4858 for portability to hosts where /bin/sh has problems.
4859
4860 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
4861
4862 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
4863
4864 2013-08-27 Juri Linkov <juri@jurta.org>
4865
4866 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
4867 in the keyboard macro. (Bug#15126)
4868
4869 2013-08-27 Juri Linkov <juri@jurta.org>
4870
4871 * isearch.el (isearch-quote-char): Comment out converting unibyte
4872 to multibyte, thus syncing with its `quoted-insert' counterpart.
4873 (Bug#15166)
4874
4875 2013-08-27 Martin Rudalics <rudalics@gmx.at>
4876
4877 * window.el (display-buffer-use-some-window): Add missing
4878 argument in call of get-largest-window (Bug#15185).
4879 Reported by Stephen Leake.
4880
4881 2013-08-27 Glenn Morris <rgm@gnu.org>
4882
4883 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
4884
4885 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
4886
4887 * progmodes/python.el (python-font-lock-keywords): Don't return nil
4888 from a matcher-function unless there's no more matches (bug#15161).
4889
4890 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
4891
4892 * minibuffer.el: Revert change from 2013-08-20.
4893
4894 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
4895 with text property `tramp-default', if appropriate.
4896 (tramp-check-proper-host): New defun.
4897 (tramp-dissect-file-name): Do not check hostname. Revert change
4898 of 2013-03-18.
4899 (tramp-backtrace): Make VEC-OR-PROC optional.
4900
4901 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
4902 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4903 * net/tramp-sh.el (tramp-maybe-open-connection):
4904 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
4905 Apply `tramp-check-proper-host'.
4906
4907 2013-08-26 Tassilo Horn <tsdh@gnu.org>
4908
4909 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
4910 lambda expression in order to have `describe-variable' display it.
4911
4912 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
4913
4914 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
4915 BUF can be optional. (Bug#15186)
4916
4917 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
4918
4919 * progmodes/flymake.el (flymake-get-real-file-name-function):
4920 Fix broken customization. (Bug#15184)
4921
4922 2013-08-25 Alan Mackenzie <acm@muc.de>
4923
4924 Improve indentation of bracelists defined by macros (without "=").
4925
4926 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
4927 expansion begins with "{", regard it as bracelist when it doesn't
4928 contain a ";".
4929
4930 Parse C++ inher-intro when there's a template split over 2 lines.
4931
4932 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
4933 rigorously the search for "class" etc. followed by ":".
4934
4935 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
4936 random languages a regexp which never matches rather than nil.
4937
4938 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
4939
4940 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
4941 (c-awk-regexp-one-line-possibly-open-char-list-re)
4942 (c-awk-one-line-possibly-open-regexp-re)
4943 (c-awk-one-line-non-syn-ws*-re): Remove.
4944 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
4945 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
4946 (c-awk-space*-unclosed-regexp-/-re): New constants.
4947 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
4948 aren't regexp delimiters.
4949
4950 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
4951 handling for a rare situation in AWK Mode involving unterminated
4952 strings/regexps.
4953
4954 2013-08-23 Glenn Morris <rgm@gnu.org>
4955
4956 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
4957
4958 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
4959
4960 * files.el (create-file-buffer): If the result would begin with
4961 spaces, prepend a "|" instead of removing them. (Bug#15162)
4962
4963 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
4964
4965 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
4966 text-properties (bug#15155).
4967
4968 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
4969 exist any more.
4970 (calc-keypad-redraw): Remove unused var `pad'.
4971 (calc-keypad-press): Remove unused var `menu'.
4972
4973 2013-08-23 Martin Rudalics <rudalics@gmx.at>
4974
4975 * window.el (display-buffer-pop-up-frame):
4976 Call pop-up-frame-function with BUFFER current so `make-frame' will
4977 use it as the new frame's buffer (Bug#15133).
4978
4979 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
4980
4981 * calendar/timeclock.el: Minor cleanups.
4982 (timeclock-ask-before-exiting, timeclock-use-display-time):
4983 Use `symbol'.
4984 (timeclock-modeline-display): Define as alias before the
4985 actual definition.
4986 (timeclock-mode-line-display): Use define-minor-mode.
4987 (timeclock-day-list-template): Make it a function, add an argument.
4988 (timeclock-day-list-required, timeclock-day-list-length)
4989 (timeclock-day-list-debt, timeclock-day-list-span)
4990 (timeclock-day-list-break): Adjust calls accordingly.
4991
4992 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
4993
4994 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
4995 Use read--expression so that completion works again.
4996
4997 2013-08-21 Sam Steingold <sds@gnu.org>
4998
4999 Add rudimentary inferior shell interaction
5000 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
5001 (sh-set-shell): Reset it.
5002 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
5003 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
5004
5005 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
5006
5007 * align.el: Use lexical-binding.
5008 (align-region): Simplify accordingly.
5009
5010 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
5011
5012 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
5013
5014 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
5015 `non-essential' up.
5016
5017 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
5018
5019 * net/tramp.el:
5020 * net/tramp-adb.el:
5021 * net/tramp-cmds.el:
5022 * net/tramp-ftp.el:
5023 * net/tramp-gvfs.el:
5024 * net/tramp-gw.el:
5025 * net/tramp-sh.el: Don't wrap external variable declarations by
5026 `eval-when-compile'.
5027
5028 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
5029
5030 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
5031 now that Emacs supports ImageMagick animations.
5032
5033 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
5034
5035 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
5036 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
5037
5038 2013-08-16 Martin Rudalics <rudalics@gmx.at>
5039
5040 * window.el (mouse-autoselect-window-select): Do autoselect when
5041 mouse pointer is on margin.
5042
5043 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
5044
5045 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
5046
5047 2013-08-16 Glenn Morris <rgm@gnu.org>
5048
5049 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
5050 Handle "Remote Directory" response of some clients. (Bug#15058)
5051
5052 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
5053 Tweak warning. (Bug#14926)
5054
5055 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
5056 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
5057
5058 * image-mode.el (image-mode-map): Add menu items to reverse,
5059 increase, decrease, reset animation speed.
5060 (image--set-speed, image-increase-speed, image-decrease-speed)
5061 (image-reverse-speed, image-reset-speed): New functions.
5062 (image-mode-map): Add bindings for speed commands.
5063
5064 * image.el (image-animate-get-speed, image-animate-set-speed):
5065 New functions.
5066 (image-animate-timeout): Respect image :speed property.
5067
5068 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
5069
5070 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
5071 previous line (bug#15101).
5072 (debugger-eval-expression, debugger-record-expression):
5073 Use read--expression (bug#15102).
5074
5075 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
5076
5077 Remove byte compiler warnings, visible when compiling with
5078 `byte-compile-force-lexical-warnings' set to t.
5079
5080 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
5081 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
5082 (tramp-handle-unhandled-file-name-directory)
5083 (tramp-handle-file-notify-add-watch, tramp-action-login)
5084 (tramp-action-succeed, tramp-action-permission-denied)
5085 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
5086 arguments with "_".
5087
5088 * net/tramp-adb.el (tramp-adb-parse-device-names)
5089 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
5090 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
5091 (tramp-adb-handle-file-truename): Remove unused arguments.
5092
5093 * net/tramp-cache.el (tramp-flush-directory-property)
5094 (tramp-flush-connection-property, tramp-list-connections)
5095 (tramp-parse-connection-properties): Prefix unused arguments with "_".
5096
5097 * net/tramp-compat.el (tramp-compat-make-temp-file):
5098 Rename FILENAME to F.
5099
5100 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
5101 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
5102 (tramp-zeroconf-parse-workstation-device-names)
5103 (tramp-zeroconf-parse-webdav-device-names)
5104 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
5105
5106 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
5107 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
5108
5109 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
5110 arguments.
5111 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
5112 (tramp-sh-handle-insert-file-contents-literally)
5113 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
5114 with "_".
5115 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
5116 Remove unused variables.
5117
5118 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
5119 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
5120 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
5121
5122 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
5123 Make them a defconst.
5124 (tramp-uuencode-region): Remove unused variable.
5125
5126 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
5127
5128 * frameset.el (frameset--prop-setter): New function.
5129 (frameset-prop): Add gv-setter declaration.
5130 (frameset-filter-minibuffer): Deal with the case that the minibuffer
5131 parameter was already set in FILTERED. Doc fix.
5132 (frameset--record-minibuffer-relationships): Allow saving a
5133 minibufferless frame without its corresponding minibuffer frame.
5134 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
5135 frame, if the frame id matches.
5136 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
5137 frames before orphaned ones.
5138 (frameset-restore): Warn about orphaned windows, instead of error out.
5139
5140 2013-08-14 Martin Rudalics <rudalics@gmx.at>
5141
5142 * window.el (window-make-atom): Don't overwrite parameter
5143 already present.
5144 (display-buffer-in-atom-window): Handle special case where we
5145 split an already atomic window.
5146 (window--major-non-side-window, display-buffer-in-side-window)
5147 (window--side-check): Ignore minibuffer window when walking
5148 window tree.
5149 (window-deletable-p): Return 'frame only if no other frame uses
5150 our minibuffer window.
5151 (record-window-buffer): Run buffer-list-update-hook.
5152 (split-window): Make sure window--check-frame won't destroy an
5153 existing atomic window in case the new window gets nested
5154 inside.
5155 (display-buffer-at-bottom): Ignore minibuffer window when
5156 walking window tree. Don't split a side window.
5157 (pop-to-buffer): Don't set-buffer here, the select-window call
5158 should do that.
5159 (mouse-autoselect-window-select): Autoselect only if we are in the
5160 text portion of the window.
5161
5162 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
5163
5164 * net/shr.el (shr-parse-image-data): New function to grab both the
5165 data itself and the Content-Type.
5166 (shr-put-image): Use it.
5167
5168 * net/eww.el (eww-display-image): Ditto.
5169
5170 * image.el (image-content-type-suffixes): New variable.
5171
5172 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
5173
5174 * progmodes/python.el (python-imenu--build-tree)
5175 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
5176
5177 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
5178
5179 * simple.el (backward-word): Mention the optional argument.
5180
5181 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
5182
5183 * frameset.el (frameset--make): Rename constructor from make-frameset.
5184 (frameset-p, frameset-valid-p): Don't autoload.
5185 (frameset-valid-p): Use normal accessors.
5186
5187 2013-08-13 Glenn Morris <rgm@gnu.org>
5188
5189 * progmodes/compile.el (compile-command): Tweak example in doc.
5190 * obsolete/scribe.el (scribe-mode):
5191 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
5192
5193 * mail/feedmail.el (feedmail-confirm-outgoing)
5194 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
5195
5196 * cus-start.el (truncate-partial-width-windows): Fix type.
5197
5198 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
5199
5200 * net/shr.el (shr-table-horizontal-line): Fix custom type.
5201
5202 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
5203
5204 * emacs-lisp/timer.el (timer--time-setter): New function.
5205 (timer--time): Use it as gv-setter.
5206
5207 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
5208 setter is not a symbol.
5209
5210 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
5211
5212 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
5213 if sending fails. This makes debugging easier.
5214
5215 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
5216
5217 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
5218 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
5219 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
5220
5221 2013-08-12 Eli Zaretskii <eliz@gnu.org>
5222
5223 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
5224
5225 2013-08-12 Glenn Morris <rgm@gnu.org>
5226
5227 * format.el (format-annotate-function):
5228 Handle read-only text properties in the source. (Bug#14887)
5229
5230 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
5231
5232 * net/eww.el (eww-display-html): Ignore coding system errors.
5233 One web site uses "utf-8lias" as the coding system.
5234
5235 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
5236
5237 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
5238
5239 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
5240
5241 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
5242 (tutorial--detailed-help): Remove unused local variables.
5243 (tutorial--save-tutorial-to): Use ignore-errors.
5244 (help-with-tutorial): Use looking-at-p.
5245
5246 * view.el (view-buffer-other-window, view-buffer-other-frame):
5247 Mark unused arguments.
5248
5249 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
5250 (woman-select-symbol-fonts, woman, woman-find-file)
5251 (woman-insert-file-contents, woman-non-underline-faces):
5252 Use string-match-p.
5253 (woman1-unquote): Move declaration.
5254
5255 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
5256 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
5257 argument. Remove unused local variable.
5258 (xml-parse-elem-type): Use string-match-p.
5259 (xml-substitute-numeric-entities): Use ignore-errors.
5260
5261 * calculator.el (calculator): Mark unused argument.
5262 (calculator-paste, calculator-quit, calculator-integer-p):
5263 Use ignore-errors.
5264 (calculator-string-to-number, calculator-decimal, calculator-exp)
5265 (calculator-op-or-exp): Use string-match-p.
5266
5267 * dired.el (dired-buffer-more-recently-used-p): Declare.
5268 (dired-insert-set-properties, dired-insert-old-subdirs):
5269 Use ignore-errors.
5270
5271 * dired-aux.el (dired-compress): Use ignore-errors.
5272 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
5273 (dired-do-async-shell-command, dired-do-shell-command)
5274 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
5275 (dired-insert-subdir-validate): Use string-match-p.
5276 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
5277 (dired-add-entry): Use string-match-p, looking-at-p.
5278 (dired-insert-subdir-newpos): Remove unused local variable.
5279
5280 * filenotify.el (file-notify-callback): Remove unused local variable.
5281
5282 * filesets.el (filesets-error): Mark unused argument.
5283 (filesets-which-command-p, filesets-filter-dir-names)
5284 (filesets-directory-files, filesets-get-external-viewer)
5285 (filesets-ingroup-get-data): Use string-match-p.
5286
5287 * find-file.el (ff-other-file-name, ff-other-file-name)
5288 (ff-find-the-other-file, ff-cc-hh-converter):
5289 Remove unused local variables.
5290 (ff-get-file-name): Use string-match-p.
5291 (ff-all-dirs-under): Use ignore-errors.
5292
5293 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
5294 (follow-select-if-visible): Remove unused local variable.
5295
5296 * forms.el (read-file-filter): Move declaration.
5297 (forms--make-format, forms--make-parser, forms-insert-record):
5298 Quote function with #'.
5299 (forms--update): Use string-match-p. Quote function with #'.
5300
5301 * help-mode.el (help-dir-local-var-def): Mark unused argument.
5302 (help-make-xrefs): Use looking-at-p.
5303 (help-xref-on-pp): Use looking-at-p, ignore-errors.
5304
5305 * ibuffer.el (ibuffer-ext-visible-p): Declare.
5306 (ibuffer-confirm-operation-on): Use string-match-p.
5307
5308 * msb.el (msb-item-handler, msb-dired-item-handler):
5309 Mark unused arguments.
5310
5311 * ses.el (ses-decode-cell-symbol)
5312 (ses-kill-override): Remove unused local variable.
5313 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
5314 (ses-load): Use ignore-errors, looking-at-p.
5315 (ses-jump-safe): Use ignore-errors.
5316 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
5317
5318 * tabify.el (untabify, tabify): Mark unused arguments.
5319
5320 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
5321 Mark unused argument.
5322 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
5323 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
5324
5325 * emacs-lisp/timer.el (timer--time): Define setter with
5326 gv-define-setter to avoid deprecation warning.
5327
5328 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
5329 (*record-cmpl-statistics-p*): Remove (was commented out).
5330 (cmpl-statistics-block): Remove (body was commented out).
5331 All callers changed.
5332 (add-completions-from-buffer, load-completions-from-file):
5333 Remove unused variables.
5334
5335 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
5336
5337 * filecache.el (file-cache-delete-file-list):
5338 Print message only when told so.
5339 (file-cache-files-matching): Use #' in mapconcat argument.
5340
5341 * ffap.el (ffap-url-at-point): Fix reference to variable
5342 thing-at-point-default-mail-uri-scheme.
5343
5344 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
5345
5346 * subr.el (define-error): New function.
5347 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
5348 error-file-not-found and define with define-error.
5349 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
5350 and define with define-error.
5351 * userlock.el (file-locked, file-supersession):
5352 * simple.el (mark-inactive):
5353 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
5354 * progmodes/ada-mode.el (ada-mode-errors):
5355 * play/life.el (life-extinct):
5356 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
5357 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
5358 * nxml/rng-util.el (rng-error):
5359 * nxml/rng-uri.el (rng-uri-error):
5360 * nxml/rng-match.el (rng-compile-error):
5361 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
5362 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
5363 * nxml/nxml-rap.el (nxml-scan-error):
5364 * nxml/nxml-outln.el (nxml-outline-error):
5365 * net/soap-client.el (soap-error):
5366 * net/gnutls.el (gnutls-error):
5367 * net/ange-ftp.el (ftp-error):
5368 * mpc.el (mpc-proc-error):
5369 * json.el (json-error, json-readtable-error, json-unknown-keyword)
5370 (json-number-format, json-string-escape, json-string-format)
5371 (json-key-format, json-object-format):
5372 * jka-compr.el (compression-error):
5373 * international/quail.el (quail-error):
5374 * international/kkc.el (kkc-error):
5375 * emacs-lisp/ert.el (ert-test-failed):
5376 * calc/calc.el (calc-error, inexact-result, math-overflow)
5377 (math-underflow):
5378 * bookmark.el (bookmark-error-no-filename):
5379 * epg.el (epg-error): Define with define-error.
5380
5381 * time.el (display-time-event-handler)
5382 (display-time-next-load-average): Don't call sit-for since it seems
5383 unnecessary (bug#15045).
5384
5385 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
5386 Use #' instead of ' to quote functions.
5387 (checkdoc-output-mode): Use setq-local.
5388 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
5389 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
5390 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
5391 (checkdoc-ispell, checkdoc-ispell-current-buffer)
5392 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
5393 (checkdoc-ispell-message-text, checkdoc-ispell-start)
5394 (checkdoc-ispell-continue, checkdoc-ispell-comments)
5395 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
5396
5397 * ido.el (ido-completion-help): Fix up compiler warning.
5398
5399 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
5400
5401 * frameset.el (frameset-p): Add autoload cookie.
5402 (frameset--jump-to-register): New function, based on code moved from
5403 register.el.
5404 (frameset-to-register): Move from register.el. Adapt to `registerv'.
5405
5406 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
5407 (frameset-restore, frameset-save, frameset-session-filter-alist):
5408 Remove declarations.
5409 (register-alist): Doc fix.
5410 (frameset-to-register): Move to frameset.el.
5411 (jump-to-register, describe-register-1): Remove frameset-specific code.
5412
5413 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
5414
5415 * allout-widgets.el (allout-widgets-pre-command-business)
5416 (allout-widgets-post-command-business)
5417 (allout-widgets-after-change-handler)
5418 (allout-decorate-item-and-context, allout-set-boundary-marker)
5419 (allout-body-modification-handler)
5420 (allout-graphics-modification-handler): Mark ignored arguments.
5421 (allout-widgets-post-command-business)
5422 (allout-widgets-exposure-change-processor)
5423 (allout-widgets-exposure-undo-processor)
5424 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
5425 (allout-parse-item-at-point, allout-decorate-item-guides)
5426 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
5427 * allout.el (epa-passphrase-callback-function): Declare.
5428 (allout-overlay-insert-in-front-handler)
5429 (allout-overlay-interior-modification-handler)
5430 (allout-isearch-end-handler, allout-chart-siblings)
5431 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
5432 (allout-yank-processing, allout-process-exposed)
5433 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
5434 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
5435 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
5436 (lisp-indent-defform): Mark ignored arguments.
5437 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
5438 (calculate-lisp-indent): Remove unused variables.
5439 * international/characters.el (indian-2-column, arabic-2-column)
5440 (tibetan): Mark ignored arguments.
5441 (use-cjk-char-width-table): Mark ignored arguments.
5442 Remove unused variables.
5443 * international/fontset.el (build-default-fontset-data)
5444 (x-compose-font-name, create-fontset-from-fontset-spec):
5445 Mark ignored arguments.
5446 (fontset-plain-name): Remove unused variables.
5447 * international/mule.el (charset-id, charset-bytes, generic-char-p)
5448 (keyboard-coding-system): Mark ignored arguments.
5449 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
5450 * help.el (resize-temp-buffer-window):
5451 * window.el (display-buffer-in-major-side-window)
5452 (display-buffer-in-side-window, display-buffer-in-previous-window):
5453 Remove unused variables.
5454 * isearch.el (isearch-forward-symbol):
5455 * version.el (emacs-bzr-version-bzr):
5456 * international/mule-cmds.el (current-language-environment):
5457 * term/common-win.el (x-handle-iconic, x-handle-geometry)
5458 (x-handle-display):
5459 * term/pc-win.el (x-list-fonts, x-display-planes)
5460 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
5461 (x-server-version, x-display-screens, x-display-mm-height)
5462 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
5463 (x-selection-owner-p, x-own-selection-internal)
5464 (x-disown-selection-internal, x-get-selection-internal)
5465 (msdos-initialize-window-system):
5466 * term/tty-colors.el (tty-color-alist, tty-color-clear):
5467 * term/x-win.el (x-handle-no-bitmap-icon):
5468 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
5469 (vc-default-find-file-hook, vc-default-extra-menu):
5470 Mark ignored arguments.
5471
5472 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
5473
5474 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
5475 break-condition in the context of the debugged code (bug#12685).
5476
5477 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
5478
5479 * comint.el:
5480 Do not use an overlay to highlight the last prompt. (Bug#14744)
5481 (comint-mode): Make comint-last-prompt buffer local.
5482 (comint-last-prompt): New variable.
5483 (comint-last-prompt-overlay): Remove. Superseded by
5484 comint-last-prompt.
5485 (comint-snapshot-last-prompt, comint-output-filter):
5486 Use comint-last-prompt.
5487
5488 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
5489
5490 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
5491 (frameset-save): Check validity of the resulting frameset.
5492
5493 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
5494
5495 * ido.el (ido-record-command): Add doc string.
5496
5497 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
5498
5499 * frameset.el (frameset): Do not disable creation of the default
5500 frameset-p predicate. Doc fix.
5501 (frameset-valid-p): New function, copied from the old predicate-p.
5502 Add additional checks.
5503 (frameset-restore): Check with frameset-valid-p.
5504 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
5505 (frameset-name, frameset-description, frameset-properties)
5506 (frameset-states): Add docstring.
5507 (frameset-session-filter-alist, frameset-persistent-filter-alist)
5508 (frameset-filter-alist): Doc fixes.
5509
5510 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
5511
5512 * frameset.el (frameset-p, frameset-prop): Doc fixes.
5513
5514 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
5515
5516 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
5517 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
5518 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
5519 (byte-compile-normal-call): Remove obsolescence check.
5520
5521 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
5522
5523 * frameset.el (frameset-restore): Doc fix.
5524
5525 * register.el (frameset-frame-id, frameset-frame-with-id)
5526 (frameset-p, frameset-restore, frameset-save): Declare.
5527 (register-alist): Document framesets.
5528 (frameset-session-filter-alist): Declare.
5529 (frameset-to-register): New function.
5530 (jump-to-register): Implement jumping to framesets. Doc fix.
5531 (describe-register-1): Describe framesets.
5532
5533 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
5534
5535 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
5536
5537 * desktop.el (desktop-save-frameset): Use new frameset-save args.
5538 Use lexical-binding.
5539
5540 * frameset.el (frameset): Use type vector, not list (incompatible
5541 change). Do not declare a new constructor, use the default one.
5542 Upgrade suggested properties `app', `name' and `desc' to slots `app',
5543 `name' and `description', respectively, and add read-only slot
5544 `timestamp'. Doc fixes.
5545 (frameset-copy, frameset-persistent-filter-alist)
5546 (frameset-filter-alist, frameset-switch-to-gui-p)
5547 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
5548 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
5549 (frameset-filter-iconified, frameset-keep-original-display-p):
5550 Doc fixes.
5551 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
5552 Rename from frameset-filter-(save|restore)-param. All callers changed.
5553 Doc fix.
5554 (frameset-p): Adapt to change to vector and be more thorough.
5555 Change arg name to OBJECT. Doc fix.
5556 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
5557 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
5558 All callers changed.
5559 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
5560 All callers changed.
5561 (frameset--record-minibuffer-relationships): Rename from
5562 frameset--process-minibuffer-frames. All callers changed.
5563 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
5564 Use new default constructor (again). Doc fix.
5565 (frameset--find-frame-if): Rename from `frameset--find-frame.
5566 All callers changed.
5567 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
5568 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
5569 Doc fix.
5570 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
5571 PARAMETERS and WINDOW-STATE, respectively.
5572 (frameset-restore): Add new keyword argument PREDICATE.
5573 Reset frameset--target-display to nil. Doc fix.
5574
5575 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
5576
5577 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
5578 (bat-mode): Use it.
5579 (bat-mode-syntax-table): Mark \n as end-of-comment.
5580 (bat-font-lock-keywords): Remove comment rule.
5581
5582 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
5583 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
5584
5585 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
5586 (byte-compile-callargs-warn): Use `push'.
5587 (byte-compile-arglist-warn): Ignore higher-order "calls".
5588 (byte-compile-file-form-autoload): Use `pcase'.
5589 (byte-compile-function-form): If quoting a symbol, check that it exists.
5590
5591 2013-08-07 Eli Zaretskii <eliz@gnu.org>
5592
5593 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
5594 and add a few popular commands found in batch files.
5595 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
5596 (dos-mode): Doc fixes.
5597
5598 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
5599
5600 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
5601 (dos-mode): Use setq-local. Add space after "rem".
5602 (dos-mode-syntax-table): Don't use "w" for symbol chars.
5603 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
5604
5605 2013-08-07 Arni Magnusson <arnima@hafro.is>
5606
5607 * progmodes/dos.el: New file.
5608 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
5609 dos-mode.
5610
5611 2013-08-06 Glenn Morris <rgm@gnu.org>
5612
5613 * calendar/calendar.el: Add new faces, and day-header-array.
5614 (calendar-weekday-header, calendar-weekend-header)
5615 (calendar-month-header): New faces.
5616 (calendar-day-header-construct): New function.
5617 (calendar-day-header-width): Also :set calendar-day-header-array.
5618 (calendar-american-month-header, calendar-european-month-header)
5619 (calendar-iso-month-header): Use calendar- faces.
5620 (calendar-generate-month):
5621 Use calendar-day-header-array for day headers; apply faces to them.
5622 (calendar-mode): Check calendar-font-lock-keywords non-nil.
5623 (calendar-abbrev-construct): Add optional maxlen argument.
5624 (calendar-day-name-array): Doc fix.
5625 (calendar-day-name-array, calendar-abbrev-length)
5626 (calendar-day-abbrev-array):
5627 Also :set calendar-day-header-array, and maybe redraw.
5628 (calendar-day-header-array): New option. (Bug#15007)
5629 (calendar-font-lock-keywords): Set to nil and make obsolete.
5630 (calendar-day-name): Add option to use header array.
5631
5632 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
5633
5634 * net/shr.el (shr-render-td): Remove debugging.
5635 (shr-render-td): Make width computation consistent by defaulting
5636 all zero-width columns to 10 characters. This may not be optimal,
5637 but it's at least consistent.
5638 (shr-make-table-1): Redo last change to fix the real problem in
5639 colspan handling.
5640
5641 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5642
5643 * files.el (cache-long-line-scans):
5644 Make obsolete alias to `cache-long-scans'.
5645
5646 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
5647
5648 * frameset.el (frameset, frameset-filter-alist)
5649 (frameset-filter-params, frameset-save, frameset--reuse-frame)
5650 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
5651 (frameset-compute-pos): Rename from frameset--compute-pos,
5652 and add docstring.
5653 (frameset-move-onscreen): Use frameset-compute-pos.
5654 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
5655
5656 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
5657 Fix typos in docstrings.
5658
5659 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5660
5661 * frame.el (get-other-frame): Tiny cleanup.
5662
5663 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
5664
5665 * vc/vc.el (vc-default-ignore-completion-table):
5666 Silence byte-compiler warning.
5667
5668 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
5669 slot , which can indeed be nil.
5670 (frameset-live-filter-alist, frameset-persistent-filter-alist):
5671 Move entry for `left' from persistent to live filter alist.
5672 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
5673 Doc fixes.
5674 (frameset-filter-params): When restoring a frame, copy items added to
5675 `filtered', to avoid unwittingly modifying the original parameters.
5676 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
5677 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
5678
5679 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
5680 to use looking-at-p instead of looking-at. (Bug#15028)
5681
5682 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
5683
5684 Revert introduction of isearch-filter-predicates (bug#14714).
5685 Rely on add-function instead.
5686 * isearch.el (isearch-filter-predicates): Rename it back to
5687 isearch-filter-predicate.
5688 (isearch-message-prefix): Use advice-function-mapc and advice
5689 properties to get the isearch-message-prefix.
5690 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
5691 instead of run-hook-with-args-until-failure.
5692 (isearch-filter-visible): Not obsolete any more.
5693 * loadup.el: Preload nadvice.
5694 * replace.el (perform-replace): Revert to funcall
5695 instead of run-hook-with-args-until-failure.
5696 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
5697 * dired-aux.el (dired-isearch-filenames-mode): Rename from
5698 dired-isearch-filenames-toggle; make it into a proper minor mode.
5699 Use add/remove-function.
5700 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
5701 Call the minor-mode rather than add/remove-hook.
5702 (dired-isearch-filter-filenames):
5703 Remove isearch-message-prefix property.
5704 * info.el (Info--search-loop): New function, extracted from Info-search.
5705 Funcall isearch-filter-predicate instead of
5706 run-hook-with-args-until-failure isearch-filter-predicates.
5707 (Info-search): Use it.
5708 (Info-mode): Use isearch-filter-predicate instead of
5709 isearch-filter-predicates.
5710
5711 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
5712
5713 Do not call to `selected-window' where it is assumed by default.
5714 Affected functions are `window-minibuffer-p', `window-dedicated-p',
5715 `window-hscroll', `window-width', `window-height', `window-buffer',
5716 `window-frame', `window-start', `window-point', `next-window'
5717 and `window-display-table'.
5718 * abbrev.el (abbrev--default-expand):
5719 * bs.el (bs--show-with-configuration):
5720 * buff-menu.el (Buffer-menu-mouse-select):
5721 * calc/calc.el (calc):
5722 * calendar/calendar.el (calendar-generate-window):
5723 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
5724 (diary-make-entry):
5725 * comint.el (send-invisible, comint-dynamic-complete-filename)
5726 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
5727 * completion.el (complete):
5728 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
5729 * disp-table.el (describe-current-display-table):
5730 * doc-view.el (doc-view-insert-image):
5731 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
5732 * ehelp.el (with-electric-help):
5733 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
5734 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
5735 * emacs-lisp/helper.el (Helper-help-scroller):
5736 * emulation/cua-base.el (cua--post-command-handler-1):
5737 * eshell/esh-mode.el (eshell-output-filter):
5738 * ffap.el (ffap-gnus-wrapper):
5739 * help-macro.el (make-help-screen):
5740 * hilit-chg.el (highlight-compare-buffers):
5741 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
5742 * hl-line.el (global-hl-line-highlight):
5743 * icomplete.el (icomplete-simple-completing-p):
5744 * isearch.el (isearch-done):
5745 * jit-lock.el (jit-lock-stealth-fontify):
5746 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
5747 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
5748 * mpc.el (mpc-tagbrowser, mpc):
5749 * net/rcirc.el (rcirc-any-buffer):
5750 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
5751 * play/landmark.el (landmark-max-width, landmark-max-height):
5752 * play/zone.el (zone):
5753 * progmodes/compile.el (compilation-goto-locus):
5754 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
5755 * progmodes/etags.el (find-tag-other-window):
5756 * progmodes/fortran.el (fortran-column-ruler):
5757 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
5758 * progmodes/verilog-mode.el (verilog-point-text):
5759 * reposition.el (reposition-window):
5760 * rot13.el (toggle-rot13-mode):
5761 * server.el (server-switch-buffer):
5762 * shell.el (shell-dynamic-complete-command)
5763 (shell-dynamic-complete-environment-variable):
5764 * simple.el (insert-buffer, set-selective-display)
5765 (delete-completion-window):
5766 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
5767 (speedbar-recenter):
5768 * startup.el (fancy-splash-head):
5769 * textmodes/ispell.el (ispell-command-loop):
5770 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
5771 * tutorial.el (help-with-tutorial):
5772 * vc/add-log.el (add-change-log-entry):
5773 * vc/compare-w.el (compare-windows):
5774 * vc/ediff-help.el (ediff-indent-help-message):
5775 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
5776 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
5777 (ediff-setup-control-frame):
5778 * vc/emerge.el (emerge-position-region):
5779 * vc/pcvs-util.el (cvs-bury-buffer):
5780 * window.el (walk-windows, mouse-autoselect-window-select):
5781 * winner.el (winner-set-conf, winner-undo): Related users changed.
5782
5783 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
5784
5785 * frameset.el (frameset--set-id): Doc fix.
5786 (frameset-frame-id, frameset-frame-id-equal-p)
5787 (frameset-locate-frame-id): New functions.
5788 (frameset--process-minibuffer-frames, frameset--reuse-frame)
5789 (frameset-restore): Use them.
5790
5791 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
5792
5793 Do not call to `selected-frame' where it is assumed by default.
5794 Affected functions are `raise-frame', `redraw-frame',
5795 `frame-first-window', `frame-terminal' and `delete-frame'.
5796 * calendar/appt.el (appt-disp-window):
5797 * epg.el (epg-wait-for-completion):
5798 * follow.el (follow-delete-other-windows-and-split)
5799 (follow-avoid-tail-recenter):
5800 * international/mule.el (set-terminal-coding-system):
5801 * mail/rmail.el (rmail-mail-return):
5802 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
5803 * progmodes/f90.el (f90-add-imenu-menu):
5804 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
5805 * server.el (server-switch-buffer):
5806 * simple.el (delete-completion-window):
5807 * talk.el (talk):
5808 * term/xterm.el (terminal-init-xterm-modify-other-keys)
5809 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
5810 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
5811 * vc/ediff.el (ediff-documentation): Related users changed.
5812 * frame.el (selected-terminal): Remove the leftover.
5813
5814 2013-08-05 Glenn Morris <rgm@gnu.org>
5815
5816 * calendar/calendar.el (calendar-generate-month):
5817 Fix for calendar-column-width != 1 + calendar-day-digit-width.
5818 (calendar-generate-month, calendar-font-lock-keywords):
5819 Fix for calendar-day-header-width > length of any day name.
5820
5821 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
5822
5823 * desktop.el (desktop-clear): Use new name of sort predicate.
5824
5825 * frameset.el (frameset): Add docstring. Move :version property to its
5826 own `version' slot.
5827 (frameset-copy): Rename from copy-frameset.
5828 (frameset-p): Check more thoroughly.
5829 (frameset-prop): Do not check for :version, which is no longer a prop.
5830 (frameset-live-filter-alist, frameset-persistent-filter-alist):
5831 Use new :never value instead of t.
5832 (frameset-filter-alist): Expand and clarify docstring.
5833 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
5834 (frameset-filter-minibuffer, frameset-filter-save-param)
5835 (frameset-filter-restore-param, frameset-filter-iconified):
5836 Add pointer to docstring of frameset-filter-alist.
5837 (frameset-filter-params): Rename filter values to be more meaningful:
5838 :never instead of t, and reverse the meanings of :save and :restore.
5839 (frameset--process-minibuffer-frames): Clarify error message.
5840 (frameset-save): Avoid unnecessary and confusing call to framep.
5841 Use new BOA constructor for framesets.
5842 (frameset--reuse-list): Doc fix.
5843 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
5844 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
5845 (frameset-minibufferless-first-p): Doc fix.
5846 Rename from frameset-sort-frames-for-deletion.
5847 (frameset-restore): Doc fixes. Use new function names.
5848 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
5849
5850 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
5851
5852 * desktop.el (desktop-restore-forces-onscreen)
5853 (desktop-restore-reuses-frames): Document :keyword constant values.
5854 (desktop-filter-parameters-alist): Remove, now identical to
5855 frameset-filter-alist.
5856 (desktop--filter-tty*): Remove, moved to frameset.el.
5857 (desktop-save-frameset, desktop-restore-frameset):
5858 Do not pass :filters argument.
5859
5860 * frameset.el (frameset-live-filter-alist)
5861 (frameset-persistent-filter-alist): New variables.
5862 (frameset-filter-alist): Use them. Add autoload cookie.
5863 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
5864 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
5865 `frameset--id' (it's supposed to be internal to frameset.el).
5866 (frameset--process-minibuffer-frames): Ditto. Doc fix.
5867 (frameset--initial-params): New function.
5868 (frameset--get-frame): Use it. Doc fix.
5869 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
5870 Accept :all, not 'all.
5871 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
5872 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
5873 with fbound symbols. Fix frame id matching, and remove matching ids if
5874 the frame being restored is deleted. Obey :delete.
5875
5876 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
5877
5878 * subr.el (macrop): New function.
5879 (text-clone--maintaining): New var.
5880 (text-clone--maintain): Rename from text-clone-maintain. Use it
5881 instead of inhibit-modification-hooks.
5882
5883 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
5884 a proxy, so as handle autoloads and redefinitions of the target.
5885 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
5886
5887 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
5888 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
5889 (pcase--mutually-exclusive-p): New function.
5890 (pcase--split-consp): Use it.
5891 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
5892 mutually exclusive with the current predicate.
5893
5894 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
5895 (edebug-macrop): Remove. Use `macrop' instead.
5896 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
5897 (ad-macro-p):
5898 * eshell/esh-cmd.el (eshell-macrop):
5899 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
5900
5901 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
5902
5903 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
5904 (advice-mapc): New function, using it.
5905 (advice-function-member-p): New function.
5906 (advice--normalize): Store the cdr in advice--saved-rewrite since
5907 that's the part that will be changed.
5908 (advice--symbol-function): New function.
5909 (advice-remove): Handle removal before the function is defined.
5910 Adjust to new advice--saved-rewrite.
5911 (advice-member-p): Use advice-function-member-p and
5912 advice--symbol-function.
5913
5914 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
5915
5916 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
5917 (frameset-filter-minibuffer): Doc fix.
5918 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
5919 (frameset--set-id, frameset--process-minibuffer-frames)
5920 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
5921 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
5922
5923 * desktop.el (desktop-clear): Only delete frames when called
5924 interactively and desktop-restore-frames is non-nil. Doc fix.
5925 (desktop-read): Set desktop-saved-frameset to nil.
5926
5927 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
5928
5929 * vc/vc.el (vc-ignore): Rewrite.
5930 (vc-default-ignore-completion-table):
5931 (vc--read-lines):
5932 (vc--add-line, vc--remove-regexp): New functions.
5933
5934 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
5935 (vc-svn-ignore-completion-table): New function.
5936
5937 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
5938 (vc-hg-ignore-completion-table):
5939 (vc-hg-find-ignore-file): New functions.
5940
5941 * vc/vc-git.el (vc-git-ignore): Rewrite.
5942 (vc-git-ignore-completion-table):
5943 (vc-git-find-ignore-file): New functions.
5944
5945 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
5946
5947 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
5948 (vc-bzr-ignore-completion-table):
5949 (vc-bzr-find-ignore-file): New functions.
5950
5951 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
5952
5953 * frameset.el (frameset-prop): New function and setter.
5954 (frameset-save): Do not modify frame list passed by the caller.
5955
5956 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
5957
5958 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
5959
5960 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
5961
5962 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
5963 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
5964
5965 * custom.el (custom-initialize-default, custom-initialize-set)
5966 (custom-initialize-reset, custom-initialize-changed): Affect the
5967 toplevel-default-value (bug#6275, bug#14586).
5968 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
5969 for bug#6275.
5970
5971 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
5972
5973 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
5974 Add cl-def* expressions.
5975
5976 * frameset.el (frameset-filter-params): Fix order of arguments.
5977
5978 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
5979
5980 Move code related to saving frames to frameset.el.
5981 * desktop.el: Require frameset.
5982 (desktop-restore-frames): Doc fix.
5983 (desktop-restore-reuses-frames): Rename from
5984 desktop-restoring-reuses-frames.
5985 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
5986 (desktop-clear): Clear frames too.
5987 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
5988 (desktop--filter-tty*, desktop-save, desktop-read):
5989 Use frameset functions.
5990 (desktop-before-saving-frames-functions, desktop--filter-*-color)
5991 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
5992 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
5993 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
5994 (desktop--process-minibuffer-frames, desktop-save-frames)
5995 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
5996 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
5997 (desktop--sort-states, desktop-restoring-frames-p)
5998 (desktop-restore-frames): Remove. Most code moved to frameset.el.
5999 (desktop-restoring-frameset-p, desktop-restore-frameset)
6000 (desktop--check-dont-save, desktop-save-frameset): New functions.
6001 (desktop--app-id): New constant.
6002 (desktop-first-buffer, desktop-buffer-ok-count)
6003 (desktop-buffer-fail-count): Move before first use.
6004 * frameset.el: New file.
6005
6006 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
6007
6008 * files.el: Use lexical-binding.
6009 (dir-locals-read-from-file): Remove unused `err' variable.
6010 (hack-dir-local-variables--warned-coding): New var.
6011 (hack-dir-local-variables): Use it to avoid repeated warnings.
6012 (make-backup-file-name--default-function): New function.
6013 (make-backup-file-name-function): Use it as default.
6014 (buffer-stale--default-function): New function.
6015 (buffer-stale-function): Use it as default.
6016 (revert-buffer-insert-file-contents--default-function): New function.
6017 (revert-buffer-insert-file-contents-function): Use it as default.
6018 (insert-directory): Avoid add-to-list.
6019
6020 * autorevert.el (auto-revert-handler): Simplify.
6021 Use buffer-stale--default-function.
6022
6023 2013-08-01 Tassilo Horn <tsdh@gnu.org>
6024
6025 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
6026
6027 * whitespace.el (whitespace-ensure-local-variables): New function.
6028 (whitespace-cleanup-region): Call it.
6029 (whitespace-turn-on): Call it.
6030
6031 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
6032
6033 Complete file name handlers.
6034
6035 * net/tramp.el (tramp-handle-set-visited-file-modtime)
6036 (tramp-handle-verify-visited-file-modtime)
6037 (tramp-handle-file-notify-rm-watch): New functions.
6038 (tramp-call-process): Do not bind `default-directory'.
6039
6040 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
6041 Order alphabetically.
6042 [access-file, add-name-to-file, dired-call-process]:
6043 [dired-compress-file, file-acl, file-notify-rm-watch]:
6044 [file-ownership-preserved-p, file-selinux-context]:
6045 [make-directory-internal, make-symbolic-link, set-file-acl]:
6046 [set-file-selinux-context, set-visited-file-modtime]:
6047 [verify-visited-file-modtime]: Add handler.
6048 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
6049
6050 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
6051 [file-notify-add-watch, file-notify-rm-watch]:
6052 [set-file-times, set-visited-file-modtime]:
6053 [verify-visited-file-modtime]: Add handler.
6054 (with-tramp-gvfs-error-message)
6055 (tramp-gvfs-handle-set-visited-file-modtime)
6056 (tramp-gvfs-fuse-file-name): Remove.
6057 (tramp-gvfs-handle-file-notify-add-watch)
6058 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
6059 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
6060
6061 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6062 Order alphabetically.
6063 [file-notify-rm-watch ]: Use default Tramp handler.
6064 [executable-find]: Remove private handler.
6065 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
6066 `default-directory'.
6067 (tramp-sh-handle-executable-find)
6068 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
6069 (tramp-sh-file-gvfs-monitor-dir-process-filter)
6070 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
6071 Do not use `format' in `tramp-message'.
6072
6073 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
6074 [file-notify-rm-watch, set-visited-file-modtime]:
6075 [verify-visited-file-modtime]: Add handler.
6076 (tramp-smb-call-winexe): Do not bind `default-directory'.
6077
6078 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
6079
6080 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
6081
6082 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
6083
6084 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
6085 use it.
6086 (log-view-diff-changeset): Same.
6087 (log-view-diff-common): Call backend command `previous-revision'
6088 to find out the previous revision, in both cases. Swap the
6089 variables `to' and `fr', so that `fr' usually refers to the
6090 earlier revision (Bug#14989).
6091
6092 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
6093
6094 * ibuf-ext.el (ibuffer-filter-by-filename):
6095 Make it work with dired buffers too.
6096
6097 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
6098
6099 * emacs-lisp/re-builder.el (reb-color-display-p):
6100 * files.el (save-buffers-kill-terminal):
6101 * net/browse-url.el (browse-url):
6102 * server.el (server-save-buffers-kill-terminal):
6103 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
6104 Prefer nil to selected-frame for the first arg of frame-parameter.
6105
6106 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
6107
6108 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
6109
6110 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
6111
6112 * minibuffer.el (completion--twq-all): Try and preserve each
6113 completion's case choice (bug#14907).
6114
6115 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
6116
6117 * net/network-stream.el (open-network-stream): Mention the new
6118 :nogreeting parameter.
6119 (network-stream-open-starttls): Use the :nogreeting parameter
6120 (bug#14938).
6121
6122 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
6123
6124 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
6125 more natural than popping.
6126
6127 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
6128 (shr-urlify): Highlight under mouse.
6129
6130 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
6131
6132 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
6133
6134 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
6135
6136 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
6137 buffer for output.
6138
6139 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
6140 point-min==1. Fix search string. Fix parentheses missing.
6141
6142 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
6143 assume point-min==1. Fix search string. Fix parentheses missing.
6144
6145 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
6146
6147 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
6148 buffer for output.
6149
6150 2013-07-29 Eli Zaretskii <eliz@gnu.org>
6151
6152 * frame.el (frame-notice-user-settings): Avoid inflooping when the
6153 initial frame is minibuffer-less. (Bug#14841)
6154
6155 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
6156
6157 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
6158 option.
6159
6160 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
6161 (tramp-maybe-open-connection): Use it.
6162
6163 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
6164
6165 * desktop.el (desktop--make-frame): Include `minibuffer' in the
6166 minimal set of parameters passed when creating a frame, because
6167 the minibuffer status of a frame cannot be changed later.
6168
6169 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
6170
6171 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
6172 replace-regexp-in-string and inadvertent omissions in previous change.
6173 (todo-filter-items): Ensure only file names are comma-separated in
6174 name of filtered items buffer.
6175
6176 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
6177
6178 * desktop.el: Optionally force offscreen frames back onscreen.
6179 (desktop-restoring-reuses-frames): New option.
6180 (desktop--compute-pos, desktop--move-onscreen): New functions.
6181 (desktop--make-frame): Use desktop--move-onscreen.
6182
6183 2013-07-27 Alan Mackenzie <acm@muc.de>
6184
6185 Fontify a Java generic method as a function.
6186 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
6187 value to t.
6188
6189 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
6190
6191 * calendar/todo-mode.el: Add command to rename todo files.
6192 (todo-rename-file): New command.
6193 (todo-key-bindings-t): Add key binding for it. Change the
6194 bindings of todo-filter-regexp-items(-multifile) to use `x'
6195 instead of `r', since the latter is better suited to the new
6196 renaming command.
6197
6198 2013-07-27 Alan Mackenzie <acm@muc.de>
6199
6200 Make Java try-with-resources statement parse properly.
6201 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
6202 (c-block-stmt-1-2-key): New language constants/variables.
6203 * progmodes/cc-engine.el (c-beginning-of-statement-1)
6204 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
6205 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
6206 with c-block-stmt-1-2-key.
6207
6208 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
6209
6210 * desktop.el (desktop--make-frame): Apply most frame parameters after
6211 creating the frame to force (partially or totally) offscreen frames to
6212 be restored as such.
6213
6214 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
6215
6216 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
6217 (Bug#14948)
6218
6219 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
6220
6221 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
6222 `base' arg of backtrace-frame.
6223
6224 2013-07-26 Eli Zaretskii <eliz@gnu.org>
6225
6226 * simple.el (list-processes): Doc fix.
6227
6228 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
6229
6230 * desktop.el (desktop--select-frame):
6231 Try harder to reuse existing frames.
6232
6233 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
6234
6235 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
6236 (edebug-eval): Use backtrace-eval.
6237 (edebug--display, edebug--recursive-edit): Don't let-bind the
6238 edebug-outer-* vars that keep track of variables we locally let-bind.
6239 (edebug-outside-excursion): Don't restore outside values of locally
6240 let-bound vars.
6241 (edebug--display): Use user-error.
6242 (cl-lexical-debug, cl-debug-env): Remove.
6243
6244 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
6245
6246 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
6247 are restored to be sure that they are visible before deleting any
6248 remaining ones.
6249
6250 2013-07-26 Matthias Meulien <orontee@gmail.com>
6251
6252 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
6253 vc-print-root-log. (Bug#14948)
6254
6255 2013-07-26 Richard Stallman <rms@gnu.org>
6256
6257 Add aliases for encrypting mail.
6258 * epa.el (epa-mail-aliases): New option.
6259 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
6260 Bind inhibit-read-only so read-only text doesn't ruin everything.
6261 (epa-mail-default-recipients): New subroutine broken out.
6262 Handle epa-mail-aliases.
6263
6264 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
6265
6266 Add support for lexical variables to the debugger's `e' command.
6267 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
6268 vars, except for debugger-outer-match-data.
6269 (debugger-frame-number): Move check for "on a function call" from
6270 callers into it. Add `skip-base' argument.
6271 (debugger-frame, debugger-frame-clear): Simplify accordingly.
6272 (debugger-env-macro): Only reset the state stored in non-variables,
6273 i.e. current-buffer and match-data.
6274 (debugger-eval-expression): Rewrite using backtrace-eval.
6275 * subr.el (internal--called-interactively-p--get-frame): Remove.
6276 (called-interactively-p):
6277 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
6278 `base' arg of backtrace-frame instead.
6279
6280 2013-07-26 Glenn Morris <rgm@gnu.org>
6281
6282 * align.el (align-regexp): Doc fix. (Bug#14857)
6283 (align-region): Explicit error if subexpression missing/does not match.
6284
6285 * simple.el (global-visual-line-mode):
6286 Do not duplicate the mode lighter. (Bug#14858)
6287
6288 2013-07-25 Martin Rudalics <rudalics@gmx.at>
6289
6290 * window.el (display-buffer): In display-buffer bind
6291 split-window-keep-point to t, bug#14829.
6292
6293 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
6294
6295 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
6296 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
6297 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
6298 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
6299 Change accordingly.
6300 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
6301 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
6302
6303 2013-07-25 Glenn Morris <rgm@gnu.org>
6304
6305 * dired-x.el (dired-mark-extension): Convert comment to doc string.
6306
6307 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
6308
6309 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
6310 parameter to modify-frame-parameters if the value has not changed;
6311 this is a workaround for bug#14949.
6312 (desktop--make-frame): On cl-delete-if call, check parameter name,
6313 not full parameter.
6314
6315 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
6316
6317 * vc/vc.el (vc-ignore): New function.
6318
6319 * vc/vc-svn.el (vc-svn-ignore): New function.
6320
6321 * vc/vc-hg.el (vc-hg-ignore): New function.
6322
6323 * vc/vc-git.el (vc-git-ignore): New function.
6324
6325 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
6326 (vc-dir-ignore): New function.
6327
6328 * vc/vc-cvs.el (vc-cvs-ignore): New function.
6329 (cvs-append-to-ignore): Move here from pcvs.el.
6330
6331 * vc/vc-bzr.el (vc-bzr-ignore): New function.
6332
6333 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
6334
6335 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
6336
6337 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
6338 (desktop-restore-frames): Warn when deleting an existing frame failed.
6339
6340 2013-07-24 Glenn Morris <rgm@gnu.org>
6341
6342 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
6343
6344 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
6345
6346 * filenotify.el (file-notify-supported-p):
6347 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
6348 Remove functions.
6349
6350 * autorevert.el (auto-revert-use-notify):
6351 (auto-revert-notify-add-watch):
6352 * net/tramp.el (tramp-file-name-for-operation):
6353 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
6354 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6355 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6356 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
6357 Remove `file-notify-supported-p' entry.
6358
6359 2013-07-24 Glenn Morris <rgm@gnu.org>
6360
6361 * printing.el: Replace all uses of deleted ps-windows-system,
6362 ps-lp-system, ps-flatten-list with lpr- versions.
6363
6364 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
6365
6366 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
6367 checked with memq (bug#14935).
6368
6369 * files.el (revert-buffer-function): Use a non-nil default.
6370 (revert-buffer-preserve-modes): Declare var to
6371 provide access to the `preserve-modes' argument.
6372 (revert-buffer): Let-bind it.
6373 (revert-buffer--default): New function, extracted from revert-buffer.
6374
6375 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
6376
6377 * lpr.el: Signal print errors more prominently.
6378 (print-region-function): Don't default to nil.
6379 (lpr-print-region): New function, extracted from print-region-1.
6380 Check lpr's return value and signal an error in case of problem.
6381 (print-region-1): Use it.
6382 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
6383 versions instead.
6384 (ps-printer-name): Default to nil.
6385 (ps-printer-name-option): Default to lpr-printer-switch.
6386 (ps-print-region-function): Don't default to nil.
6387 (ps-postscript-code-directory): Simplify default.
6388 (ps-do-despool): Use lpr-print-region to properly check the outcome.
6389 (ps-string-list, ps-eval-switch, ps-flatten-list)
6390 (ps-flatten-list-1): Remove.
6391 (ps-multibyte-buffer): Avoid setq.
6392 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
6393 (print-region-function, ps-print-region-function): Don't set them here.
6394
6395 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
6396
6397 * ido.el (ido-fractionp):
6398 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
6399 (ido-max-file-prompt-width, ido-unc-hosts-cache)
6400 (ido-max-directory-size, ido-max-dir-file-cache)
6401 (ido-decorations): Doc fix.
6402
6403 * ansi-color.el: Fix old URL.
6404
6405 2013-07-23 Michael R. Mauger <michael@mauger.com>
6406
6407 * progmodes/sql.el: Version 3.3
6408 (sql-product-alist): Improve oracle :prompt-cont-regexp.
6409 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
6410 (sql-interactive-remove-continuation-prompt): Rewrite, use
6411 functions above. Fix continuation prompt and complete output line
6412 handling.
6413 (sql-redirect-one, sql-execute): Use `read-only-mode' on
6414 redirected output buffer.
6415 (sql-mode): Restore deleted code (Bug#13591).
6416
6417 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
6418
6419 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
6420
6421 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
6422
6423 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
6424
6425 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
6426 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6427 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
6428
6429 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
6430
6431 * desktop.el (desktop-clear): Simplify; remove useless checks
6432 against invalid buffer names.
6433 (desktop-list*): Use cl-list*.
6434 (desktop-buffer-info, desktop-create-buffer): Simplify.
6435
6436 2013-07-23 Leo Liu <sdl.web@gmail.com>
6437
6438 * bookmark.el (bookmark-make-record): Restore NAME as a default
6439 value. (Bug#14933)
6440
6441 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
6442
6443 * emacs-lisp/autoload.el (autoload--setup-output): New function,
6444 extracted from autoload--insert-text.
6445 (autoload--insert-text): Remove.
6446 (autoload--print-cookie-text): New function, extracted from
6447 autoload--insert-cookie-text.
6448 (autoload--insert-cookie-text): Remove.
6449 (autoload-generate-file-autoloads): Adjust calls accordingly.
6450
6451 * winner.el (winner-hook-installed-p): Remove.
6452 (winner-mode): Simplify accordingly.
6453
6454 * subr.el (add-to-list): Fix compiler-macro when `append' is
6455 not constant. Don't use `cl-member' for the base case.
6456
6457 * progmodes/subword.el: Fix boundary case (bug#13758).
6458 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
6459 own group.
6460 (subword-backward-regexp): Make it a constant.
6461 (subword-forward-internal): Don't treat a trailing capital as the
6462 beginning of a word.
6463
6464 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
6465
6466 * emacs-lisp/package.el (package-menu-mode): Don't modify the
6467 global value of tabulated-list-revert-hook (bug#14930).
6468
6469 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
6470
6471 * desktop.el: Require 'cl-lib.
6472 (desktop-before-saving-frames-functions): New hook.
6473 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
6474 for frames being saved. Rename from desktop--save-minibuffer-frames.
6475 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
6476 Do not save frames with non-nil `desktop-dont-save' parameter.
6477 Filter out deleted frames.
6478 (desktop--find-frame): Use cl-find-if.
6479 (desktop--select-frame): Use cl-(first|second|third) to access values
6480 of desktop-mini.
6481 (desktop--make-frame): Use cl-delete-if.
6482 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
6483 (desktop-restore-frames): Use cl-(first|second|third) to access values
6484 of desktop-mini. Look for visible frame at the end, not while
6485 restoring frames.
6486
6487 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
6488 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
6489 Use string-match-p, looking-at-p (bug#14927).
6490
6491 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
6492
6493 * desktop.el (desktop-saved-frame-states):
6494 Rename from desktop--saved-states; all users changed.
6495 (desktop-save-frames): Rename from desktop--save-frames.
6496 Do not save state to desktop file.
6497 (desktop-save): Save desktop-saved-frame-states to desktop file
6498 and reset to nil.
6499 (desktop-restoring-frames-p): New function.
6500 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
6501 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
6502 buffer-lists when restoring frames. Suggested by Martin Rudalics.
6503
6504 * desktop.el: Correctly restore iconified frames.
6505 (desktop--filter-iconified-position): New function.
6506 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
6507
6508 2013-07-20 Glenn Morris <rgm@gnu.org>
6509
6510 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
6511 Let `message' do the formatting.
6512 (def-gdb-preempt-display-buffer): Add explicit format.
6513
6514 * image-dired.el (image-dired-track-original-file):
6515 Use with-current-buffer.
6516 (image-dired-track-thumbnail): Use with-current-buffer.
6517 Avoid changing point of wrong window.
6518
6519 * image-dired.el (image-dired-track-original-file):
6520 Avoid changing point of wrong window. (Bug#14909)
6521
6522 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
6523
6524 * progmodes/gdb-mi.el (gdb-done-or-error):
6525 Guard against "%" in gdb output. (Bug#14127)
6526
6527 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
6528
6529 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
6530 (Bug#14826)
6531
6532 * international/mule.el (coding-system-iso-2022-flags): Fix last
6533 change.
6534
6535 2013-07-20 Kenichi Handa <handa@gnu.org>
6536
6537 * international/mule.el (coding-system-iso-2022-flags):
6538 Add `8-bit-level-4'. (Bug#8522)
6539
6540 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
6541
6542 * net/shr.el (shr-mouse-browse-url): New command and keystroke
6543 (bug#14815).
6544
6545 * net/eww.el (eww-process-text-input): Allow inputting when the
6546 point is at the start of the line, as the properties aren't
6547 front-sticky.
6548
6549 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
6550 degenerate widths.
6551
6552 2013-07-19 Richard Stallman <rms@gnu.org>
6553
6554 * epa.el (epa-popup-info-window): Doc fix.
6555
6556 * subr.el (split-string): New arg TRIM.
6557
6558 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
6559
6560 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
6561 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
6562
6563 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
6564
6565 * filenotify.el (file-notify--library): Rename from
6566 `file-notify-support'. Do not autoload. Adapt all uses.
6567 (file-notify-supported-p): New defun.
6568
6569 * autorevert.el (auto-revert-use-notify):
6570 Use `file-notify-supported-p' instead of `file-notify-support'.
6571 Adapt docstring.
6572 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
6573
6574 * net/tramp.el (tramp-file-name-for-operation):
6575 Add `file-notify-supported-p'.
6576
6577 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
6578 New defun.
6579 (tramp-sh-file-name-handler-alist): Add it as handler for
6580 `file-notify-supported-p '.
6581
6582 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
6583 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6584 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
6585 Add `ignore' as handler for `file-notify-*' functions.
6586
6587 2013-07-17 Eli Zaretskii <eliz@gnu.org>
6588
6589 * simple.el (line-move-partial, line-move): Don't start vscroll or
6590 scroll-up if the current line is not taller than the window.
6591 (Bug#14881)
6592
6593 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
6594
6595 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
6596 highlight question marks in the method names as strings.
6597 (ruby-block-beg-keywords): Inline.
6598 (ruby-font-lock-keyword-beg-re): Extract from
6599 `ruby-font-lock-keywords'.
6600
6601 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
6602
6603 * frame.el (blink-cursor-blinks): New defcustom.
6604 (blink-cursor-blinks-done): New defvar.
6605 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
6606 (blink-cursor-timer-function): Check if number of blinks has been
6607 done on X and NS.
6608 (blink-cursor-suspend, blink-cursor-check): New defuns.
6609
6610 2013-07-15 Glenn Morris <rgm@gnu.org>
6611
6612 * edmacro.el (edmacro-format-keys): Fix previous change.
6613
6614 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
6615
6616 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
6617 The hack didn't work outside English locales anyway.
6618
6619 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
6620
6621 * simple.el (define-alternatives): Rename from alternatives-define,
6622 per RMS' suggestion.
6623
6624 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
6625
6626 * desktop.el (desktop-restore-frames): Change default to t.
6627 (desktop-restore-in-current-display): Now offer more options.
6628 (desktop-restoring-reuses-frames): New customization option.
6629 (desktop--saved-states): Doc fix.
6630 (desktop-filter-parameters-alist): New variable, renamed and expanded
6631 from desktop--excluded-frame-parameters.
6632 (desktop--target-display): New variable.
6633 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
6634 (desktop--filter-tty*, desktop--filter-*-color)
6635 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
6636 (desktop--filter-save-desktop-parm)
6637 (desktop-restore-in-original-display-p): New functions.
6638 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
6639 (desktop--save-minibuffer-frames): New function, inspired by a similar
6640 function from Martin Rudalics.
6641 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
6642 (desktop--restore-in-this-display-p): Remove.
6643 (desktop--find-frame): Rename from desktop--find-frame-in-display
6644 and add predicate argument.
6645 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
6646 (desktop--reuse-list): New variable.
6647 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
6648 New functions.
6649 (desktop--restore-frames): Add support for "minibuffer-special" frames.
6650
6651 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
6652
6653 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
6654
6655 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
6656
6657 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
6658 Highlight conversion methods on Kernel.
6659
6660 2013-07-13 Alan Mackenzie <acm@muc.de>
6661
6662 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
6663 and comment it out. This out-commenting enables certain C++
6664 declarations to be parsed correctly.
6665
6666 2013-07-13 Eli Zaretskii <eliz@gnu.org>
6667
6668 * international/mule.el (define-coding-system): Doc fix.
6669
6670 * simple.el (default-font-height): Don't call font-info if the
6671 frame's default font didn't change since the frame was created.
6672 (Bug#14838)
6673
6674 2013-07-13 Leo Liu <sdl.web@gmail.com>
6675
6676 * ido.el (ido-read-file-name): Guard against non-symbol value.
6677
6678 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
6679
6680 * progmodes/python.el (python-imenu--build-tree): Fix corner case
6681 in nested defuns.
6682
6683 2013-07-13 Leo Liu <sdl.web@gmail.com>
6684
6685 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
6686 ido-set-matches call. (Bug#6852)
6687
6688 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
6689
6690 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
6691 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
6692 Ruby 2.0.
6693 (ruby-font-lock-keywords): Distinguish calls to functions with
6694 module-like names from module references. Highlight character
6695 literals.
6696
6697 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
6698
6699 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
6700 (gdb-send): Handle continued commands. (Bug#14847)
6701
6702 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
6703
6704 * desktop.el (desktop--v2s): Remove unused local variable.
6705 (desktop-save-buffer): Make defvar-local; adjust docstring.
6706 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
6707 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
6708
6709 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
6710
6711 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
6712
6713 2013-07-12 Eli Zaretskii <eliz@gnu.org>
6714
6715 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
6716 (Bug#14842)
6717
6718 2013-07-12 Glenn Morris <rgm@gnu.org>
6719
6720 * doc-view.el: Require cl-lib at runtime too.
6721 (doc-view-remove-if): Remove.
6722 (doc-view-search-next-match, doc-view-search-previous-match):
6723 Use cl-remove-if.
6724
6725 * edmacro.el: Require cl-lib at runtime too.
6726 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
6727 (edmacro-mismatch, edmacro-subseq): Remove.
6728
6729 * shadowfile.el: Require cl-lib.
6730 (shadow-remove-if): Remove.
6731 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
6732 Use cl-remove-if.
6733
6734 * wid-edit.el: Require cl-lib.
6735 (widget-choose): Use cl-remove-if.
6736 (widget-remove-if): Remove.
6737
6738 * progmodes/ebrowse.el: Require cl-lib at runtime too.
6739 (ebrowse-delete-if-not): Remove.
6740 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
6741 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
6742 Use cl-delete-if-not.
6743
6744 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
6745
6746 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
6747 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
6748
6749 2013-07-12 Leo Liu <sdl.web@gmail.com>
6750
6751 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
6752
6753 2013-07-11 Glenn Morris <rgm@gnu.org>
6754
6755 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
6756 (edebug-gensym-index, edebug-gensym):
6757 Remove reimplementation of cl-gensym.
6758 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
6759
6760 * thumbs.el: Require cl-lib at run-time too.
6761 (thumbs-gensym-counter, thumbs-gensym):
6762 Remove reimplementation of cl-gensym.
6763 (thumbs-temp-file): Use cl-gensym.
6764
6765 * emacs-lisp/ert.el: Require cl-lib at runtime too.
6766 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
6767 (ert--intersection, ert--set-difference, ert--set-difference-eq)
6768 (ert--union, ert--gensym-counter, ert--gensym-counter)
6769 (ert--coerce-to-vector, ert--remove*, ert--string-position)
6770 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
6771 (ert-make-test-unbound, ert--expand-should-1)
6772 (ert--expand-should, ert--should-error-handle-error)
6773 (should-error, ert--explain-equal-rec)
6774 (ert--plist-difference-explanation, ert-select-tests)
6775 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
6776 Use cl-lib functions rather than reimplementations.
6777
6778 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
6779
6780 * net/tramp.el (tramp-methods): Extend docstring.
6781 (tramp-connection-timeout): New defcustom.
6782 (tramp-error-with-buffer): Reset timestamp only when appropriate.
6783 (with-tramp-progress-reporter): Simplify.
6784 (tramp-process-actions): Improve messages.
6785
6786 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
6787 * net/tramp-sh.el (tramp-maybe-open-connection):
6788 Use `tramp-connection-timeout'.
6789 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
6790 (Bug#14808)
6791
6792 2013-07-11 Leo Liu <sdl.web@gmail.com>
6793
6794 * ido.el (ido-read-file-name): Conform to the requirements of
6795 read-file-name. (Bug#11861)
6796 (ido-read-directory-name): Conform to the requirements of
6797 read-directory-name.
6798
6799 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
6800
6801 * subr.el (delay-warning): New function.
6802
6803 2013-07-10 Eli Zaretskii <eliz@gnu.org>
6804
6805 * simple.el (default-line-height): New function.
6806 (line-move-partial, line-move): Use it instead of computing the
6807 line height inline.
6808 (line-move-partial): Always compute ROWH. If the last line is
6809 partially-visible, but its text is completely visible, allow
6810 cursor to enter such a partially-visible line.
6811
6812 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
6813
6814 Improve error messages. (Bug#14808)
6815
6816 * net/tramp.el (tramp-current-connection): New defvar, moved from
6817 tramp-sh.el.
6818 (tramp-message-show-progress-reporter-message): Remove, not
6819 needed anymore.
6820 (tramp-error-with-buffer): Show message in minibuffer.
6821 Discard input before waiting. Reset connection timestamp.
6822 (with-tramp-progress-reporter): Improve messages.
6823 (tramp-process-actions): Use progress reporter. Delete process in
6824 case of error. Improve messages.
6825
6826 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
6827 Call `tramp-error-with-buffer' with vector and buffer.
6828 (tramp-current-connection): Remove.
6829 (tramp-maybe-open-connection): The car of
6830 `tramp-current-connection' are the first 3 slots of the vector.
6831
6832 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
6833
6834 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
6835 inside continued strings.
6836
6837 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
6838
6839 Timestamp fixes for undo (Bug#14824).
6840 * files.el (clear-visited-file-modtime): Move here from fileio.c.
6841
6842 2013-07-10 Leo Liu <sdl.web@gmail.com>
6843
6844 * files.el (require-final-newline): Allow safe local value.
6845 (Bug#14834)
6846
6847 2013-07-09 Leo Liu <sdl.web@gmail.com>
6848
6849 * ido.el (ido-read-directory-name): Handle fallback.
6850 (ido-read-file-name): Update DIR to ido-current-directory.
6851 (Bug#1516)
6852 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
6853
6854 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
6855
6856 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
6857 "autoload". Remove "warn lower camel case" section, previously
6858 commented out. Highlight negation char. Do not highlight the
6859 target in singleton method definitions.
6860
6861 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
6862
6863 * faces.el (tty-setup-hook): Declare the hook.
6864
6865 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
6866 and detect when a guard/pred depends on local vars (bug#14773).
6867 (pcase--u1): Adjust caller.
6868
6869 2013-07-08 Eli Zaretskii <eliz@gnu.org>
6870
6871 * simple.el (line-move-partial, line-move): Account for
6872 line-spacing.
6873 (line-move-partial): Avoid setting vscroll when the last
6874 partially-visible line in window is of default height.
6875
6876 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
6877
6878 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
6879 been used a while.
6880
6881 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
6882
6883 * subr.el (read-quoted-char): Remove unused local variable `char'.
6884
6885 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
6886
6887 * ediff.el (ediff-version): Version update.
6888 (ediff-files-command, ediff3-files-command, ediff-merge-command)
6889 (ediff-merge-with-ancestor-command, ediff-directories-command)
6890 (ediff-directories3-command, ediff-merge-directories-command)
6891 (ediff-merge-directories-with-ancestor-command): New functions.
6892 All are command-line interfaces to ediff: to facilitate calling
6893 Emacs with the appropriate ediff functions invoked.
6894
6895 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
6896 (viper-save-kill-buffer): Check if buffer is modified.
6897
6898 * viper.el (viper-version): Version update.
6899 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
6900
6901 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
6902
6903 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
6904 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
6905 (viper-intercept-ESC-key): Simplify.
6906 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
6907 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
6908 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
6909 (viper-setup-ESC-to-escape): New functions.
6910 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
6911 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
6912
6913 2013-07-07 Eli Zaretskii <eliz@gnu.org>
6914
6915 * simple.el (default-font-height, window-screen-lines):
6916 New functions.
6917 (line-move, line-move-partial): Use them instead of
6918 frame-char-height and window-text-height. This makes scrolling
6919 text smoother when the buffer's default face uses a font that is
6920 different from the frame's default font.
6921
6922 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
6923
6924 * files.el (write-file): Do not display confirm dialog for NS,
6925 it does its own dialog, which can't be cancelled (Bug#14578).
6926
6927 2013-07-06 Eli Zaretskii <eliz@gnu.org>
6928
6929 * simple.el (line-move-partial): Adjust the row returned by
6930 posn-at-point for the current window-vscroll. (Bug#14567)
6931
6932 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
6933
6934 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
6935 (tramp-sh-file-inotifywait-process-filter): Handle file names with
6936 spaces.
6937
6938 2013-07-06 Martin Rudalics <rudalics@gmx.at>
6939
6940 * window.el (window-state-put-stale-windows): New variable.
6941 (window--state-put-2): Save list of windows without matching buffer.
6942 (window-state-put): Remove "bufferless" windows if possible.
6943
6944 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
6945
6946 * simple.el (alternatives-define): Remove leftover :group keyword.
6947 Tweak docstring.
6948
6949 2013-07-06 Leo Liu <sdl.web@gmail.com>
6950
6951 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
6952 (ido-enable-virtual-buffers): New variable.
6953 (ido-buffer-internal, ido-toggle-virtual-buffers)
6954 (ido-make-buffer-list): Use it.
6955 (ido-exhibit): Support turning on and off virtual buffers
6956 automatically.
6957
6958 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
6959
6960 * simple.el (alternatives-define): New macro.
6961
6962 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
6963
6964 * subr.el (read-quoted-char): Use read-key.
6965 (sit-for): Let read-event decode tty input (bug#14782).
6966
6967 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
6968
6969 * calendar/todo-mode.el: Add handling of file deletion, both by
6970 mode command and externally. Fix various related bugs.
6971 Clarify Commentary and improve some documentation strings and code.
6972 (todo-delete-file): New command.
6973 (todo-check-file): New function.
6974 (todo-show): Handle external deletion of the file we're trying to
6975 show (bug#14688). Replace called-interactively-p by an optional
6976 prefix argument to avoid problematic interaction with catch form
6977 when byte compiled (bug#14702).
6978 (todo-quit): Handle external deletion of the archive's todo file.
6979 Make sure the buffer that was visiting the archive file is still
6980 live before trying to bury it.
6981 (todo-category-completions): Handle external deletion of any
6982 category completion files.
6983 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
6984 of todo files, in case of external deletion.
6985 (todo-add-file): Replace unnecessary setq by let-binding.
6986 (todo-find-archive): Check whether there are any archives.
6987 Replace unnecessary setq by let-binding.
6988 (todo-archive-done-item): Use find-file-noselect to get the
6989 archive buffer whether or not the archive already exists.
6990 Remove superfluous code. Use file size instead of buffer-file-name to
6991 check if the archive is new; if it is, update list of archives.
6992 (todo-default-todo-file): Allow nil to be a valid value for when
6993 there are no todo files.
6994 (todo-reevaluate-default-file-defcustom): Use corrected definition
6995 of todo-default-todo-file.
6996 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
6997 (todo-delete-category, todo-show-categories-table)
6998 (todo-category-number): Clarify comment.
6999 (todo-filter-items): Clarify documentation string.
7000 (todo-show-current-file, todo-display-as-todo-file)
7001 (todo-reset-and-enable-done-separator): Tweak documentation string.
7002 (todo-done-separator): Make separator length window-width, since
7003 bug#2749 is now fixed.
7004
7005 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
7006
7007 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
7008 Support both "gvfs-monitor-dir" and "inotifywait".
7009 (tramp-sh-file-inotifywait-process-filter): Rename from
7010 `tramp-sh-file-notify-process-filter'.
7011 (tramp-sh-file-gvfs-monitor-dir-process-filter)
7012 (tramp-get-remote-gvfs-monitor-dir): New defuns.
7013
7014 2013-07-05 Leo Liu <sdl.web@gmail.com>
7015
7016 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
7017
7018 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7019
7020 * frame.el (display-pixel-height, display-pixel-width)
7021 (display-mm-height, display-mm-width): Mention behavior on
7022 multi-monitor setups in docstrings.
7023 (w32-display-monitor-attributes-list): Declare function.
7024 (display-monitor-attributes-list): Use it.
7025
7026 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
7027
7028 * filenotify.el: New package.
7029
7030 * autorevert.el (top): Require filenotify.el.
7031 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
7032 instead.
7033 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
7034 (auto-revert-notify-handler): Use `file-notify-*' functions.
7035
7036 * subr.el (file-notify-handle-event): Move function to filenotify.el.
7037
7038 * net/tramp.el (tramp-file-name-for-operation):
7039 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
7040
7041 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
7042 for `file-notify-add-watch' and `file-notify-rm-watch'.
7043 (tramp-process-sentinel): Improve trace.
7044 (tramp-sh-handle-file-notify-add-watch)
7045 (tramp-sh-file-notify-process-filter)
7046 (tramp-sh-handle-file-notify-rm-watch)
7047 (tramp-get-remote-inotifywait): New defuns.
7048
7049 2013-07-03 Juri Linkov <juri@jurta.org>
7050
7051 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
7052 call of `occur-read-primary-args' to interactive spec.
7053
7054 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
7055 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
7056
7057 2013-07-03 Matthias Meulien <orontee@gmail.com>
7058
7059 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
7060 `Buffer-menu-multi-occur'. Add it to the menu.
7061 (Buffer-menu-mode): Document it in docstring.
7062 (Buffer-menu-multi-occur): New command. (Bug#14673)
7063
7064 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
7065
7066 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
7067 keywords and built-ins.
7068
7069 2013-07-03 Glenn Morris <rgm@gnu.org>
7070
7071 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
7072
7073 Make info-xref checks case-sensitive by default
7074 * info.el (Info-find-node, Info-find-in-tag-table)
7075 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
7076 Add option for exact case matching of nodes.
7077 * info-xref.el (info-xref): New custom group.
7078 (info-xref-case-fold): New option.
7079 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
7080
7081 2013-07-03 Leo Liu <sdl.web@gmail.com>
7082
7083 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
7084
7085 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
7086
7087 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
7088 middle of block statement initially, lower the depth. Remove
7089 FIXME comment, not longer valid. Remove middle of block statement
7090 detection, no need to do that anymore since we've been using
7091 `ruby-parse-region' here.
7092
7093 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
7094
7095 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
7096
7097 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
7098
7099 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
7100
7101 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
7102
7103 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
7104 (desktop-restore-in-current-display): New customization option.
7105 (desktop--excluded-frame-parameters): Add `font'.
7106 (desktop--save-frames): Rename from desktop--save-windows.
7107 (desktop--restore-in-this-display-p): New function.
7108 (desktop--make-full-frame): Remove unwanted width/height from
7109 full(width|height) frames.
7110 (desktop--restore-frames): Rename from desktop--restore-windows.
7111 Obey desktop-restore-current-display. Do not delete old frames or
7112 select a new frame unless we were able to restore at least one frame.
7113
7114 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
7115
7116 * files.el (find-file-noselect): Simplify conditional expression.
7117
7118 * remember.el (remember-append-to-file):
7119 Don't mix `find-buffer-visiting' and `get-file-buffer'.
7120
7121 Add `remember-notes' function to store random notes across Emacs
7122 restarts.
7123 * remember.el (remember-data-file): Add :set callback to affect
7124 notes buffer (if any).
7125 (remember-notes): New command.
7126 (remember-notes-buffer-name, bury-remember-notes-on-kill):
7127 New defcustoms for the `remember-notes' function.
7128 (remember-notes-save-and-bury-buffer): New command.
7129 (remember-notes-mode-map): New variable.
7130 (remember-mode): New minor mode.
7131 (remember-notes--kill-buffer-query): New function.
7132 * startup.el (initial-buffer-choice): Add notes to custom type.
7133
7134 2013-06-30 Eli Zaretskii <eliz@gnu.org>
7135
7136 * bindings.el (right-char, left-char): Don't call sit-for, this is
7137 no longer needed. Use arithmetic comparison only for numerical
7138 arguments.
7139
7140 * international/mule-cmds.el (select-safe-coding-system):
7141 Handle the case of FROM being a string correctly. (Bug#14755)
7142
7143 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
7144
7145 * net/shr.el (shr-make-table-1): Add a sanity check that allows
7146 progression on degenerate tables.
7147 (shr-rescale-image): ImageMagick animated images currently don't work.
7148
7149 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
7150
7151 Some fixes and improvements for desktop frame restoration.
7152 It is still experimental and disabled by default.
7153 * desktop.el (desktop--save-windows): Put the selected frame at
7154 the head of the list.
7155 (desktop--make-full-frame): New function.
7156 (desktop--restore-windows): Try to re-select the frame that was
7157 selected upon saving. Do not abort if some frames fail to restore,
7158 just show an error message and continue. Set up maximized frames
7159 so they have default non-maximized dimensions.
7160
7161 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
7162
7163 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
7164 Don't start heredoc inside a string or comment.
7165
7166 2013-06-29 Eli Zaretskii <eliz@gnu.org>
7167
7168 * bindings.el (visual-order-cursor-movement): New defcustom.
7169 (right-char, left-char): Provide visual-order cursor motion by
7170 calling move-point-visually. Update the doc strings.
7171
7172 2013-06-28 Kenichi Handa <handa@gnu.org>
7173
7174 * international/mule.el (define-coding-system): New coding system
7175 properties :inhibit-null-byte-detection,
7176 :inhibit-iso-escape-detection, and :prefer-utf-8.
7177 (set-buffer-file-coding-system): If :charset-list property of
7178 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
7179 appropriate for setting.
7180
7181 * international/mule-cmds.el (select-safe-coding-system):
7182 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
7183 multibyte characters, return utf-8 (or one of its siblings).
7184
7185 * international/mule-conf.el (prefer-utf-8): New coding system.
7186 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
7187 files.
7188
7189 2013-06-28 Ivan Kanis <ivan@kanis.fr>
7190
7191 * net/shr.el (shr-render-region): New function.
7192
7193 * net/eww.el: Autoload `eww-browse-url'.
7194
7195 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
7196
7197 * emacs-lisp/package-x.el (package-upload-buffer-internal):
7198 Adapt to `package-desc-version' being a list.
7199 Use `package--ac-desc-version' to retrieve version from a package
7200 archive element.
7201
7202 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
7203
7204 New experimental feature to save&restore window and frame setup.
7205 * desktop.el (desktop-save-windows): New defcustom.
7206 (desktop--saved-states): New var.
7207 (desktop--excluded-frame-parameters): New defconst.
7208 (desktop--filter-frame-parms, desktop--find-frame-in-display)
7209 (desktop--restore-windows, desktop--save-windows): New functions.
7210 (desktop-save): Call `desktop--save-windows'.
7211 (desktop-read): Call `desktop--restore-windows'.
7212
7213 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
7214
7215 * net/shr.el (add-face-text-property): Remove compat definition.
7216
7217 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
7218
7219 * info.el (Info-try-follow-nearest-node): Move search for footnote
7220 above search for node name to prevent missing a footnote (bug#14717).
7221
7222 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
7223
7224 * obsolete/otodo-mode.el: Add obsolescence info to file header.
7225
7226 2013-06-27 Leo Liu <sdl.web@gmail.com>
7227
7228 * net/eww.el (eww-read-bookmarks): Check file size.
7229
7230 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
7231
7232 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
7233 advice--pending if newdef is nil or an autoload (bug#13820).
7234 (advice-mapc): New function.
7235
7236 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
7237
7238 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
7239 probably.
7240 (eww-mode-map): Add a menu bar.
7241 (eww-add-bookmark): New command.
7242 (eww-bookmark-mode): New mode and commands.
7243 (eww-add-bookmark): Remove newlines from the title.
7244 (eww-bookmark-browse): Don't bug out if it's the only window.
7245
7246 2013-06-26 Glenn Morris <rgm@gnu.org>
7247
7248 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
7249 (hfy-size): Handle ttys. (Bug#14668)
7250
7251 * info-xref.el: Update for Texinfo 5 change in *note format.
7252 (info-xref-node-re, info-xref-note-re): New constants.
7253 (info-xref-check-buffer): Use info-xref-note-re.
7254
7255 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
7256
7257 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
7258
7259 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
7260 nil terminate the loop (bug#14718).
7261
7262 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
7263
7264 * net/eww.el: Rework history traversal. When going forward/back,
7265 put these actions into the history, too, so that they can be
7266 replayed.
7267 (eww-render): Move the history reset to the correct buffer.
7268
7269 2013-06-25 Juri Linkov <juri@jurta.org>
7270
7271 * files-x.el (modify-dir-local-variable): Change the header comment
7272 in the file with directory local variables. (Bug#14692)
7273
7274 * files-x.el (read-file-local-variable-value): Add `default'.
7275 (Bug#14710)
7276
7277 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
7278
7279 * net/eww.el (eww-make-unique-file-name): Create a unique file
7280 name before saving to entering `y' accidentally asynchronously.
7281
7282 2013-06-25 Ivan Kanis <ivan@kanis.fr>
7283
7284 * net/eww.el (eww-download): New command and keystroke.
7285
7286 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
7287
7288 * net/eww.el (eww-copy-page-url): Change name of command.
7289
7290 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
7291 be more consistent with Info and dired.
7292
7293 * net/eww.el (eww-mode-map): Ditto.
7294
7295 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
7296
7297 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
7298 packages from archives.
7299 (package-archive-contents): Change format; include obsolete packages.
7300 (package-desc): Use `dir' to mark builtin packages.
7301 (package--from-builtin): Set the `dir' field to `builtin'.
7302 (generated-autoload-file, version-control): Declare.
7303 (package-compute-transaction): Change first arg and return value to be
7304 lists of package-descs. Adjust to new package-archive-contents format.
7305 (package--add-to-archive-contents): Adjust to new
7306 package-archive-contents format.
7307 (package-download-transaction): Arg is now a list of package-descs.
7308 (package-install): If `pkg' is a package name, pass it as
7309 a requirement, so it is subject to the usual (e.g. disabled) checks.
7310 (describe-package): Accept package-desc as well.
7311 (describe-package-1): Describe a specific package-desc. Add links to
7312 other package-descs for the same package name.
7313 (package-menu-describe-package): Pass the actual package-desc.
7314 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
7315 works correctly.
7316 (package-desc-status): New function.
7317 (package-menu--refresh): New function, extracted
7318 from package-menu--generate.
7319 (package-menu--generate): Use it.
7320 (package-delete): Update package-alist.
7321 (package-menu-execute): Don't call package-initialize.
7322
7323 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
7324 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
7325 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
7326 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
7327 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
7328 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
7329
7330 2013-06-25 Martin Rudalics <rudalics@gmx.at>
7331
7332 * window.el (window--state-get-1): Workaround for bug#14527.
7333 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
7334
7335 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
7336
7337 * net/eww.el (eww-back-url): Implement the history by stashing all
7338 the data into a list.
7339 (eww-forward-url): Allow going forward in the history, too.
7340
7341 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
7342
7343 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
7344 for values and use read--expression for expressions (bug#14710).
7345 (read-file-local-variable): Avoid setq.
7346 (read-file-local-variable-mode): Use minor-mode-list.
7347
7348 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7349
7350 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
7351 for DOI URLs.
7352
7353 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7354
7355 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
7356 Update imenu-support when dialect changes.
7357
7358 2013-06-25 Leo Liu <sdl.web@gmail.com>
7359
7360 * ido.el (ido-read-internal): Allow forward slash on windows.
7361
7362 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
7363
7364 * net/eww.el (eww): Start of strings is \\`, not ^.
7365
7366 2013-06-24 Ivan Kanis <ivan@kanis.fr>
7367
7368 * net/shr.el (shr-browse-url): Fix interactive spec.
7369
7370 * net/eww.el (eww): Add a trailing slash to domain names.
7371
7372 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
7373
7374 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
7375
7376 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
7377
7378 * net/shr.el (shr-browse-url): Use an external browser if given a
7379 prefix.
7380
7381 * net/eww.el (eww-external-browser): Move to shr.
7382
7383 2013-06-24 Ivan Kanis <ivan@kanis.fr>
7384
7385 * net/eww.el (eww): Work more correctly for file: URLs.
7386 (eww-detect-charset): Allow quoted charsets.
7387 (eww-yank-page-url): New command and keystroke.
7388
7389 2013-06-24 Daiki Ueno <ueno@gnu.org>
7390
7391 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
7392 file name of gpg executable.
7393 (epg-context-program): New function.
7394 (epg-context-home-directory): New function.
7395 (epg-context-set-program): New function.
7396 (epg-context-set-home-directory): New function.
7397 (epg--start): Use `epg-context-program' instead of
7398 'epg-gpg-program'.
7399 (epg--list-keys-1): Likewise.
7400
7401 2013-06-24 Leo Liu <sdl.web@gmail.com>
7402
7403 * ido.el (ido-read-internal): Fix bug#14620.
7404
7405 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
7406
7407 * faces.el (face-documentation): Simplify.
7408 (read-face-attribute, tty-find-type, x-resolve-font-name):
7409 Use `string-match-p'.
7410 (list-faces-display): Use `string-match-p'. Simplify.
7411 (face-spec-recalc): Check face to avoid face alias loops.
7412 (read-color): Use `string-match-p' and non-capturing parenthesis.
7413
7414 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
7415
7416 * net/shr.el (shr-rescale-image): Use the new
7417 :max-width/:max-height functionality.
7418
7419 2013-06-23 Ivan Kanis <ivan@kanis.fr>
7420
7421 * net/eww.el (eww-search-prefix): New variable.
7422 (eww): Use it.
7423 (eww-external-browser): New variable.
7424 (eww-mode-map): New keystroke.
7425 (eww-browse-with-external-browser): New command.
7426
7427 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
7428
7429 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
7430
7431 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
7432 Don't skip aligning the next header field when padding is 0;
7433 otherwise, field width is not respected unless the title is as
7434 wide as the field.
7435
7436 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
7437
7438 * emacs-lisp/package.el (package-el-version): Remove.
7439 (package-process-define-package): Fix inf-loop.
7440 (package-install): Allow symbols as arguments again.
7441
7442 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
7443
7444 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
7445 add some more keyword-like methods.
7446 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
7447
7448 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
7449
7450 * bs.el (bs-buffer-show-mark): Make defvar-local.
7451 (bs-mode): Use setq-local.
7452
7453 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
7454 (emacs-lock--try-unlocking): Make defvar-local.
7455
7456 2013-06-22 Glenn Morris <rgm@gnu.org>
7457
7458 * play/cookie1.el (cookie-apropos): Minor simplification.
7459
7460 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
7461
7462 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
7463
7464 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
7465 `regexp-opt', it breaks the build during dumping.
7466
7467 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
7468
7469 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
7470 Highlight keyword-like methods on Kernel and Module with
7471 font-lock-builtin-face.
7472 (auto-mode-alist): Consolidate different entries into one regexp
7473 and add more *file-s.
7474
7475 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
7476
7477 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
7478
7479 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
7480 (diary-entry): Use it in the action of this button type instead of
7481 diary-goto-entry.
7482
7483 * calendar/todo-mode.el: New version.
7484 (todo-add-category): Append new category to end of file and give
7485 it the highest number, instead of putting it at the beginning and
7486 giving it 0. Incorporate noninteractive functionality.
7487 (todo-forward-category): Adapt to 1-based category numbering.
7488 Allow skipping over archived categories.
7489 (todo-backward-category): Derive from todo-forward-category.
7490 (todo-backward-item, todo-forward-item): Make noninteractive and
7491 delegate interactive part to new commands. Make sensitive to done items.
7492 (todo-categories): Make value an alist of category names and
7493 vectors of item counts.
7494 (todo-category-beg): Make a defconst.
7495 (todo-category-number): Use 1 instead of 0 as initial value.
7496 (todo-category-select): Make sensitive to overlays, optional item
7497 highlighting and done items.
7498 (todo-delete-item): Make sensitive to overlays and marked and done items.
7499 (todo-edit-item): Make sensitive to overlays and editing of
7500 date/time header optional. Add format checks.
7501 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
7502 no-op if point is not on an item. Advertise using todo-edit-quit.
7503 (todo-edit-mode): Make sensitive to new format, font-locking, and
7504 multiple todo files.
7505 (todo-insert-item, todo-insert-item-here): Derive from
7506 todo-basic-insert-item and extend functionality.
7507 (todo-item-end, todo-item-start): Make sensitive to done items.
7508 (todo-item-string): Don't return text properties. Restore point.
7509 (todo-jump-to-category): Make sensitive to multiple todo files and
7510 todo archives. Use extended category completion.
7511 (todo-lower-item, todo-raise-item): Rename to *-priority and
7512 derive from todo-set-item-priority.
7513 (todo-mode): Derive from special-mode. Make sensitive to new
7514 format, font-locking and multiple todo files. Make read-only.
7515 (todo-mode-map): Don't suppress digit keys, so they can supply
7516 prefix arguments. Add many new key bindings.
7517 (todo-prefix): Insert as an overlay instead of file text.
7518 Change semantics from diary date expression to purely visual mark.
7519 (todo-print): Rename to todo-print-buffer. Make buffer display
7520 features printable. Remove option to restrict number of items
7521 printed. Add option to print to file.
7522 (todo-print-function): Rename to todo-print-buffer-function.
7523 (todo-quit): Extend to handle exiting new todo modes.
7524 (todo-remove-item): Make sensitive to overlays.
7525 (todo-save): Extend to buffers of filtered items.
7526 (todo-show): Make sensitive to done items, multiple todo files and
7527 new todo modes. Offer to convert legacy todo file before creating
7528 first new todo file.
7529 (todo-show-priorities): Rename to todo-top-priorities.
7530 Change semantics of value 0.
7531 (todo-top-priorities): Rename to todo-filter-top-priorities,
7532 derive from todo-filter-items and extend functionality.
7533 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
7534 and extend functionality to other types of filtered items.
7535 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
7536 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
7537 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
7538 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
7539 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
7540 (todo-edit-mode-hook, todo-entry-prefix-function)
7541 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
7542 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
7543 (todo-initials, todo-insert-threshold, todo-item-string-start)
7544 (todo-line-string, todo-menu, todo-mode-hook)
7545 (todo-more-important-p, todo-previous-answer, todo-previous-line)
7546 (todo-print-priorities, todo-remove-separator)
7547 (todo-save-top-priorities-too, todo-string-count-lines)
7548 (todo-string-multiline-p, todo-time-string-format)
7549 (todo-tmp-buffer-name): Remove.
7550 (todo-add-file, todo-archive-done-item, todo-choose-archive)
7551 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
7552 (todo-edit-category-diary-inclusion)
7553 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
7554 (todo-edit-file, todo-edit-item-date-day)
7555 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
7556 (todo-edit-item-date-month, todo-edit-item-date-to-today)
7557 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
7558 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
7559 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
7560 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
7561 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
7562 (todo-filter-top-priorities-multifile, todo-find-archive)
7563 (todo-find-filtered-items-file, todo-go-to-source-item)
7564 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
7565 (todo-jump-to-archive-category, todo-lower-category)
7566 (todo-mark-category, todo-marked-item-p, todo-merge-category)
7567 (todo-move-category, todo-move-item, todo-next-button)
7568 (todo-next-item, todo-padded-string, todo-powerset)
7569 (todo-previous-button, todo-previous-item)
7570 (todo-print-buffer-to-file, todo-raise-category)
7571 (todo-rename-category, todo-repair-categories-sexp, todo-search)
7572 (todo-set-category-number, todo-set-item-priority)
7573 (todo-set-top-priorities-in-category)
7574 (todo-set-top-priorities-in-file, todo-show-categories-table)
7575 (todo-sort-categories-alphabetically-or-numerically)
7576 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
7577 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
7578 (todo-toggle-item-header, todo-toggle-item-highlighting)
7579 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
7580 (todo-toggle-view-done-items, todo-toggle-view-done-only)
7581 (todo-unarchive-items, todo-unmark-category): New commands.
7582 (todo-absolute-file-name, todo-add-to-buffer-list)
7583 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
7584 (todo-basic-insert-item, todo-category-completions)
7585 (todo-category-number, todo-category-string-matcher-1)
7586 (todo-category-string-matcher-2, todo-check-filtered-items-file)
7587 (todo-check-format, todo-clear-matches)
7588 (todo-comment-string-matcher, todo-convert-legacy-date-time)
7589 (todo-current-category, todo-date-string-matcher)
7590 (todo-define-insertion-command, todo-diary-expired-matcher)
7591 (todo-diary-goto-entry, todo-diary-item-p)
7592 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
7593 (todo-display-categories, todo-display-sorted, todo-done-item-p)
7594 (todo-done-item-section-p, todo-done-separator)
7595 (todo-done-string-matcher, todo-files, todo-filter-items)
7596 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
7597 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
7598 (todo-insert-category-line, todo-insert-item-from-calendar)
7599 (todo-insert-sort-button, todo-insert-with-overlays)
7600 (todo-insertion-command-name, todo-insertion-key-bindings)
7601 (todo-label-to-key, todo-longest-category-name-length)
7602 (todo-make-categories-list, todo-mode-external-set)
7603 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
7604 (todo-modes-set-3, todo-multiple-filter-files)
7605 (todo-nondiary-marker-matcher, todo-prefix-overlays)
7606 (todo-read-category, todo-read-date, todo-read-dayname)
7607 (todo-read-file-name, todo-read-time)
7608 (todo-reevaluate-category-completions-files-defcustom)
7609 (todo-reevaluate-default-file-defcustom)
7610 (todo-reevaluate-filelist-defcustoms)
7611 (todo-reevaluate-filter-files-defcustom)
7612 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
7613 (todo-reset-done-separator, todo-reset-done-separator-string)
7614 (todo-reset-done-string, todo-reset-global-current-todo-file)
7615 (todo-reset-highlight-item, todo-reset-nondiary-marker)
7616 (todo-reset-prefix, todo-set-categories)
7617 (todo-set-date-from-calendar, todo-set-show-current-file)
7618 (todo-set-top-priorities, todo-short-file-name)
7619 (todo-show-current-file, todo-sort, todo-time-string-matcher)
7620 (todo-total-item-counts, todo-update-buffer-list)
7621 (todo-update-categories-display, todo-update-categories-sexp)
7622 (todo-update-count, todo-validate-name, todo-y-or-n-p):
7623 New functions.
7624 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
7625 New major modes.
7626 (todo-categories, todo-display, todo-edit, todo-faces)
7627 (todo-filtered): New defgroups.
7628 (todo-archived-only, todo-button, todo-category-string, todo-date)
7629 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
7630 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
7631 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
7632 (todo-add-item-if-new-category, todo-always-add-time-string)
7633 (todo-categories-align, todo-categories-archived-label)
7634 (todo-categories-category-label, todo-categories-diary-label)
7635 (todo-categories-done-label, todo-categories-number-separator)
7636 (todo-categories-todo-label, todo-categories-totals-label)
7637 (todo-category-completions-files, todo-completion-ignore-case)
7638 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
7639 (todo-done-separator-string, todo-done-string)
7640 (todo-files-function, todo-filter-done-items, todo-filter-files)
7641 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
7642 (todo-initial-category, todo-initial-file, todo-item-mark)
7643 (todo-legacy-date-time-regexp, todo-mode-line-function)
7644 (todo-nondiary-marker, todo-number-prefix)
7645 (todo-print-buffer-function, todo-show-current-file)
7646 (todo-show-done-only, todo-show-first, todo-show-with-done)
7647 (todo-skip-archived-categories, todo-top-priorities-overrides)
7648 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
7649 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
7650 New defcustoms.
7651 (todo-category-done, todo-date-pattern, todo-date-string-start)
7652 (todo-diary-items-buffer, todo-done-string-start)
7653 (todo-filtered-items-buffer, todo-item-start)
7654 (todo-month-abbrev-array, todo-month-name-array)
7655 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
7656 (todo-top-priorities-buffer): New defconsts.
7657 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
7658 (todo-categories-with-marks, todo-category-string-face)
7659 (todo-comment-face, todo-comment-string, todo-current-todo-file)
7660 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
7661 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
7662 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
7663 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
7664 (todo-font-lock-keywords, todo-global-current-todo-file)
7665 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
7666 (todo-insertion-commands-args)
7667 (todo-insertion-commands-args-genlist)
7668 (todo-insertion-commands-names, todo-insertion-map)
7669 (todo-key-bindings-t, todo-key-bindings-t+a)
7670 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
7671 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
7672 (todo-nondiary-face, todo-print-buffer, todo-time-face)
7673 (todo-visited): New variables.
7674
7675 2013-06-21 Glenn Morris <rgm@gnu.org>
7676
7677 * play/cookie1.el (cookie-apropos): Add optional display argument.
7678 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
7679 (psychoanalyze-pinhead): Use cookie-doctor.
7680
7681 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
7682
7683 * emacs-lisp/package.el (tar-get-file-descriptor)
7684 (tar--extract): Declare.
7685
7686 2013-06-21 Eduard Wiebe <usenet@pusto.de>
7687
7688 Extend flymake's warning predicate to be a function (bug#14217).
7689 * progmodes/flymake.el (flymake-warning-predicate): New.
7690 (flymake-parse-line): Use it.
7691 (flymake-warning-re): Make obsolete alias to
7692 `flymake-warning-predicate'.
7693
7694 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
7695
7696 * emacs-lisp/package.el (package-alist): Include obsolete packages.
7697 (package-obsolete-list): Remove.
7698 (package-activate): Remove min-version argument. Add `force' argument.
7699 Adjust to new package-alist format.
7700 (package-mark-obsolete): Remove.
7701 (package-unpack): Force reload of the package's autoloads.
7702 (package-installed-p): Check builtins if the installed package is not
7703 recent enough.
7704 (package-initialize): Don't reset package-obsolete-list.
7705 Don't specify which package version to activate.
7706 (package-process-define-package, describe-package-1)
7707 (package-menu--generate): Adjust to new package-alist format.
7708
7709 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
7710
7711 * allout-widgets.el (allout-widgets-mode-off)
7712 (allout-widgets-mode-on, allout-widgets-pre-command-business)
7713 (allout-widgets-post-command-business)
7714 (allout-widgets-after-copy-or-kill-function)
7715 (allout-widgets-after-undo-function, allout-test-range-overlaps)
7716 (allout-decorate-item-and-context)
7717 (allout-graphics-modification-handler): Fix typos in docstrings.
7718 (allout-get-or-create-parent-widget): Use `looking-at-p'.
7719
7720 * cmuscheme.el (scheme-start-file): Doc fix.
7721 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
7722 (scheme-input-filter): Use `string-match-p'.
7723
7724 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
7725
7726 * dired-x.el: Use Dired consistently in docstrings.
7727
7728 * dired.el: Use Dired consistently in docstrings.
7729 (dired-readin, dired-mode): Use `setq-local'.
7730 (dired-switches-alist): Make defvar-local.
7731 (dired-buffers-for-dir): Use `zerop'.
7732 (dired-safe-switches-p, dired-switches-escape-p)
7733 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
7734 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
7735 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
7736 (dired-goto-next-nontrivial-file): Use `string-match-p'.
7737 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
7738 (dired-toggle-marks, dired-mark-files-containing-regexp)
7739 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
7740 (dired-flag-auto-save-files, dired-flag-backup-files):
7741 Use `looking-at-p'.
7742 (dired-mark-files-regexp, dired-build-subdir-alist):
7743 Use `string-match-p', `looking-at-p'.
7744
7745 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
7746 (direct-print-region-helper): Use `string-match-p'.
7747
7748 2013-06-21 Leo Liu <sdl.web@gmail.com>
7749
7750 * comint.el (comint-redirect-results-list-from-process):
7751 Fix infinite loop.
7752
7753 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
7754
7755 * net/eww.el (eww-update-header-line-format): Quote % characters.
7756
7757 2013-06-21 Glenn Morris <rgm@gnu.org>
7758
7759 * play/cookie1.el (cookie): New custom group.
7760 (cookie-file): New option.
7761 (cookie-check-file): New function.
7762 (cookie): Make it interactive. Make start and end messages optional.
7763 Interactively, display the result. Default to cookie-file.
7764 (cookie-insert): Default to cookie-file.
7765 (cookie-snarf): Make start and end messages optional.
7766 Default to cookie-file. Use with-temp-buffer.
7767 (cookie-read): Rename from read-cookie.
7768 Make start and end messages optional. Default to cookie-file.
7769 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
7770 Do not autoload it.
7771 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
7772 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
7773
7774 2013-06-21 Leo Liu <sdl.web@gmail.com>
7775
7776 * progmodes/octave.el (octave-mode): Backward compatibility fix.
7777
7778 2013-06-21 Glenn Morris <rgm@gnu.org>
7779
7780 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
7781
7782 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
7783 Daniel Hackney <dan@haxney.org>
7784
7785 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
7786 Consolidate the single-file vs tarball code.
7787 (package-desc-suffix): New function.
7788 (package-desc-full-name): Don't bother inlining it.
7789 (package-load-descriptor): Return the new package-desc.
7790 (package-mark-obsolete): Remove unused arg `package'.
7791 (package-unpack): Make it work for single files as well.
7792 Make it update package-alist.
7793 (package--make-autoloads-and-stuff): Rename from
7794 package--make-autoloads-and-compile. Don't compile any more.
7795 (package--compile): New function.
7796 (package-generate-description-file): New function, extracted from
7797 package-unpack-single.
7798 (package-unpack-single): Remove.
7799 (package--with-work-buffer): Add indentation and debugging info.
7800 (package-download-single): Remove.
7801 (package-install-from-archive): Rename from package-download-tar, make
7802 it take a pkg-desc, and make it work for single files as well.
7803 (package-download-transaction): Simplify.
7804 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
7805 external tar program.
7806 (package-install-from-buffer): Remove `pkg-desc' argument.
7807 Use package-tar-file-info for tar-mode buffers.
7808 (package-install-file): Simplify accordingly.
7809 (package-archive-base): Change to take a pkg-desc.
7810 * tar-mode.el (tar--check-descriptor): New function, extracted from
7811 tar-get-descriptor.
7812 (tar-get-descriptor): Use it.
7813 (tar-get-file-descriptor): New function.
7814 (tar--extract): New function, extracted from tar-extract.
7815 (tar--extract): Use it.
7816 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
7817 case the summary uses non-ascii. Adjust to new calling convention of
7818 package-tar-file-info.
7819
7820 2013-06-21 Leo Liu <sdl.web@gmail.com>
7821
7822 * comint.el (comint-redirect-results-list-from-process):
7823 Fix random delay. (Bug#14681)
7824
7825 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
7826
7827 * profiler.el (profiler-format-number): Use log, not log10.
7828
7829 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
7830
7831 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
7832
7833 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
7834
7835 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
7836 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
7837 yet available.
7838 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
7839 (AUTOGENEL): ... here.
7840 * emacs-lisp/cl-macs.el (cl--sublis): New function.
7841 (cl--defsubst-expand): Use it.
7842
7843 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
7844
7845 * subr.el (log10): Move here from C code, and declare as obsolete.
7846 All uses of (log10 X) replaced with (log X 10).
7847
7848 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
7849
7850 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
7851 Declare with `defvar-local'.
7852 (tabulated-list-use-header-line, tabulated-list-entries)
7853 (tabulated-list-padding, tabulated-list-printer)
7854 (tabulated-list-sort-key): Declare with `defvar-local'.
7855 (tabulated-list-init-header, tabulated-list-print-fake-header):
7856 Use `setq-local'.
7857
7858 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
7859
7860 * arc-mode.el (archive-mode): Add `archive-write-file' to
7861 `write-contents-functions' also for remote files. (Bug#14652)
7862
7863 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
7864
7865 * cus-edit.el (custom-commands): Fix typos.
7866 (custom-display): Fix tooltip text.
7867 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
7868 Fix typos in docstrings.
7869 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
7870 (custom-unlispify-menu-entry, custom-magic-value-create)
7871 (custom-add-see-also, custom-group-value-create): Use ?\s.
7872 (custom-guess-type, customize-apropos, editable-field)
7873 (custom-face-value-create): Use `string-match-p'.
7874 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
7875
7876 * custom.el (custom-load-symbol): Use `string-match-p'.
7877
7878 * ansi-color.el: Convert to lexical binding.
7879 (ansi-colors): Fix URL.
7880 (ansi-color-context, ansi-color-context-region): Use defvar-local.
7881 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
7882 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
7883
7884 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
7885
7886 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
7887
7888 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
7889
7890 2013-06-19 Tom Tromey <tromey@redhat.com>
7891
7892 * net/eww.el (eww-top-url): Remove.
7893 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
7894 (eww-render): Set new variables. Don't set eww-top-url.
7895 (eww-handle-link): Handle "prev", "home", and "contents".
7896 Downcase the rel text.
7897 (eww-top-url): Choose best top URL.
7898
7899 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
7900
7901 * net/eww.el: Rewrite to implement form elements "by hand" instead of
7902 relying in widget.el. Using widget.el leads to too many
7903 user interface inconsistencies.
7904 (eww-self-insert): Implement entering commands in text fields.
7905 (eww-process-text-input): New function to make text input field editing
7906 work.
7907 (eww-submit): Rewrite to use the new-style form methods.
7908 (eww-select-display): Display the correct selected item.
7909 (eww-change-select): Implement changing the select value.
7910 (eww-toggle-checkbox): Implement radio/checkboxes.
7911 (eww-update-field): Fix compilation error.
7912 (eww-tag-textarea): Implement <textarea>.
7913
7914 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
7915 we don't shadow mode-specific bindings.
7916
7917 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
7918 nothing to push.
7919
7920 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
7921
7922 2013-06-19 Glenn Morris <rgm@gnu.org>
7923
7924 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
7925
7926 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
7927
7928 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
7929 not needed.
7930
7931 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
7932
7933 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
7934
7935 * net/browse-url.el (browse-url-browser-function):
7936 `eww-browse-url' has the right calling signature, `eww' does not.
7937
7938 2013-06-19 Glenn Morris <rgm@gnu.org>
7939
7940 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
7941 Only eval autoloaded macros.
7942 (byte-compile-autoload): Only give the macro warning for macros.
7943
7944 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
7945 (ps-underlined-faces): Declare.
7946
7947 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
7948 (speedbar-add-supported-extension): Declare.
7949
7950 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
7951 Don't include a date stamp in the header of the generated file;
7952 it leads to needless differences between output files.
7953
7954 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
7955
7956 * net/secrets.el (secrets-struct-secret-content-type):
7957 Replace check of introspection data by a test call of "CreateItem".
7958 Some servers do not offer introspection.
7959
7960 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
7961
7962 * electric.el (electric-pair-mode): Improve interaction with
7963 electric-layout-mode.
7964 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
7965 (electric-pair-syntax): Use text-mode-syntax-table in comments
7966 and strings.
7967 (electric-pair--insert): New function.
7968 (electric-pair-post-self-insert-function): Use it and
7969 electric--after-char-pos.
7970
7971 2013-06-19 Leo Liu <sdl.web@gmail.com>
7972
7973 * progmodes/octave.el (octave-help): Fix regexp.
7974
7975 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
7976
7977 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
7978 (shr-table-horizontal-line): Allow nil as a value, and change the
7979 default.
7980 (shr-insert-table-ruler): Respect the nil value.
7981
7982 2013-06-18 Tom Tromey <tromey@barimba>
7983
7984 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
7985 New defvars.
7986 (eww-open-file): New defun.
7987 (eww-render): Initialize new variables.
7988 (eww-display-html): Handle "link" and "a".
7989 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
7990 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
7991 (eww-back-url): Rename from eww-previous-url.
7992 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
7993 New defuns.
7994
7995 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
7996
7997 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
7998 Distinguish ternary operator tokens from slash symbol and slash
7999 char literal.
8000
8001 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
8002
8003 Convert symbol prettification into minor mode and global minor mode.
8004
8005 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
8006 `prog-prettify-symbols', and make a local defvar instead of defcustom.
8007 (prettify-symbols--keywords): Rename from
8008 `prog-prettify-symbols-alist' and make a local defvar.
8009 (prettify-symbols--compose-symbol): Rename from
8010 `prog--prettify-font-lock-compose-symbol'.
8011 (prettify-symbols--make-keywords): Rename from
8012 `prog-prettify-font-lock-symbols-keywords' and simplify.
8013 (prog-prettify-install): Remove.
8014 (prettify-symbols-mode): New minor mode, based on
8015 `prog-prettify-install'.
8016 (turn-on-prettify-symbols-mode): New function.
8017 (global-prettify-symbols-mode): New globalized minor mode.
8018
8019 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
8020 * progmodes/cfengine.el (cfengine3-mode):
8021 * progmodes/perl-mode.el (perl-mode): Don't call
8022 `prog-prettify-install'; set `prettify-symbols-alist' instead.
8023
8024 2013-06-18 Juri Linkov <juri@jurta.org>
8025
8026 * files-x.el (modify-file-local-variable-message): New function.
8027 (modify-file-local-variable)
8028 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
8029 and call `modify-file-local-variable-message' when it's non-nil.
8030 (add-file-local-variable, delete-file-local-variable)
8031 (add-file-local-variable-prop-line)
8032 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
8033 and use it. (Bug#9820)
8034
8035 2013-06-18 Juri Linkov <juri@jurta.org>
8036
8037 * emulation/vi.el (vi-shell-op):
8038 * emulation/vip.el (vip-execute-com, ex-command):
8039 * emulation/viper-cmd.el (viper-exec-bang):
8040 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
8041 the call of `shell-command-on-region'. (Bug#14637)
8042
8043 * simple.el (shell-command-on-region): Doc fix.
8044
8045 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8046
8047 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
8048 (bug#14633).
8049
8050 2013-06-18 Glenn Morris <rgm@gnu.org>
8051
8052 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
8053
8054 * newcomment.el (comment-search-forward, comment-search-backward):
8055 Doc fix. (Bug#14376)
8056
8057 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
8058
8059 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
8060 (buffer-face-mode-invoke): Doc fix.
8061
8062 2013-06-18 Matthias Meulien <orontee@gmail.com>
8063
8064 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
8065 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
8066
8067 2013-06-18 Glenn Morris <rgm@gnu.org>
8068
8069 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
8070 Replace obsolete function generic-make-keywords with its expansion.
8071
8072 * progmodes/python.el (ffap-alist): Declare.
8073
8074 * textmodes/reftex.el (bibtex-mode-map): Declare.
8075
8076 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8077
8078 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
8079 (package-unpack, package-unpack-single): Return the pkg-dir.
8080 (package-download-transaction): Use it to update package-alist.
8081
8082 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
8083
8084 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
8085 possible choice.
8086
8087 2013-06-17 Juri Linkov <juri@jurta.org>
8088
8089 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
8090
8091 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
8092
8093 * emacs-lisp/package.el (package-load-descriptor):
8094 Remove `with-syntax-table' call, `read' doesn't need it.
8095 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
8096
8097 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
8098
8099 * startup.el (command-line): Expand package name returned by
8100 `package--description-file' (bug#14639).
8101
8102 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
8103
8104 * emacs-lisp/package.el (package-load-descriptor): Do not call
8105 `emacs-lisp-mode', just use its syntax table.
8106
8107 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
8108
8109 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
8110 `font-lock-extra-managed-props' if any prettifying keyword is added.
8111 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
8112 (prog-mode): Use `setq-local'.
8113
8114 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
8115
8116 * international/characters.el (standard-case-table): Set syntax of ?»
8117 and ?« to punctuation.
8118
8119 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
8120
8121 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
8122 Save relevant match data before calling `syntax-ppss' (bug#14595).
8123
8124 2013-06-15 Juri Linkov <juri@jurta.org>
8125
8126 * files-x.el (modify-file-local-variable-prop-line): Add local
8127 variables to the end of the existing comment on the first line.
8128 Use `file-auto-mode-skip' to skip interpreter magic line,
8129 and also skip XML declaration.
8130
8131 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
8132
8133 * startup.el (package--builtin-versions): New var.
8134 (package-subdirectory-regexp): Remove.
8135 (package--description-file): Hard code its value instead.
8136
8137 * emacs-lisp/package.el: Don't activate packages older than builtin.
8138 (package-obsolete-list): Rename from package-obsolete-alist, and make
8139 it into a simple list of package-desc.
8140 (package-strip-version): Remove.
8141 (package-built-in-p): Use package--builtin-versions.
8142 (package-mark-obsolete): Simplify.
8143 (package-process-define-package): Mark it obsolete if older than the
8144 builtin version.
8145 (package-handle-response): Use line-end-position.
8146 (package-read-archive-contents, package--download-one-archive):
8147 Simplify.
8148 (package--add-to-archive-contents): Skip if older than the builtin or
8149 installed version.
8150 (package-menu-describe-package): Fix last change.
8151 (package-list-unversioned): New var.
8152 (package-menu--generate): Use it.
8153
8154 * emacs-lisp/autoload.el: Manage package--builtin-versions.
8155 (autoload--insert-text, autoload--insert-cookie-text): New functions.
8156 (autoload-builtin-package-versions): New variable.
8157 (autoload-generate-file-autoloads): Use them.
8158 Remove the list of autoloaded functions/macros from the
8159 (autoload...) comments.
8160
8161 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
8162
8163 2013-06-15 Eli Zaretskii <eliz@gnu.org>
8164
8165 * simple.el (line-move-partial): Don't jump to the next screen
8166 line as soon as it becomes visible. Instead, continue enlarging
8167 the vscroll until the portion of a tall screen line that's left on
8168 display is about the height of the frame's default font.
8169 (Bug#14567)
8170
8171 2013-06-15 Glenn Morris <rgm@gnu.org>
8172
8173 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
8174 compilation-error-regexp-alist void, or local while let-bound.
8175
8176 * progmodes/make-mode.el (makefile-mode-syntax-table):
8177 Treat "=" as punctuation. (Bug#14614)
8178
8179 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
8180
8181 * help-fns.el (describe-variable):
8182 Add extra line for permanent-local variables.
8183
8184 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
8185
8186 * progmodes/scheme.el (scheme-font-lock-keywords-2):
8187 Add export, import, library. (Bug#9164)
8188 (library): Set indent function.
8189
8190 2013-06-14 Glenn Morris <rgm@gnu.org>
8191
8192 * term/xterm.el (xterm--query):
8193 Stop after first matching handler. (Bug#14615)
8194
8195 2013-06-14 Ivan Kanis <ivan@kanis.fr>
8196
8197 Add support for dired in saveplace.
8198 * dired.el (dired-initial-position-hook): New variable.
8199 (dired-initial-position): Call hook to place cursor position.
8200 * saveplace.el (save-place-to-alist): Add dired position.
8201 (save-place-dired-hook): New function.
8202
8203 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
8204
8205 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
8206 through a symbol rather than letrec.
8207
8208 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
8209 (package-desc): Add `dir' field.
8210 (package-desc-full-name): New function.
8211 (package-load-descriptor): Combine the two arguments. Don't use `load'.
8212 (package-maybe-load-descriptor): Remove.
8213 (package-load-all-descriptors): Just call package-load-descriptor.
8214 (package--disabled-p): New function.
8215 (package-desc-vers, package-desc-doc): Remove aliases.
8216 (package--dir): Remove function.
8217 (package-activate): Check if a package is disabled.
8218 (package-process-define-package): New function, extracted from
8219 define-package.
8220 (define-package): Turn into a place holder.
8221 (package-unpack-single, package-tar-file-info):
8222 Use package--description-file.
8223 (package-compute-transaction): Use package--disabled-p.
8224 (package-download-transaction): Don't call
8225 package-maybe-load-descriptor since they're all loaded anyway.
8226 (package-install): Change argument to be a pkg-desc.
8227 (package-delete): Use a single pkg-desc argument.
8228 (describe-package-1): Use package-desc-dir instead of package--dir.
8229 Use package-desc property instead of package-symbol.
8230 (package-install-button-action): Adjust accordingly.
8231 (package--push): Rewrite.
8232 (package-menu--print-info): Adjust accordingly. Change the ID format
8233 to be a pkg-desc.
8234 (package-menu-describe-package, package-menu-get-status)
8235 (package-menu--find-upgrades, package-menu-mark-upgrades)
8236 (package-menu-execute, package-menu--name-predicate):
8237 Adjust accordingly.
8238 * startup.el (package--description-file): New function.
8239 (command-line): Use it.
8240 * emacs-lisp/package-x.el (package-upload-buffer-internal):
8241 Use package-desc-version.
8242
8243 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
8244 (byte-compile-preprocess): Use it.
8245 (byte-compile-file-form-defalias): Try a bit harder to use macros we
8246 can't quite recognize.
8247 (byte-compile-add-to-list): Remove.
8248 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
8249 (cconv-closure-convert): Add assertion.
8250
8251 * emacs-lisp/map-ynp.el: Use lexical-binding.
8252 (map-y-or-n-p): Remove unused vars `tail' and `object'.
8253 Factor out some repeated code.
8254
8255 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
8256
8257 * subr.el (with-eval-after-load): New macro.
8258 (eval-after-load): Allow form to be a function.
8259 take advantage of lexical-binding.
8260 (do-after-load-evaluation): Use dolist and adjust to new format.
8261 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
8262
8263 2013-06-13 Juri Linkov <juri@jurta.org>
8264
8265 * replace.el (perform-replace): Display "symbol " and other search
8266 modes from `isearch-message-prefix' in the *Help* buffer.
8267
8268 * isearch.el (isearch-query-replace): Add " symbol" and other
8269 possible search modes from `isearch-message-prefix' to the prompt.
8270 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
8271 when reading a regexp to collect.
8272
8273 2013-06-13 Juri Linkov <juri@jurta.org>
8274
8275 * isearch.el (word-search-regexp): Match whitespace if the search
8276 string begins or ends in whitespace. The LAX arg is applied to
8277 both ends of the search string. Use `regexp-quote' and explicit
8278 \< and \> instead of \b. Use \` and \' instead of ^ and $.
8279 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
8280 boundaries are replaced with symbol boundaries, and characters
8281 between symbols match non-word non-symbol syntax. (Bug#14602)
8282
8283 2013-06-13 Juri Linkov <juri@jurta.org>
8284
8285 * isearch.el (isearch-del-char): Don't exceed the length of
8286 `isearch-string' by the prefix arg. (Bug#14563)
8287
8288 2013-06-13 Juri Linkov <juri@jurta.org>
8289
8290 * isearch.el (isearch-yank-word, isearch-yank-line)
8291 (isearch-char-by-name, isearch-quote-char)
8292 (isearch-printing-char, isearch-process-search-char):
8293 Add optional count prefix arg. (Bug#14563)
8294
8295 * international/isearch-x.el
8296 (isearch-process-search-multibyte-characters):
8297 Add optional count prefix arg.
8298
8299 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
8300
8301 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
8302 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
8303 lexical-binding.
8304
8305 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
8306
8307 * subr.el (set-temporary-overlay-map): Add on-exit argument.
8308
8309 2013-06-13 Glenn Morris <rgm@gnu.org>
8310
8311 * startup.el (tty-handle-args):
8312 Don't just discard "--" and anything after. (Bug#14608)
8313
8314 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
8315
8316 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
8317
8318 Implement changes in Secret Service API. Make it backward compatible.
8319 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
8320 (secrets-create-item): Use it. Prefix properties with interface.
8321
8322 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
8323
8324 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
8325 (term-emulate-terminal): Respect term-suppress-hard-newline.
8326
8327 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
8328
8329 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
8330 Only remove a `thumb-file' overlay. (Bug#14548)
8331
8332 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
8333
8334 * mail/reporter.el (reporter-submit-bug-report):
8335 Handle missing package-name. (Bug#14600)
8336
8337 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8338
8339 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
8340 (reftex-citation-prompt, reftex-default-bibliography)
8341 (reftex-bib-or-thebib, reftex-get-bibfile-list)
8342 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
8343 (reftex-bib-sort-author, reftex-bib-sort-year)
8344 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
8345 (reftex-extract-bib-entries-from-thebibliography)
8346 (reftex-get-bibkey-default, reftex-get-bib-names)
8347 (reftex-parse-bibtex-entry, reftex-get-bib-field)
8348 (reftex-format-bib-entry, reftex-parse-bibitem)
8349 (reftex-format-bibitem, reftex-do-citation)
8350 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
8351 (reftex-restrict-bib-matches, reftex-extract-bib-file)
8352 (reftex-insert-bib-matches, reftex-format-citation)
8353 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
8354 (reftex-create-bibtex-file): Add docstrings, mostly by converting
8355 existing comments into docstrings.
8356
8357 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
8358
8359 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
8360
8361 2013-06-12 Andreas Schwab <schwab@suse.de>
8362
8363 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
8364 for auto-save files.
8365
8366 2013-06-12 Glenn Morris <rgm@gnu.org>
8367
8368 * ido.el (ido-delete-ignored-files): Remove.
8369 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
8370 Go back to calling ido-ignore-item-p directly.
8371
8372 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
8373
8374 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
8375
8376 * ido.el (ido-delete-ignored-files): New function,
8377 split from ido-make-file-list-1.
8378 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
8379 (ido-make-file-list-1): Use ido-delete-ignored-files.
8380
8381 2013-06-12 Leo Liu <sdl.web@gmail.com>
8382
8383 * progmodes/octave.el (inferior-octave-startup)
8384 (inferior-octave-completion-table)
8385 (inferior-octave-track-window-width-change)
8386 (octave-eldoc-function-signatures, octave-help)
8387 (octave-find-definition): Use single quoted strings.
8388 (inferior-octave-startup-args): Change default value.
8389 (inferior-octave-startup): Do not hard code "-i" and
8390 "--no-line-editing".
8391 (inferior-octave-resync-dirs): Add optional arg NOERROR.
8392 (inferior-octave-directory-tracker): Use it.
8393 (octave-goto-function-definition): Robustify.
8394 (octave-help): Support highlighting operators in 'See also'.
8395 (octave-find-definition): Find subfunctions only in Octave mode.
8396
8397 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
8398
8399 * help-fns.el (help-fns--compiler-macro): If the handler function is
8400 named, then put a link to it.
8401 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
8402 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
8403 (cl-typep): Use it.
8404 (cl-eval-when): Simplify debug spec.
8405 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
8406 compiler-macro function instead of setting `compiler-macro-file'.
8407
8408 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
8409
8410 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
8411 * vc/vc-hooks.el (vc-stay-local): Doc fix.
8412
8413 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
8414 Daniel Hackney <dan@haxney.org>
8415
8416 First part of Daniel Hackney's patch to package.el.
8417 * emacs-lisp/package.el: Use defstruct.
8418 (package-desc): New, main struct.
8419 (package--bi-desc, package--ac-desc): New structs, used to describe the
8420 format in external files.
8421 (package-desc-vers): Replace with package-desc-version accessor.
8422 (package-desc-doc): Replace with package-desc-summary accessor.
8423 (package-activate-1): Remove `package' arg since the pkg-vec now
8424 includes the name.
8425 (define-package): Use package-desc-from-define.
8426 (package-unpack-single): Change file-name arg to be a symbol.
8427 (package--add-to-archive-contents): Use package-desc-create and new
8428 accessor functions to package--ac-desc.
8429 (package-buffer-info, package-tar-file-info): Return a package-desc.
8430 (package-install-from-buffer): Remove `type' argument. Change pkg-info
8431 arg to be a package-desc.
8432 (package-install-file): Adjust accordingly. Use \' to match EOS.
8433 (package--from-builtin): New function.
8434 (describe-package-1, package-menu--generate): Use it.
8435 (package--make-autoloads-and-compile): Change name arg to be a symbol.
8436 (package-generate-autoloads): Idem and return the name of the file.
8437 * emacs-lisp/package-x.el (package-upload-buffer-internal):
8438 Change pkg-info arg to be a package-desc.
8439 Use package-make-ac-desc.
8440 (package-upload-file): Use \' to match EOS.
8441 * finder.el (finder-compile-keywords): Use package-make-builtin.
8442
8443 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
8444
8445 * vc/vc.el (vc-deduce-fileset): Change error message.
8446 (vc-read-backend): New function.
8447 (vc-next-action): Use it.
8448
8449 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
8450
8451 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
8452 (prolog-font-lock-keywords): Use regexp-opt instead.
8453 Don't manually highlight strings.
8454 (prolog-mode-variables): Simplify comment-start-skip.
8455 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
8456
8457 * emacs-lisp/generic.el (generic--normalise-comments)
8458 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
8459 (generic-mode-set-comments): Use them.
8460 (generic-bracket-support): Use setq-local.
8461 (generic-make-keywords-list): Declare obsolete.
8462
8463 2013-06-11 Glenn Morris <rgm@gnu.org>
8464
8465 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
8466 Prettify after setting font-lock-defaults. (Bug#14574)
8467
8468 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
8469
8470 * replace.el (query-replace, occur-read-regexp-defaults-function)
8471 (replace-search):
8472 * subr.el (declare-function, number-sequence, local-set-key)
8473 (substitute-key-definition, locate-user-emacs-file)
8474 (with-silent-modifications, split-string, eval-after-load):
8475 Fix typos, remove unneeded backslashes and reflow some docstrings.
8476
8477 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
8478
8479 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
8480 default for Elisp files.
8481
8482 2013-06-11 Glenn Morris <rgm@gnu.org>
8483
8484 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
8485 although define-derived-mode was doing this anyway. (Bug#14583)
8486
8487 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
8488
8489 * allout.el (allout-encryption-plaintext-sanitization-regexps):
8490 Fix make-variable-buffer-local call to refer to the correct variable.
8491
8492 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
8493
8494 * eshell/em-term.el (eshell-visual-commands)
8495 (eshell-visual-subcommands, eshell-visual-options):
8496 Add summary line to docstrings. Add cross-references.
8497
8498 2013-06-10 Glenn Morris <rgm@gnu.org>
8499
8500 * epa.el (epa-read-file-name): New function. (Bug#14510)
8501 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
8502
8503 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
8504
8505 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
8506 output redirection to be ignored with visual commands.
8507
8508 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
8509
8510 * eshell/em-term.el (eshell-visual-command-p): New function.
8511 (eshell-term-initialize): Move long lambda to separate function
8512 eshell-visual-command-p.
8513 * eshell/em-dirs.el (eshell-dirs-initialise):
8514 * eshell/em-script.el (eshell-script-initialize):
8515 Add missing #' to lambda.
8516
8517 2013-06-08 Leo Liu <sdl.web@gmail.com>
8518
8519 * progmodes/octave.el (octave-add-log-current-defun): New function.
8520 (octave-mode): Set add-log-current-defun-function.
8521 (octave-goto-function-definition): Do not move point if not found.
8522 (octave-find-definition): Enhance to try subfunctions first.
8523
8524 2013-06-08 Glenn Morris <rgm@gnu.org>
8525
8526 * emacs-lisp/bytecomp.el (byte-compile-char-before)
8527 (byte-compile-backward-char, byte-compile-backward-word):
8528 Improve previous change, to handle non-explicit nil.
8529
8530 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
8531
8532 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
8533 (smie--opener/closer-at-point): New function.
8534 (smie--matching-block-data): Use it. Don't match from right after an
8535 opener or right before a closer. Obey smie-blink-matching-inners.
8536 Don't signal a mismatch for repeated inners like "switch..case..case".
8537
8538 2013-06-07 Leo Liu <sdl.web@gmail.com>
8539
8540 * progmodes/octave.el (octave-mode): Set comment-use-global-state
8541 to t. (Bug#14303)
8542 (octave-function-header-regexp): Fix. (Bug#14570)
8543 (octave-help-mode-finish-hook, octave-help-mode-finish):
8544 Remove. Just use temp-buffer-show-hook.
8545
8546 * newcomment.el (comment-search-backward): Revert last change.
8547 (Bug#14434)
8548
8549 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
8550
8551 2013-06-07 Eli Zaretskii <eliz@gnu.org>
8552
8553 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
8554 through xargs, to avoid failure due to MS-Windows limitations on
8555 command-line length.
8556
8557 2013-06-06 Glenn Morris <rgm@gnu.org>
8558
8559 * font-lock.el (lisp-font-lock-keywords-2):
8560 Treat user-error like error.
8561
8562 * emacs-lisp/bytecomp.el (byte-compile-char-before)
8563 (byte-compile-backward-char, byte-compile-backward-word):
8564 Handle explicit nil arguments. (Bug#14565)
8565
8566 2013-06-05 Alan Mackenzie <acm@muc.de>
8567
8568 * isearch.el (isearch-allow-prefix): New user option.
8569 (isearch-other-meta-char): Don't exit isearch when a prefix
8570 argument is typed whilst `isearch-allow-prefix' is non-nil.
8571 (Bug#9706)
8572
8573 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
8574
8575 * autorevert.el (auto-revert-notify-handler): Use memq.
8576 Hide assertion failure.
8577
8578 * skeleton.el: Use cl-lib.
8579 (skeleton-further-elements): Use defvar-local.
8580 (skeleton-insert): Use cl-progv.
8581
8582 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
8583
8584 * progmodes/prog-mode.el (prog-prettify-symbols)
8585 (prog-prettify-install): Update docstrings.
8586
8587 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
8588
8589 * simple.el: Move all the prog-mode code to prog-mode.el.
8590 * progmodes/prog-mode.el: New file.
8591 * loadup.el: Add prog-mode.el.
8592
8593 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
8594
8595 * simple.el (prog-prettify-symbols): Add version.
8596 (prog-prettify-install): Add convenience function to prettify symbols.
8597
8598 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
8599 (perl--augmented-font-lock-keywords-1)
8600 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
8601 variables and use it.
8602
8603 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
8604 (cfengine3-mode): Remove unneeded variable and use it.
8605
8606 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
8607 (lisp--augmented-font-lock-keywords-1)
8608 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
8609 Remove unneeded variables and use it.
8610
8611 2013-06-05 João Távora <joaotavora@gmail.com>
8612
8613 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
8614 to point when opening the connection. (Bug#14380)
8615
8616 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
8617
8618 * subr.el (load-history-regexp, load-history-filename-element)
8619 (eval-after-load, after-load-functions, do-after-load-evaluation)
8620 (eval-next-after-load, display-delayed-warnings)
8621 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
8622 definition of save-match-data.
8623 (overriding-local-map): Remove accidental obsolescence declaration.
8624
8625 * emacs-lisp/edebug.el (edebug-result): Move before first use.
8626
8627 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
8628
8629 Generalize symbol prettify support to prog-mode and implement it
8630 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
8631 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
8632 (prog--prettify-font-lock-compose-symbol)
8633 (prog-prettify-font-lock-symbols-keywords): New variables and
8634 functions to support symbol prettification.
8635 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
8636 (lisp--augmented-font-lock-keywords-1)
8637 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
8638 (lisp--prettify-symbols-alist): Implement prettify of lambda.
8639 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
8640 (cfengine3--prettify-symbols-alist, cfengine3-mode):
8641 Implement prettify of -> => :: strings.
8642 * progmodes/perl-mode.el (perl-prettify-symbols)
8643 (perl--font-lock-compose-symbol)
8644 (perl--font-lock-symbols-keywords): Move to prog-mode.
8645 (perl--prettify-symbols-alist): Prettify -> => :: strings.
8646 (perl-font-lock-keywords-1)
8647 (perl-font-lock-keywords-2): Remove explicit prettify support.
8648 (perl--augmented-font-lock-keywords)
8649 (perl--augmented-font-lock-keywords-1)
8650 (perl--augmented-font-lock-keywords-2, perl-mode):
8651 Implement prettify support.
8652
8653 2013-06-05 Leo Liu <sdl.web@gmail.com>
8654
8655 Re-implement smie matching block highlight using
8656 show-paren-data-function. (Bug#14395)
8657 * emacs-lisp/smie.el (smie-matching-block-highlight)
8658 (smie--highlight-matching-block-overlay)
8659 (smie--highlight-matching-block-lastpos)
8660 (smie-highlight-matching-block)
8661 (smie-highlight-matching-block-mode): Remove.
8662 (smie--matching-block-data-cache): New variable.
8663 (smie--matching-block-data): New function.
8664 (smie-setup): Use smie--matching-block-data for
8665 show-paren-data-function.
8666
8667 * progmodes/octave.el (octave-mode-menu): Fix.
8668 (octave-find-definition): Skip garbage lines.
8669
8670 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
8671
8672 Fix compilation error with simultaneous dynamic+lexical scoping.
8673 Add warning when a defvar appears after the first let-binding.
8674 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
8675 (byte-compile-close-variables): Initialize it.
8676 (byte-compile--declare-var): New function.
8677 (byte-compile-file-form-defvar)
8678 (byte-compile-file-form-define-abbrev-table)
8679 (byte-compile-file-form-custom-declare-variable): Use it.
8680 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
8681 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
8682 (byte-compile-bind): Handle dynamic bindings that shadow
8683 lexical bindings.
8684 (byte-compile-unbind): Make arg non-optional.
8685 (byte-compile-let): Simplify.
8686 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
8687 (cconv--analyse-function, cconv-analyse-form): Populate it.
8688 Protect byte-compile-bound-variables to limit the scope of defvars.
8689 (cconv-analyse-form): Add missing rule for (defvar <foo>).
8690 Remove unneeded rule for `declare'.
8691
8692 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
8693 so as to avoid depending on cl-adjoin at run-time.
8694 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
8695
8696 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
8697 (macroexp--warn-and-return): Use it.
8698
8699 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
8700
8701 * lisp/subr.el: Convert to lexical binding.
8702 (overriding-local-map): Make obsolete.
8703 (add-to-list): Doc fix. Add compiler macro.
8704 (read-key): Swap values of local maps.
8705
8706 2013-06-05 Leo Liu <sdl.web@gmail.com>
8707
8708 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
8709
8710 2013-06-04 Leo Liu <sdl.web@gmail.com>
8711
8712 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
8713 (compilation-auto-jump): Suppress the "Mark set" message to give
8714 way to exit message.
8715
8716 2013-06-04 Alan Mackenzie <acm@muc.de>
8717
8718 Remove faulty optimisation from indentation calculation.
8719 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
8720 search limit based on 2000 characters back from indent-point.
8721
8722 2013-06-03 Tassilo Horn <tsdh@gnu.org>
8723
8724 * eshell/em-term.el (cl-lib): Require `cl-lib'.
8725
8726 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
8727
8728 * emacs-lisp/lisp.el: Use lexical-binding.
8729 (lisp--local-variables-1, lisp--local-variables): New functions.
8730 (lisp--local-variables-completion-table): New var.
8731 (lisp-completion-at-point): Use it complete let-bound vars.
8732
8733 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
8734 eagerly (bug#14422).
8735
8736 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
8737
8738 * autorevert.el (auto-revert-notify-enabled)
8739 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
8740 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
8741 (auto-revert-notify-handler): Handle also gfilenotify.
8742
8743 * subr.el (file-notify-handle-event): New defun. Replacing ...
8744 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
8745 Remove.
8746
8747 2013-06-03 Juri Linkov <juri@jurta.org>
8748
8749 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
8750 `M-s h .'. (Bug#14427)
8751
8752 * hi-lock.el (highlight-symbol-at-point): New alias for the new
8753 command `hi-lock-face-symbol-at-point'.
8754 (hi-lock-face-symbol-at-point): New command.
8755 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
8756 (hi-lock-menu): Add `highlight-symbol-at-point'.
8757 (hi-lock-mode): Doc fix.
8758
8759 * isearch.el (isearch-forward-symbol-at-point): New command.
8760 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
8761 (isearch-highlight-regexp): Add a regexp which matches
8762 words/symbols for word/symbol mode.
8763
8764 * subr.el (find-tag-default-bounds): New function with the body
8765 mostly moved from `find-tag-default'.
8766 (find-tag-default): Move most code to `find-tag-default-bounds',
8767 call it and apply `buffer-substring-no-properties' afterwards.
8768
8769 2013-06-03 Tassilo Horn <tsdh@gnu.org>
8770
8771 * eshell/em-term.el (eshell-term-initialize):
8772 Use `cl-intersection' rather than `intersection'.
8773
8774 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
8775
8776 * vc/log-view.el: Doc fix.
8777 (log-view-mode-map): Copy keymap from `special-mode-map'.
8778
8779 2013-06-02 Eric Ludlam <zappo@gnu.org>
8780
8781 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
8782 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
8783 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
8784 (eieio-unbound, eieio-default-superclass)
8785 (eieio--define-field-accessors, method-static, method-before)
8786 (method-primary, method-after, method-num-lists)
8787 (method-generic-before, method-generic-primary)
8788 (method-generic-after, method-num-slots)
8789 (eieio-specialized-key-to-generic-key)
8790 (eieio--check-type, class-v, class-p)
8791 (eieio-class-name, define-obsolete-function-alias)
8792 (eieio-class-parents-fast, eieio-class-children-fast)
8793 (same-class-fast-p, class-constructor, generic-p)
8794 (generic-primary-only-p, generic-primary-only-one-p)
8795 (class-option-assoc, class-option, eieio-object-p)
8796 (class-abstract-p, class-method-invocation-order)
8797 (eieio-defclass-autoload-map, eieio-defclass-autoload)
8798 (eieio-class-un-autoload, eieio-defclass)
8799 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
8800 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
8801 (eieio--defgeneric-init-form, eieio-defgeneric-form)
8802 (eieio-defgeneric-reset-generic-form)
8803 (eieio-defgeneric-form-primary-only)
8804 (eieio-defgeneric-reset-generic-form-primary-only)
8805 (eieio-defgeneric-form-primary-only-one)
8806 (eieio-defgeneric-reset-generic-form-primary-only-one)
8807 (eieio-unbind-method-implementations)
8808 (eieio--defmethod, eieio--typep)
8809 (eieio-perform-slot-validation, eieio-validate-slot-value)
8810 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
8811 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
8812 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
8813 (eieio-slot-name-index, eieio-class-slot-name-index)
8814 (eieio-set-defaults, eieio-initarg-to-attribute)
8815 (eieio-attribute-to-initarg, eieio-c3-candidate)
8816 (eieio-c3-merge-lists, eieio-class-precedence-c3)
8817 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
8818 (eieio-class-precedence-list, eieio-generic-call-methodname)
8819 (eieio-generic-call-arglst, eieio-generic-call-key)
8820 (eieio-generic-call-next-method-list)
8821 (eieio-pre-method-execution-functions, eieio-generic-call)
8822 (eieio-generic-call-primary-only, eieiomt-method-list)
8823 (eieiomt-optimizing-obarray, eieiomt-install)
8824 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
8825 (eieio-generic-form, eieio-defmethod, make-obsolete)
8826 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
8827 (defclass): Remove `eval-and-compile' from macro.
8828 (call-next-method, shared-initialize): Instead of using
8829 `scoped-class' variable, use new eieio--scoped-class, and
8830 eieio--with-scoped-class.
8831 (initialize-instance): Rename local variable 'scoped-class' to
8832 'this-class' to remove ambiguitity from old global.
8833
8834 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
8835 eieio.el.
8836 (eieio--scoped-class-stack): New variable.
8837 (eieio--scoped-class): New fcn.
8838 (eieio--with-scoped-class): New scoping macro.
8839 (eieio-defclass): Use pushnew instead of add-to-list.
8840 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
8841 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
8842 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
8843 `scoped-class' variable, use new eieio--scoped-class, and
8844 eieio--with-scoped-class.
8845
8846 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
8847
8848 2013-06-02 Tassilo Horn <tsdh@gnu.org>
8849
8850 * eshell/esh-ext.el (eshell-external-command): Pass args to
8851 `eshell-find-interpreter'.
8852 (eshell-find-interpreter): Add new second parameter ARGS.
8853
8854 * eshell/em-script.el (eshell-script-initialize): Add second arg
8855 to the function added as MATCH to `eshell-interpreter-alist'.
8856
8857 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
8858 the function added as MATCH to `eshell-interpreter-alist'.
8859
8860 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
8861 (eshell-visual-options): New defcustom.
8862 (eshell-escape-control-x): Adapt docstring.
8863 (eshell-term-initialize): Test `eshell-visual-subcommands' and
8864 `eshell-visual-options' in addition to `eshell-visual-commands'.
8865 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
8866
8867 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
8868
8869 * progmodes/python.el (python-indent-block-enders): Add break,
8870 continue and raise keywords.
8871
8872 2013-06-01 Glenn Morris <rgm@gnu.org>
8873
8874 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
8875
8876 Plain (f)boundp silences compilation warnings since Emacs 22.1.
8877 * progmodes/cc-cmds.el (delete-forward-p):
8878 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
8879 * progmodes/cc-engine.el (buffer-syntactic-context):
8880 * progmodes/cc-fonts.el (face-property-instance):
8881 * progmodes/cc-mode.el (set-keymap-parents):
8882 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
8883 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
8884 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
8885 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
8886 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
8887
8888 * progmodes/cc-vars.el (other): Emacs has this widget since
8889 at least 21.1, so don't (re)define it.
8890
8891 * eshell/em-cmpl.el (eshell-cmpl-initialize):
8892 Replace the obsolete alias pcomplete-arg-quote-list.
8893
8894 2013-06-01 Leo Liu <sdl.web@gmail.com>
8895
8896 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
8897 punctuation syntax.
8898 (inferior-octave-minimal-columns)
8899 (inferior-octave-last-column-width): New variables.
8900 (inferior-octave-track-window-width-change): New function.
8901 (inferior-octave-mode): Adjust column width so that Octave output,
8902 for example from 'ls', can fit into the window nicely.
8903
8904 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
8905
8906 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
8907 Highlight expansions inside regexp literals.
8908
8909 2013-05-31 Glenn Morris <rgm@gnu.org>
8910
8911 * obsolete/sym-comp.el (symbol-complete):
8912 Replace obsolete completion-annotate-function.
8913
8914 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
8915
8916 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
8917
8918 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
8919 New function, checks if point is inside a literal that allows
8920 expression expansion.
8921 (ruby-syntax-propertize-expansion): Use it.
8922 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
8923 around the body.
8924
8925 2013-05-30 Juri Linkov <juri@jurta.org>
8926
8927 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
8928 to "\M-si".
8929 (isearch-invisible): New variable.
8930 (isearch-forward): Doc fix.
8931 (isearch-mode): Set `isearch-invisible'
8932 to the value of `search-invisible'.
8933 (isearch-toggle-case-fold): Doc fix.
8934 (isearch-toggle-invisible): New command.
8935 (isearch-query-replace): Let-bind `search-invisible'
8936 to the value of `isearch-invisible'.
8937 (isearch-search): Use `isearch-invisible' instead of
8938 `search-invisible'. Let-bind `search-invisible'
8939 to the value of `isearch-invisible'. (Bug#11378)
8940
8941 2013-05-30 Juri Linkov <juri@jurta.org>
8942
8943 * replace.el (perform-replace): Avoid `isearch-range-invisible'
8944 call when `query-flag' is nil and `search-invisible' is non-nil.
8945 (Bug#11746)
8946
8947 2013-05-30 Glenn Morris <rgm@gnu.org>
8948
8949 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
8950
8951 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
8952 (cc-require): Suppress spurious "noruntime" warnings.
8953 (cc-require-when-compile): Use fboundp, for sake of compiler.
8954
8955 * progmodes/cc-mode.el: Move load of cc-vars before that of
8956 cc-langs (which in turn loads cc-vars), to quieten compiler.
8957
8958 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
8959
8960 * paren.el: Simplify the code.
8961 (show-paren-mode): Always start the timer.
8962 (show-paren--idle-timer): Rename from show-paren-idle-timer.
8963 (show-paren--overlay, show-paren--overlay-1): Rename from
8964 show-paren-overlay and show-paren-overlay-1, and initialize to an
8965 overlay rather than to nil.
8966 (show-paren-function): Misc cleanup and simplifications.
8967
8968 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
8969
8970 * paren.el (show-paren-data-function): New hook.
8971 (show-paren--default): New function, extracted from show-paren-function.
8972 (show-paren-function): Use show-paren-data-function.
8973
8974 2013-05-30 Glenn Morris <rgm@gnu.org>
8975
8976 * ielm.el (ielm-map, ielm-complete-symbol):
8977 Use completion-at-point rather than obsolete functions.
8978 (inferior-emacs-lisp-mode): Doc fix.
8979 Set completion-at-point-functions, rather than
8980 comint-dynamic-complete-functions.
8981
8982 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
8983 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
8984 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
8985
8986 * image.el (image-animated-p): Tweak definition.
8987
8988 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
8989 (rlogin-process-connection-type): Tweak default. Add set-after.
8990 (rlogin-host): Doc fix.
8991 (rlogin): Tweak prompt.
8992 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
8993
8994 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
8995 * progmodes/tcl.el (inferior-tcl-mode-map):
8996 Use completion-at-point rather than obsolete alias.
8997
8998 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
8999
9000 * minibuffer.el (read-file-name-completion-ignore-case):
9001 Move before completion--in-region, for eager macro expansion.
9002
9003 2013-05-29 Juri Linkov <juri@jurta.org>
9004
9005 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
9006 for total count of matching lines. Add `global-matches' for total
9007 count of matches. Rename `matches' to `lines' for count of
9008 matching lines. Add `matches' for count of matches.
9009 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
9010 to `prev-line' for line number of prev match endpt.
9011 Increment `matches' for every match. Print the number of
9012 matching lines in the header.
9013 (occur-context-lines): Rename `lines' to `curr-line'.
9014 Rename `prev-lines' to `prev-line'. (Bug#14017)
9015
9016 2013-05-29 Juri Linkov <juri@jurta.org>
9017
9018 * replace.el (perform-replace): Add `skip-read-only-count',
9019 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
9020 Increment them for corresponding conditions and report the number
9021 of skipped occurrences in the final message. (Bug#11746)
9022 (query-replace, query-replace-regexp, query-replace-regexp-eval)
9023 (replace-string, replace-regexp): Doc fix.
9024
9025 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
9026
9027 * emacs-lisp/trace.el (trace--read-args): Provide a default.
9028
9029 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
9030 prog-mode-map (bug#14504).
9031
9032 2013-05-29 Leo Liu <sdl.web@gmail.com>
9033
9034 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
9035 (octave-help): Small simplification.
9036
9037 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
9038 off the highlight first.
9039
9040 2013-05-29 Glenn Morris <rgm@gnu.org>
9041
9042 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
9043 Handle idlwave-last-system-routine-info-cons-cell being nil.
9044
9045 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
9046 (idlwave-write-paths): Simplify via with-temp-buffer.
9047
9048 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
9049 * emulation/cua-rect.el: Also load cua-base at run time.
9050
9051 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
9052 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
9053 (cperl-imenu-on-info): Require imenu.
9054
9055 2013-05-28 Alan Mackenzie <acm@muc.de>
9056
9057 Handle "capitalised keywords" correctly.
9058 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
9059
9060 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
9061
9062 * eshell/em-unix.el: Add -r option to cp.
9063
9064 2013-05-28 Glenn Morris <rgm@gnu.org>
9065
9066 * vc/vc-arch.el (vc-exec-after): Declare.
9067 (vc-switches): Autoload.
9068 * vc/vc-bzr.el: No need to require vc when compiling.
9069 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
9070 (vc-resynch-buffer, vc-dir-refresh): Declare.
9071 (vc-setup-buffer, vc-switches): Autoload.
9072 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
9073 (vc-resynch-buffer): Declare.
9074 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
9075 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
9076 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
9077 (grep-read-regexp, grep-read-files, grep-expand-template)
9078 (vc-dir-refresh): Declare.
9079 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
9080 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
9081 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
9082 * vc/vc-mtn.el (vc-exec-after): Declare.
9083 (vc-switches): Autoload.
9084 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
9085 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
9086 (vc-file-tree-walk): Declare.
9087 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
9088 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
9089 (vc-tag-precondition, vc-rename-master): Autoload.
9090 * vc/vc-svn.el (vc-exec-after): Declare.
9091 (vc-switches, vc-setup-buffer): Autoload.
9092 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
9093 Autoload.
9094 (vc-resynch-buffer): Declare.
9095
9096 * obsolete/fast-lock.el (byte-compile-warnings):
9097 Don't warn about obsolete features in this obsolete file.
9098
9099 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
9100 Move definition before use.
9101
9102 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
9103 (dun-unix-verbs): Remove dun-zippy.
9104 (dun-zippy): Remove function.
9105
9106 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
9107
9108 2013-05-27 Juri Linkov <juri@jurta.org>
9109
9110 * replace.el (replace-search): New function with code moved out
9111 from `perform-replace'.
9112 (replace-highlight, replace-dehighlight): Move function definitions
9113 up closer to `replace-search'. (Bug#11746)
9114
9115 2013-05-27 Juri Linkov <juri@jurta.org>
9116
9117 * replace.el (perform-replace): Ignore invisible matches.
9118 In addition to checking `query-replace-skip-read-only', also
9119 filter out matches by calling `run-hook-with-args-until-failure'
9120 on `isearch-filter-predicates', and also check `search-invisible'
9121 for t or call `isearch-range-invisible'.
9122 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
9123
9124 2013-05-27 Juri Linkov <juri@jurta.org>
9125
9126 * isearch.el (isearch-filter-predicates): Rename from
9127 `isearch-filter-predicate'. Doc fix. (Bug#11378)
9128 (isearch-message-prefix): Display text from the property
9129 `isearch-message-prefix' of the currently active filters.
9130 (isearch-search): Don't compare `isearch-filter-predicate' with
9131 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
9132 on `isearch-filter-predicates'. Also check `search-invisible' for t
9133 or call `isearch-range-invisible'.
9134 (isearch-filter-visible): Make obsolete.
9135 (isearch-lazy-highlight-search):
9136 Call `run-hook-with-args-until-failure' on
9137 `isearch-filter-predicates' and use `isearch-range-invisible'.
9138
9139 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
9140 `isearch-filter-predicates' instead of `funcall'ing
9141 `isearch-filter-predicate'.
9142 (Info-mode): Set `Info-isearch-filter' to
9143 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
9144
9145 * dired-aux.el (dired-isearch-filter-predicate-orig):
9146 Remove variable.
9147 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
9148 (dired-isearch-filenames-end): Add and remove
9149 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
9150 instead of changing the value of `isearch-filter-predicate'.
9151 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
9152 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
9153 Put property `isearch-message-prefix' to "filename " on
9154 `dired-isearch-filter-filenames'.
9155
9156 * wdired.el (wdired-change-to-wdired-mode):
9157 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
9158 locally instead of changing `isearch-filter-predicate'.
9159 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
9160
9161 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
9162
9163 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
9164 return the commit hash (Bug#14459). Also set the
9165 `vc-git-detached' property.
9166 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
9167 (vc-git-mode-line-string): Use the same help-echo format whether
9168 in detached mode or not, because we know the actual revision now.
9169 When in detached mode, shorten the revision to 7 chars.
9170
9171 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
9172
9173 * emacs-lisp/easy-mmode.el (define-minor-mode):
9174 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
9175 mode hook and provide a docstring.
9176
9177 2013-05-27 Alan Mackenzie <acm@muc.de>
9178
9179 Remove spurious syntax-table text properties inserted by C-y.
9180 * progmodes/cc-mode.el (c-after-change): Also clear hard
9181 syntax-table property with value nil.
9182
9183 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
9184
9185 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
9186 when reading the events; the buffer layout shall not be changed.
9187
9188 2013-05-27 Leo Liu <sdl.web@gmail.com>
9189
9190 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
9191 New variable.
9192 (inferior-octave-directory-tracker): Automatically re-sync
9193 default-directory.
9194 (octave-help): Improve handling of 'See also'.
9195
9196 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
9197
9198 * doc-view.el: Minor naming convention tweaks.
9199 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
9200
9201 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
9202 even if there's no `display' property yet (bug#14435).
9203
9204 2013-05-25 Eli Zaretskii <eliz@gnu.org>
9205
9206 * subr.el (unmsys--file-name): Rename from reveal-filename.
9207
9208 * Makefile.in (custom-deps, finder-data, autoloads)
9209 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
9210 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
9211 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
9212
9213 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
9214
9215 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
9216 error-completion on the first 2 args of condition-case (bug#14446).
9217 Don't burp at EOB.
9218
9219 2013-05-25 Leo Liu <sdl.web@gmail.com>
9220
9221 * comint.el (comint-previous-matching-input): Do not flood the
9222 *Messages* buffer with trivial messages.
9223
9224 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
9225
9226 * progmodes/flymake.el (flymake-nop): Don't return a string.
9227 (flymake-set-at): Fix typo.
9228
9229 * simple.el (read--expression): New function, extracted from
9230 eval-expression. Set completion-at-point-functions (bug#14465).
9231 (eval-expression, eval-minibuffer): Use it.
9232
9233 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
9234
9235 * progmodes/flymake.el (flymake-save-buffer-in-file)
9236 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
9237 (flymake-selected-frame, flymake-log, flymake-ins-after)
9238 (flymake-set-at, flymake-get-buildfile-from-cache)
9239 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
9240 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
9241 Refine the doc string.
9242 (flymake-get-file-name-mode-and-masks): Reformat.
9243 (flymake-get-real-file-name-function): Fix a minor bug.
9244
9245 2013-05-24 Juri Linkov <juri@jurta.org>
9246
9247 * progmodes/grep.el (grep-mode-font-lock-keywords):
9248 Support =linenumber= format used by git-grep for lines with
9249 function names. (Bug#13549)
9250
9251 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
9252
9253 * progmodes/octave.el (octave-smie-rules): Return nil rather than
9254 0 after a semi-colon; it works better for smie-auto-fill.
9255 (octave--indent-new-comment-line): New function.
9256 (octave-indent-new-comment-line): Use it (indirectly).
9257 (octave-mode): Don't disable smie-auto-fill. Use add-function to
9258 modify comment-line-break-function.
9259
9260 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
9261 (smie-setup): Use add-function to set it.
9262
9263 2013-05-24 Sam Steingold <sds@gnu.org>
9264
9265 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
9266 argument (before the `interactive' argument).
9267
9268 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
9269
9270 * image-mode.el (image-mode-winprops): Add winprops to
9271 image-mode-winprops-alist before running
9272 image-mode-new-window-functions.
9273 * doc-view.el (doc-view-new-window-function): Don't delay
9274 doc-view-goto-page via timers (bug#14435).
9275
9276 2013-05-24 Tassilo Horn <tsdh@gnu.org>
9277
9278 * doc-view.el: Integrate with desktop.el. (Bug#14435)
9279 (doc-view-desktop-save-buffer): New function.
9280 (doc-view-restore-desktop-buffer): New function.
9281 (desktop-buffer-mode-handlers):
9282 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
9283 handler.
9284 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
9285 `desktop-save-buffer' function.
9286
9287 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
9288
9289 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
9290 (tramp-gvfs-file-name-handler): Raise a user error when
9291 `tramp-gvfs-enabled' is nil.
9292 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
9293 Do not raise a user error when loading package. (Bug#14447)
9294
9295 * net/xesam.el: Move to obsolete/.
9296
9297 2013-05-24 Glenn Morris <rgm@gnu.org>
9298
9299 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
9300
9301 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
9302
9303 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
9304 (Info-find-node, Man-getpage-in-background): Declare.
9305
9306 * mail/unrmail.el (unrmail):
9307 Replace obsolete detect-coding-with-priority.
9308
9309 * net/socks.el (socks-split-string): Use this rather than split-string.
9310 (socks-nslookup-host): Update for above change.
9311 (dynamic-choice, s5-dynamic-choice-match)
9312 (s5-dynamic-choice-match-inline, s5-widget-value-create):
9313 Comment out unused code.
9314
9315 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
9316 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
9317 (gud-tooltip-echo-area): Make obsolete.
9318 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
9319
9320 * progmodes/js.el (js--optimize-arglist): Declare.
9321
9322 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
9323
9324 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
9325 (ediff-window-C): Declare.
9326
9327 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
9328 Tweak requires to silence compiler.
9329
9330 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
9331 (he-search-string, he-tried-table, he-expand-list)
9332 (he-init-string, he-string-member, he-substitute-string)
9333 (he-reset-string): Declare.
9334
9335 * obsolete/options.el (list-options): Use custom-variable-p,
9336 rather than obsolete alias.
9337
9338 2013-05-23 Sam Steingold <sds@gnu.org>
9339
9340 * simple.el (shell-command-on-region): Pass the `replace' argument
9341 down to `call-process-region' to comply with the doc as reported on
9342 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
9343
9344 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
9345
9346 * emacs-lisp/smie.el (smie-indent-forward-token)
9347 (smie-indent-backward-token): Handle string tokens (bug#14381).
9348
9349 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9350
9351 * ielm.el (ielm-menu): New menu.
9352 (inferior-emacs-lisp-mode): Set comment-start.
9353
9354 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9355
9356 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
9357 Fix deactivate action.
9358
9359 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
9360 Add cleveref macros.
9361
9362 * lisp/textmodes/reftex-parse.el
9363 (reftex-locate-bibliography-files): Accept options for
9364 bibliography commands.
9365 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
9366 Add addbibresource. Basic Biblatex support.
9367
9368 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
9369
9370 * net/tramp-gvfs.el (top):
9371 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
9372 when loading package. (Bug#14447)
9373
9374 2013-05-23 Glenn Morris <rgm@gnu.org>
9375
9376 * progmodes/js.el: No need to load comint when compiling.
9377 (ring-insert, comint-send-string, comint-send-input)
9378 (comint-last-input-end, ido-chop): Declare.
9379
9380 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
9381 * vc/ediff-mult.el: Adjust requires.
9382 (ediff-directories-internal, ediff-directory-revisions-internal)
9383 (ediff-patch-file-internal): Declare.
9384 * vc/ediff-ptch.el: Adjust requires.
9385 (ediff-use-last-dir, ediff-buffers-internal): Declare.
9386 (ediff-find-file): Autoload.
9387 * vc/ediff-util.el: No need to load ediff when compiling.
9388 (ediff-regions-internal): Declare.
9389 * vc/ediff-wind.el: Adjust requires.
9390 (ediff-compute-toolbar-width): Define when compiling.
9391 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
9392 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
9393 (dired-get-filename, dired-get-marked-files)
9394 (ediff-last-dir-patch, ediff-patch-default-directory)
9395 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
9396 (ediff-patch-buffer-internal): Declare.
9397
9398 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
9399 (ispell-process, ispell-buffer-local-words, lm-summary)
9400 (lm-section-start, lm-section-end): Declare.
9401 (checkdoc-ispell-init): Simplify.
9402
9403 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
9404 (he-string-member, he-reset-string, he-substitute-string): Declare.
9405
9406 * eshell/em-ls.el: Adjust requires.
9407 (eshell-glob-regexp): Declare.
9408 * eshell/em-tramp.el: Adjust requires.
9409 (eshell-parse-command): Autoload.
9410 * eshell/em-xtra.el: Adjust requires.
9411 (eshell-parse-command): Autoload.
9412 * eshell/esh-ext.el: Adjust requires.
9413 (eshell-parse-command, eshell-close-handles): Autoload.
9414 * eshell/esh-io.el: Adjust requires.
9415 (eshell-output-filter): Autoload.
9416 * eshell/esh-util.el: No need to load tramp when compiling.
9417 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
9418 Declare.
9419 (eshell-parse-ange-ls): Require ange-ftp and tramp.
9420 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
9421 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
9422 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
9423 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
9424 * eshell/esh-opt.el, eshell/esh-proc.el:
9425 * eshell/esh-var.el: Adjust requires.
9426 * eshell/eshell.el: Do not require esh-util twice.
9427 (eshell-add-input-to-history): Declare.
9428 (eshell-command): Check history module is active before using it.
9429
9430 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
9431
9432 2013-05-22 Leo Liu <sdl.web@gmail.com>
9433
9434 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
9435
9436 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
9437
9438 * autorevert.el (auto-revert-notify-add-watch)
9439 (auto-revert-notify-handler): Add `attrib' for the inotify case,
9440 it indicates changes in file modification time.
9441
9442 2013-05-22 Glenn Morris <rgm@gnu.org>
9443
9444 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
9445 Always delete the autoloaded function from the noruntime and
9446 unresolved functions lists.
9447
9448 * allout.el: No need to load epa, epg, overlay when compiling.
9449 (epg-context-set-passphrase-callback, epg-list-keys)
9450 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
9451 (epg-key-user-id-list): Declare.
9452
9453 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
9454 (viper-set-parsing-style-toggling-macro)
9455 (viper-set-emacs-state-searchstyle-macros):
9456 Use called-interactively-p on Emacs.
9457 (viper-looking-back): Make it an obsolete alias. Update callers.
9458 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
9459 Use looking-back rather than viper-looking-back.
9460 (viper-tmp-insert-at-eob, viper-enlarge-region)
9461 (viper-read-string-with-history, viper-register-to-point)
9462 (viper-append-to-register, viper-change-state-to-vi)
9463 (viper-backward-char-carefully, viper-forward-char-carefully)
9464 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
9465 (viper-change-state-to-emacs): Declare.
9466 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
9467 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
9468 * emulation/viper-mous.el: Do not load viper-cmd.
9469 (viper-backward-char-carefully, viper-forward-char-carefully)
9470 (viper-forward-word, viper-adjust-window): Declare.
9471
9472 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
9473
9474 * progmodes/idlw-help.el (idlwave-help-fontify):
9475 Use called-interactively-p.
9476
9477 * term/w32console.el (w32-get-console-codepage)
9478 (w32-get-console-output-codepage): Declare.
9479
9480 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
9481 Remove unnecessary declarations.
9482 (dframe-message): Doc fix.
9483
9484 * info.el (dframe-select-attached-frame, dframe-current-frame):
9485 Declare.
9486
9487 * speedbar.el (speedbar-message): Make it an obsolete alias.
9488 Update all callers.
9489 (speedbar-with-attached-buffer)
9490 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
9491 (speedbar-with-writable): Use backquote.
9492 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
9493 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
9494 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
9495 rather than speedbar- aliases.
9496 * mail/rmail.el: Load dframe rather than speedbar when compiling.
9497 (speedbar-make-specialized-keymap, speedbar-insert-button)
9498 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
9499 (speedbar-do-function-pointer): Declare.
9500 (rmail-speedbar-button, rmail-speedbar-find-file)
9501 (rmail-speedbar-move-message):
9502 Use dframe-with-attached-buffer rather than speedbar- alias.
9503 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
9504 (dframe-message, speedbar-make-specialized-keymap)
9505 (speedbar-add-expansion-list, speedbar-mode-functions-list)
9506 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
9507 (speedbar-insert-button, dframe-select-attached-frame)
9508 (dframe-maybee-jump-to-attached-frame)
9509 (speedbar-change-initial-expansion-list)
9510 (speedbar-previously-used-expansion-list-name): Declare.
9511 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
9512 Use dframe-message, dframe-with-attached-buffer rather than
9513 speedbar- aliases.
9514 (gud-sentinel): Silence compiler.
9515 * progmodes/vhdl-mode.el (speedbar-refresh)
9516 (speedbar-do-function-pointer, speedbar-add-supported-extension)
9517 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
9518 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
9519 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
9520 (speedbar-file-lists, speedbar-make-tag-line)
9521 (speedbar-line-directory, speedbar-goto-this-file)
9522 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
9523 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
9524 (speedbar-make-button, speedbar-reset-scanners)
9525 (speedbar-files-item-info, speedbar-line-text)
9526 (speedbar-find-file-in-frame, speedbar-set-timer)
9527 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
9528 (speedbar-with-writable): Do not (re)define it.
9529 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
9530 rather than speedbar- alias.
9531
9532 2013-05-21 Leo Liu <sdl.web@gmail.com>
9533
9534 * progmodes/octave.el (octave-mode-menu): Update and re-organize
9535 menu items.
9536 (octave-mode): Tweak fill-nobreak-predicate.
9537 (inferior-octave-startup): Check process to avoid infinite loop.
9538 (inferior-octave): Pop to buffer first to show abornmal process
9539 exit information.
9540
9541 2013-05-21 Glenn Morris <rgm@gnu.org>
9542
9543 * printing.el (pr-menu-bar): Define when compiling.
9544
9545 2013-05-21 Leo Liu <sdl.web@gmail.com>
9546
9547 * progmodes/octave.el (octave-auto-fill): Remove.
9548 (octave-indent-new-comment-line): Improve.
9549 (octave-mode): Use auto fill mode through
9550 comment-line-break-function and fill-nobreak-predicate.
9551 (octave-goto-function-definition): Support DEFUN_DLD.
9552 (octave-beginning-of-defun): Small tweak.
9553 (octave-help): Show parent directory.
9554
9555 2013-05-21 Glenn Morris <rgm@gnu.org>
9556
9557 * files.el (dired-unmark):
9558 * progmodes/gud.el (gdb-input): Update declarations.
9559
9560 * calculator.el (electric, ehelp): No need to load when compiling.
9561 (Electric-command-loop, electric-describe-mode): Declare.
9562
9563 * doc-view.el (doc-view-current-converter-processes): Move before use.
9564
9565 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9566 Move MODE-set-explicitly definition before use.
9567
9568 * international/mule-diag.el (mule-diag):
9569 Don't use obsolete window-system-version.
9570
9571 * mail/feedmail.el (smtpmail): No need to load when compiling.
9572 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
9573
9574 * mail/mail-utils.el (rfc822): No need to load when compiling.
9575 (rfc822-addresses): Autoload it.
9576 (mail-strip-quoted-names): Trivial simplification.
9577
9578 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
9579 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
9580
9581 * net/snmp-mode.el (tempo): Don't duplicate requires.
9582
9583 * progmodes/prolog.el (info): No need to load when compiling.
9584 (comint): Require before shell requires it.
9585 (Info-goto-node): Autoload it.
9586 (Info-follow-nearest-node): Declare.
9587 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
9588
9589 * textmodes/artist.el (picture-mode-exit): Declare.
9590
9591 * textmodes/reftex-parse.el (reftex-parse-from-file):
9592 Trivial rewrite so the compiler can parse it better.
9593
9594 2013-05-20 Leo Liu <sdl.web@gmail.com>
9595
9596 * progmodes/octave.el (octave-help-mode-map)
9597 (octave-help-mode-finish-hook): New variables.
9598 (octave-help-mode, octave-help-mode-finish): New functions.
9599 (octave-help): Use octave-help-mode.
9600
9601 2013-05-20 Glenn Morris <rgm@gnu.org>
9602
9603 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
9604
9605 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
9606
9607 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
9608 start at point, so that expansion starting right after opening
9609 slash in a regexp is recognized.
9610 (ruby-syntax-before-regexp-re): New defvar, extracted from
9611 ruby-syntax-propertize-function. Since the value of this regexp
9612 is looked up at runtime now, we should be able to turn
9613 `ruby-syntax-methods-before-regexp' into a defcustom later.
9614 (ruby-syntax-propertize-function): Split regexp matching into two
9615 parts, for opening and closing slashes. That allows us to skip
9616 over string interpolations and support multiline regexps.
9617 Don't call `ruby-syntax-propertize-expansions', instead use another rule
9618 for them, which calls `ruby-syntax-propertize-expansion'.
9619 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
9620 call to `ruby-syntax-propertize-function'.
9621 (ruby-syntax-propertize-expansion): Extracted from
9622 `ruby-syntax-propertize-expansions'. Handles one expansion.
9623 (ruby-syntax-propertize-percent-literal): Leave point right after
9624 the percent symbol, so that the expression expansion rule can
9625 propertize the contents.
9626 (ruby-syntax-propertize-heredoc): Leave point at bol following the
9627 heredoc openers.
9628 (ruby-syntax-propertize-expansions): Remove.
9629
9630 2013-05-18 Juri Linkov <juri@jurta.org>
9631
9632 * man.el (Man-default-man-entry): Remove `-' from the end
9633 of the default value. (Bug#14400)
9634
9635 2013-05-18 Glenn Morris <rgm@gnu.org>
9636
9637 * comint.el (comint-password-prompt-regexp):
9638 Allow "password for XXX" where XXX contains colons (eg https://...).
9639
9640 2013-05-18 Leo Liu <sdl.web@gmail.com>
9641
9642 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
9643 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
9644 (octave-source-directories): Don't check process.
9645 (octave-source-directories, octave-find-definition): Doc fix.
9646
9647 2013-05-18 Glenn Morris <rgm@gnu.org>
9648
9649 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
9650 Remove backspace/delete bindings. (Bug#14392)
9651
9652 * cus-dep.el (custom-make-dependencies): Sort the output.
9653 (custom-versions-load-alist): Convert comment to doc.
9654
9655 2013-05-17 Leo Liu <sdl.web@gmail.com>
9656
9657 * newcomment.el (comment-search-backward): Stricter in finding
9658 comment start. (Bug#14303)
9659
9660 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
9661 (octave-comment-start-skip): Properly anchored.
9662
9663 2013-05-17 Leo Liu <sdl.web@gmail.com>
9664
9665 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
9666 Clean up when turned off. (Bug#14395)
9667 (smie--highlight-matching-block-overlay): No longer buffer-local.
9668 (smie-highlight-matching-block): Adjust.
9669
9670 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
9671
9672 Doc string fix for "nanoseconds" (Bug#14406).
9673 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
9674 Fix doc string typo that had "nanoseconds" instead of "microseconds".
9675
9676 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
9677
9678 * calc/calc-units.el (math-extract-units): Preserve powers
9679 of units.
9680
9681 2013-05-17 Leo Liu <sdl.web@gmail.com>
9682
9683 * subr.el (delete-consecutive-dups): New function.
9684 * ido.el (ido-set-matches-1): Use it.
9685 * progmodes/octave.el (inferior-octave-completion-table): Use it.
9686 * ido.el (ido-remove-consecutive-dups): Remove.
9687
9688 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
9689
9690 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
9691 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
9692 regexp-opt's `words'.
9693
9694 2013-05-16 Leo Liu <sdl.web@gmail.com>
9695
9696 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
9697 (smie--highlight-matching-block-overlay)
9698 (smie--highlight-matching-block-lastpos)
9699 (smie--highlight-matching-block-timer): New variables.
9700 (smie-highlight-matching-block): New function.
9701 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
9702 (smie-setup): Conditionally enable smie-blink-matching-open.
9703
9704 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
9705
9706 Sync with upstream verilog-mode r840.
9707 * progmodes/verilog-mode.el (verilog-mode-version)
9708 (verilog-mode-release-date): Update.
9709 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
9710 (verilog-sig-tieoff): Fix string error on
9711 AUTORESET with colon define, bug594. Reported by Andrew Hou.
9712 (verilog-read-decls): Fix parameters confusing
9713 AUTOINST interfaces, bug565. Reported by Leith Johnson.
9714
9715 2013-05-16 Eli Zaretskii <eliz@gnu.org>
9716
9717 * subr.el (reveal-filename): New function.
9718
9719 * loadup.el: Compute Emacs executable versions on MS-Windows,
9720 where executables have the .exe extension. Add a hard link
9721 emacs-XX.YY.ZZ.exe on MS-Windows.
9722
9723 * Makefile.in (XARGS_LIMIT): New variable.
9724 (custom-deps, finder-data, autoloads)
9725 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
9726 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
9727 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
9728 (compile-main): Limit xargs according to $(XARGS_LIMIT).
9729
9730 2013-05-16 Leo Liu <sdl.web@gmail.com>
9731
9732 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
9733 (octave-mode-menu, octave-mode-map): Remove its uses.
9734
9735 2013-05-16 Reto Zimmermann <reto@gnu.org>
9736
9737 Sync with upstream vhdl mode v3.34.2.
9738 * progmodes/vhdl-mode.el: Use `push' throughout.
9739 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
9740 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
9741 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
9742 (vhdl-actual-generic-name): New option to derive actual generic name.
9743 (vhdl-port-paste-signals): Replace formal by actual generics.
9744 (vhdl-beautify): New name for old group vhdl-align. Update users.
9745 (vhdl-beautify-options): New option.
9746 (vhdl-last-input-event): New compat alias. Use throughout.
9747 (vhdl-goto-line): Replace user level function `goto-line'.
9748 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
9749 vhdl-fix-statement-buffer.
9750 (vhdl-create-mode-menu): Add some entries.
9751 (vhdl-align-region-groups): Respect vhdl-beautify-options.
9752 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
9753 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
9754 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
9755 to force statements on one line.
9756 (vhdl-remove-trailing-spaces-region):
9757 New, split from vhdl-remove-trailing-spaces.
9758 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
9759 Respect vhdl-beautify-options.
9760 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
9761 (vhdl-update-sensitivity-list): Not add with index if exists without.
9762 Not include array index with signal. Ignore keywords in comments.
9763 (vhdl-get-visible-signals): Regexp tweaks.
9764 (vhdl-template-component-inst): Handle empty library.
9765 (vhdl-template-type): Add template for 'enum' type.
9766 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
9767 Use vhdl-replace-string.
9768 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
9769 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
9770 (vhdl-speedbar-initialize): Update for above name change.
9771 (vhdl-compose-wire-components): Fix in handling of constants.
9772 (vhdl-error-regexp-emacs-alist): New variable.
9773 (vhdl-error-regexp-add-emacs): New function;
9774 adds support for new compile.el (Emacs 22+)
9775 (vhdl-generate-makefile-1): Change target order for single lib. units.
9776 Allow use of absolute file names.
9777
9778 2013-05-16 Leo Liu <sdl.web@gmail.com>
9779
9780 * simple.el (prog-indent-sexp): Indent enclosing defun.
9781
9782 2013-05-15 Glenn Morris <rgm@gnu.org>
9783
9784 * cus-start.el (show-trailing-whitespace): Move to editing basics.
9785 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
9786 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
9787 (whitespace-highlight): Move to whitespace group.
9788
9789 * comint.el (comint-source):
9790 * pcmpl-linux.el (pcmpl-linux):
9791 * shell.el (shell-faces):
9792 * eshell/esh-opt.el (eshell-opt):
9793 * international/ccl.el (ccl): Remove empty custom groups.
9794
9795 * completion.el (dynamic-completion-mode):
9796 * jit-lock.el (jit-lock-debug-mode):
9797 * minibuffer.el (completion-in-region-mode):
9798 * type-break.el (type-break-mode-line-message-mode)
9799 (type-break-query-mode):
9800 * emulation/tpu-edt.el (tpu-edt-mode):
9801 * progmodes/subword.el (global-subword-mode, global-superword-mode):
9802 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
9803 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
9804
9805 * term/xterm.el (xterm): Change parent group to terminals.
9806
9807 * master.el (master): Remove empty custom group.
9808 (master-mode): Remove unused :group argument.
9809 * textmodes/refill.el (refill): Remove empty custom group.
9810 (refill-mode): Remove unused :group argument.
9811
9812 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
9813
9814 * cus-dep.el: Provide a feature.
9815 (custom-make-dependencies): Ignore dotfiles (dir-locals).
9816 Don't mistakenly ignore files whose basenames match a basename
9817 from preloaded-file-list (eg cedet/ede/simple.el).
9818 Add a fallback method for getting :group.
9819
9820 2013-05-15 Juri Linkov <juri@jurta.org>
9821
9822 * isearch.el (isearch-char-by-name): Rename from
9823 `isearch-insert-char-by-name'. Doc fix.
9824 (isearch-forward): Mention `isearch-char-by-name' in
9825 the docstring. (Bug#13348)
9826
9827 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
9828 `exit-minibuffer' instead of
9829 `isearch-nonincremental-exit-minibuffer'.
9830 (isearch-edit-string): Remove mention of
9831 `isearch-nonincremental-exit-minibuffer' from docstring.
9832 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
9833 (isearch-forward-exit-minibuffer)
9834 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
9835
9836 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
9837
9838 * loadup.el: Just use unversioned DOC.
9839
9840 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
9841 literals as extending to EOB.
9842 (nxml-last-fontify-end): Remove unused variable.
9843 (nxml-after-change1): Use with-silent-modifications.
9844 (nxml-extend-after-change-region): Simplify.
9845 (nxml-extend-after-change-region1): Remove function.
9846 (nxml-after-change1): Don't adjust for dependent regions.
9847 (nxml-fontify-matcher): Simplify.
9848 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
9849 (xmltok-add-dependent): Remove function.
9850 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
9851 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
9852 (xmltok-scan-prolog-after-processing-instruction-open): Treat
9853 unclosed <[[, <?, comment, and other literals as extending to EOB.
9854 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
9855 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
9856 Remove functions.
9857 (rng-do-some-validation-1): Don't mark dependent regions.
9858 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
9859 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
9860 (nxml-clear-dependent-regions): Remove functions.
9861 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
9862 (nxml-ensure-scan-up-to-date):
9863 Don't clear&mark dependent regions.
9864
9865 2013-05-15 Leo Liu <sdl.web@gmail.com>
9866
9867 * progmodes/octave.el (octave-goto-function-definition):
9868 Improve and fix callers.
9869
9870 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
9871
9872 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
9873 the setter (bug#14387).
9874
9875 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
9876 surrounding group (bug#14402).
9877
9878 2013-05-14 Juri Linkov <juri@jurta.org>
9879
9880 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
9881 (Bug#14390)
9882
9883 2013-05-14 Glenn Morris <rgm@gnu.org>
9884
9885 * progmodes/f90.el (f90-imenu-generic-expression):
9886 Fix typo in 2013-05-08 change. (Bug#14402)
9887
9888 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
9889
9890 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
9891 Remove signals for which replies are never received.
9892
9893 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
9894
9895 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
9896 (gdb-handler-alist, gdb-handler-number): Remove variables.
9897 (gdb-handler-list): New variable.
9898 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
9899 (gdb-pending-handler-p, gdb-handle-reply)
9900 (gdb-remove-all-pending-triggers): New functions.
9901 (gdb-discard-unordered-replies): New defcustom.
9902 (gdb-handler): New defstruct.
9903 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
9904 instead of gdb-pending-triggers. Update docstring.
9905 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
9906 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
9907 (gdb-var-update-handler, def-gdb-auto-update-trigger)
9908 (def-gdb-auto-update-handler, gdb-get-changed-registers)
9909 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
9910 (gdb-frame-handler): Pending triggers are now automatically managed.
9911 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
9912 Remove argument.
9913 (gdb-input): Automatically handles pending triggers. Update docstring.
9914 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
9915 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
9916 Update comments.
9917 (gdb-done-or-error): Now use gdb-handle-reply.
9918
9919 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
9920
9921 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
9922 gdb-debug-log.
9923
9924 2013-05-14 Glenn Morris <rgm@gnu.org>
9925
9926 * subr.el (user-emacs-directory-warning): New option.
9927 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
9928
9929 2013-05-14 Leo Liu <sdl.web@gmail.com>
9930
9931 * progmodes/octave.el (octave-font-lock-keywords): Fix error
9932 during redisplay.
9933 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
9934 (octave-font-lock-texinfo-comment): Fix invalid search bound
9935 error: wrong side of point.
9936
9937 2013-05-14 Glenn Morris <rgm@gnu.org>
9938
9939 * progmodes/flymake.el (flymake-xml-program): New option.
9940 (flymake-xml-init): Use it.
9941
9942 * term/xterm.el: Provide a feature.
9943
9944 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
9945
9946 2013-05-13 Glenn Morris <rgm@gnu.org>
9947
9948 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
9949 Add compat aliases as a hack workaround. (Bug#14384)
9950
9951 2013-05-13 Leo Liu <sdl.web@gmail.com>
9952
9953 * progmodes/octave.el (octave-indent-comment): Fix indentation for
9954 ###, and %!.
9955 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
9956 C-M-q.
9957 (octave-comment-start-skip): Include %!.
9958 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
9959
9960 2013-05-12 Leo Liu <sdl.web@gmail.com>
9961
9962 * progmodes/octave.el (inferior-octave-startup): Store the value
9963 of __octave_srcdir__ for octave-source-directories.
9964 (inferior-octave-check-process): New function refactored out of
9965 inferior-octave-send-list-and-digest.
9966 (octave-source-directories)
9967 (octave-find-definition-filename-function): New variables.
9968 (octave-source-directories)
9969 (octave-find-definition-default-filename): New functions.
9970 (octave-find-definition): Improve to find functions implemented in C++.
9971
9972 2013-05-12 Glenn Morris <rgm@gnu.org>
9973
9974 * calendar/diary-lib.el (diary-outlook-format-1):
9975 Don't include dayname in the output. (Bug#14349)
9976
9977 2013-05-11 Glenn Morris <rgm@gnu.org>
9978
9979 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
9980
9981 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
9982 Treat cc-provide like provide.
9983
9984 2013-05-11 Kevin Ryde <user42@zip.com.au>
9985
9986 * cus-dep.el (custom-make-dependencies):
9987 Use generated-autoload-load-name for the sake of files such
9988 such cedet/semantic/bovine/c.el, where the base file name
9989 is not in load-path. (Bug#5277)
9990
9991 2013-05-11 Glenn Morris <rgm@gnu.org>
9992
9993 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
9994 Provide features.
9995
9996 2013-05-11 Leo Liu <sdl.web@gmail.com>
9997
9998 * progmodes/octave.el (octave-indent-comment): Improve.
9999 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
10000 (octave-eldoc-function-signatures, octave-eldoc-function):
10001 New functions.
10002 (octave-mode, inferior-octave-mode): Add eldoc support.
10003
10004 2013-05-11 Richard Stallman <rms@gnu.org>
10005
10006 * epa.el (epa-decrypt-file): Take output file name as argument
10007 and read it using `interactive'.
10008
10009 2013-05-11 Leo Liu <sdl.web@gmail.com>
10010
10011 * progmodes/octave.el (octave-beginning-of-line)
10012 (octave-end-of-line): Check before using up-list because it jumps
10013 out of more syntactic contructs since moving to smie.
10014 (octave-indent-comment): New function.
10015 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
10016 (octave-begin-keywords, octave-end-keywords)
10017 (octave-reserved-words, octave-smie-bnf-table)
10018 (octave-smie-rules): Add new keywords from Octave 3.6.4.
10019
10020 2013-05-11 Glenn Morris <rgm@gnu.org>
10021
10022 * faces.el (internal-face-x-get-resource):
10023 * frame.el (ns-display-monitor-attributes-list):
10024 * calc/calc-aent.el (math-to-radians-2):
10025 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
10026 Fix declarations.
10027
10028 * calc/calc-menu.el: Make it loadable in isolation.
10029
10030 * net/eudcb-bbdb.el: Make it loadable without bbdb.
10031 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
10032 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
10033 (eudc-bbdb-query-internal): Require 'bbdb.
10034
10035 * lpr.el (lpr-headers-switches):
10036 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
10037
10038 * progmodes/sql.el (sql-login-params): Fix and improve :type.
10039
10040 * emulation/edt-mapper.el: In batch mode, error rather than hang.
10041
10042 * term.el (term-set-escape-char): Make it idempotent.
10043
10044 2013-05-10 Leo Liu <sdl.web@gmail.com>
10045
10046 * progmodes/octave.el (inferior-octave-completion-table):
10047 No longer a function and all uses changed. Use cache to speed up
10048 completion due to bug#11906.
10049 (octave-beginning-of-defun): Re-write to be more general.
10050
10051 2013-05-10 Glenn Morris <rgm@gnu.org>
10052
10053 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
10054
10055 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
10056
10057 * comint.el (comint-redirect-send-command-to-process): Use :around
10058 rather than :override for comint-redirect-filter.
10059 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
10060 Call it instead of comint-redirect-original-filter-function (which
10061 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
10062
10063 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
10064
10065 * frame.el (display-monitor-attributes-list): Add NS case.
10066 (ns-display-monitor-attributes-list): Declare.
10067
10068 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
10069
10070 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
10071
10072 2013-05-09 Glenn Morris <rgm@gnu.org>
10073
10074 * international/fontset.el (vertical-centering-font-regexp):
10075 Set standard-value.
10076
10077 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
10078
10079 * bookmark.el (bookmark-search-delay):
10080 * cus-start.el (vertical-centering-font-regexp):
10081 * ps-mule.el (ps-mule-font-info-database-default):
10082 * ps-print.el (ps-default-fg, ps-default-bg):
10083 * type-break.el (type-break-good-break-interval):
10084 * whitespace.el (whitespace-indentation-regexp)
10085 (whitespace-space-after-tab-regexp):
10086 * emacs-lisp/testcover.el (testcover-1value-functions)
10087 (testcover-noreturn-functions, testcover-progn-functions)
10088 (testcover-prog1-functions):
10089 * emulation/viper-init.el (viper-emacs-state-cursor-color):
10090 * eshell/em-glob.el (eshell-glob-translate-alist):
10091 * play/tetris.el (tetris-tty-colors):
10092 * progmodes/cpp.el (cpp-face-default-list):
10093 * progmodes/flymake.el (flymake-allowed-file-name-masks):
10094 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
10095 (idlwave-help-browser-generic-args):
10096 * progmodes/make-mode.el (makefile-special-targets-list):
10097 * progmodes/python.el (python-shell-virtualenv-path):
10098 * progmodes/verilog-mode.el (verilog-active-low-regexp)
10099 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
10100 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
10101 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
10102 * textmodes/reftex-vars.el (reftex-format-label-function):
10103 * textmodes/remember.el (remember-diary-file): Fix custom types.
10104
10105 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
10106 Add :version.
10107
10108 2013-05-09 Leo Liu <sdl.web@gmail.com>
10109
10110 * progmodes/octave.el (inferior-octave-completion-at-point):
10111 Restore file completion. (Bug#14300)
10112 (inferior-octave-startup): Fix incorrect highlighting for the
10113 first prompt.
10114
10115 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10116
10117 * progmodes/ruby-mode.el: First cut at SMIE support.
10118 (ruby-use-smie): New var.
10119 (ruby-smie-grammar): New constant.
10120 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
10121 (ruby-smie--forward-token, ruby-smie--backward-token)
10122 (ruby-smie-rules): New functions.
10123 (ruby-mode-variables): Setup SMIE if applicable.
10124
10125 2013-05-08 Eli Zaretskii <eliz@gnu.org>
10126
10127 * simple.el (line-move-visual): Signal beginning/end of buffer
10128 only if vertical-motion moved less than it was requested. Avoids
10129 silly incorrect error messages when there are display strings with
10130 multiple newlines at EOL.
10131
10132 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10133
10134 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
10135 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
10136 (prolog-char-quote-workaround):
10137 * progmodes/cperl-mode.el (cperl-under-as-char):
10138 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
10139 Mark as obsolete.
10140 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
10141 their declaration.
10142 (vhdl-mode-syntax-table-init): Remove.
10143
10144 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
10145 last change.
10146
10147 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
10148 syntax for "_".
10149 (ld-script-font-lock-keywords):
10150 Change regexps to use things like \_< and \_>.
10151
10152 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
10153 Change all regexps to use things like \_< and \_>.
10154
10155 * progmodes/autoconf.el (autoconf-definition-regexp)
10156 (autoconf-font-lock-keywords, autoconf-current-defun-function):
10157 Handle a _ with symbol syntax.
10158 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
10159
10160 * progmodes/ada-mode.el (ada-mode-abbrev-table):
10161 Consolidate declaration.
10162 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
10163 the declaration.
10164 (ada-create-syntax-table): Remove.
10165 (ada-capitalize-word): Don't mess with the syntax of "_" since it
10166 already has the right syntax nowadays.
10167 (ada-goto-next-word): Don't change the syntax of "_".
10168
10169 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
10170 with-wrapper-hook.
10171
10172 2013-05-08 Sam Steingold <sds@gnu.org>
10173
10174 * thingatpt.el (thing-at-point): Accept optional second argument
10175 NO-PROPERTIES to strip the text properties from the return value.
10176 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
10177 to `thing-at-point' instead of stripping the properties ourselves.
10178 Also, when `thing-at-point' fails to find a url, prepend "http://"
10179 to the filename at point on the assumption that the user is
10180 pointing at something like gnu.org/gnu.
10181
10182 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
10183
10184 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
10185 * faces.el (crm-separator):
10186 Silence byte-compiler.
10187
10188 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
10189 (tool-bar-map): Remove unneeded defvars.
10190
10191 2013-05-08 Leo Liu <sdl.web@gmail.com>
10192
10193 Re-work a fix for bug#10994 based on Le Wang's patch.
10194 * ido.el (ido-remove-consecutive-dups): New helper.
10195 (ido-completing-read): Use it.
10196 (ido-chop): Revert fix for bug#10994.
10197
10198 2013-05-08 Adam Spiers <emacs@adamspiers.org>
10199
10200 * cus-edit.el (custom-save-variables):
10201 Pretty-print long values. (Bug#14187)
10202
10203 2013-05-08 Glenn Morris <rgm@gnu.org>
10204
10205 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
10206 (m4-mode-syntax-table): Init in the defvar.
10207 (m4-mode-abbrev-table): Let define-derived-mode define it.
10208
10209 2013-05-08 Tom Tromey <tromey@redhat.com>
10210
10211 * progmodes/m4-mode.el (m4-mode-syntax-table):
10212 Do not treat "_" as word constituent. (Bug#14167)
10213
10214 2013-05-07 Glenn Morris <rgm@gnu.org>
10215
10216 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
10217 Remove explicit eshell-isearch-cancel-map.
10218
10219 * progmodes/f90.el (f90-smart-end-names): New option.
10220 (f90-smart-end): Doc fix.
10221 (f90-end-block-optional-name): New constant.
10222 (f90-block-match): Respect f90-smart-end-names.
10223
10224 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
10225
10226 * progmodes/octave.el (octave-smie-forward-token): Be more careful
10227 about implicit semi-colons (bug#14218).
10228
10229 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10230
10231 * frame.el (display-monitor-attributes-list)
10232 (frame-monitor-attributes): New functions.
10233
10234 2013-05-06 Leo Liu <sdl.web@gmail.com>
10235
10236 * progmodes/octave.el (octave-syntax-propertize-function): Change
10237 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
10238 (octave-font-lock-keywords): Use octave-operator-regexp.
10239 (octave-completion-at-point): Rename from
10240 octave-completion-at-point-function.
10241 (inferior-octave-directory-tracker): Robustify.
10242 (octave-text-functions): Remove and fix its uses. No such things
10243 any more.
10244
10245 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
10246
10247 * emacs-lisp/trace.el (trace--display-buffer): New function.
10248 (trace-make-advice): Use it.
10249
10250 2013-05-06 Juri Linkov <juri@jurta.org>
10251
10252 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
10253 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
10254 Doc fix.
10255 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
10256 in the help string. (Bug#12985)
10257
10258 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
10259
10260 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
10261
10262 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
10263
10264 * progmodes/perl-mode.el: Add support for here documents.
10265 (perl-syntax-propertize-function): Match here-doc markers.
10266 (perl-syntax-propertize-special-constructs): Find their end.
10267 (perl-imenu-generic-expression): Use [:alnum:].
10268
10269 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
10270 (advice--add-function): Refresh the advice if already present
10271 (bug#14317).
10272
10273 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
10274
10275 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
10276
10277 2013-05-06 Glenn Morris <rgm@gnu.org>
10278
10279 * w32-fns.el (w32-charset-info-alist): Declare.
10280
10281 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
10282 of its defcustom properties.
10283 (eshell-cmpl-initialize): No need to load pcomplete.
10284
10285 * generic-x.el: No need to require comint when compiling.
10286
10287 * net/eudc-export.el: Make it loadable without bbdb.
10288 (top-level): Use require rather than load-library.
10289 (eudc-create-bbdb-record, eudc-bbdbify-phone)
10290 (eudc-batch-export-records-to-bbdb)
10291 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
10292 Require bbdb.
10293
10294 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
10295
10296 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
10297 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
10298 some tweaks, instead.
10299
10300 2013-05-05 Leo Liu <sdl.web@gmail.com>
10301
10302 * progmodes/octave.el (octave-font-lock-keywords)
10303 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
10304 (inferior-octave-send-list-and-digest): Improve error message.
10305 (octave-mode, inferior-octave-mode): Use setq-local.
10306 (octave-help): Set info-lookup-mode.
10307
10308 2013-05-05 Richard Stallman <rms@gnu.org>
10309
10310 * vc/compare-w.el (compare-windows-whitespace):
10311 Treat no-break space as whitespace.
10312
10313 * mail/rmailsum.el (rmail-summary-rmail-update):
10314 Detect empty summary and don't change selected message.
10315 (rmail-summary-goto-msg): Likewise.
10316
10317 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
10318 Doc fixes, rename args.
10319
10320 2013-05-05 Alan Mackenzie <acm@muc.de>
10321
10322 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
10323
10324 2013-05-05 Juri Linkov <juri@jurta.org>
10325
10326 * info.el (Info-read-subfile): Use (point-min) instead of (point)
10327 to not add the length of the summary segment to the return value.
10328 (Bug#14125)
10329
10330 2013-05-05 Leo Liu <sdl.web@gmail.com>
10331
10332 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
10333 (inferior-octave-output-filter): Remove.
10334 (octave-send-region, inferior-octave-startup): Fix callers.
10335 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
10336 (octave-binary-file-extensions): New user variable.
10337 (octave-find-definition): Confirm if opening binary files.
10338 (octave-help-file): Use octave-find-definition to get the binary
10339 confirmation.
10340 (octave-help): Adjust for octave-help-file change.
10341
10342 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
10343
10344 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
10345 Merge the two entries that handle function definitions.
10346 (pascal--syntax-propertize): New const.
10347 (pascal-mode): Use it. Use setq-local.
10348
10349 2013-05-04 Glenn Morris <rgm@gnu.org>
10350
10351 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
10352 (diary-from-outlook): Respect diary-from-outlook-function.
10353
10354 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
10355
10356 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
10357 Move the declaration from C.
10358 (read-minibuffer, eval-minibuffer): Move from C.
10359 (completion-setup-function): Avoid minibuffer-completion-contents.
10360
10361 2013-05-03 Leo Liu <sdl.web@gmail.com>
10362
10363 * progmodes/octave.el (octave-font-lock-keywords): Do not
10364 dehighlight 'end' in comments or strings.
10365 (octave-completing-read, octave-goto-function-definition):
10366 New helpers.
10367 (octave-help-buffer): New user variable.
10368 (octave-help-file, octave-help-function): New button types.
10369 (octave-help): New command and bind it to C-h ;.
10370 (octave-find-definition): New command and bind it to M-.
10371 (user-error): Alias to error if not defined.
10372
10373 2013-05-02 Leo Liu <sdl.web@gmail.com>
10374
10375 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
10376 for \. (bug#14332)
10377 (octave-font-lock-keywords): Include [ and {.
10378
10379 2013-05-02 Leo Liu <sdl.web@gmail.com>
10380
10381 * progmodes/octave.el (inferior-octave-startup-file): Change default.
10382 (inferior-octave): Remove calling comint-mode and return the buffer.
10383 (inferior-octave-startup): Cosmetic changes.
10384
10385 2013-05-02 Leo Liu <sdl.web@gmail.com>
10386
10387 * progmodes/octave.el (octave-syntax-propertize-function):
10388 Include the case when ' is at line beginning. (Bug#14336)
10389
10390 2013-05-02 Glenn Morris <rgm@gnu.org>
10391
10392 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
10393 * desktop.el (vc-dir-mode): Just autoload it here.
10394
10395 2013-05-02 Alan Mackenzie <acm@muc.de>
10396
10397 Eliminate variable c-standard-font-lock-fontify-region-function.
10398 * progmodes/cc-mode.el
10399 (c-standard-font-lock-fontify-region-function): Remove.
10400 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
10401
10402 2013-05-01 Leo Liu <sdl.web@gmail.com>
10403
10404 * progmodes/octave.el: Compatible with older emacs-24 releases.
10405 (inferior-octave-has-built-in-variables): Remove. Built-in
10406 variables were removed from Octave in 2007.
10407 (inferior-octave-startup): Fix uses.
10408 (comint-line-beginning-position): Remove compatibility code for
10409 emacs 21.
10410
10411 2013-05-01 Juri Linkov <juri@jurta.org>
10412
10413 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
10414
10415 2013-05-01 Juri Linkov <juri@jurta.org>
10416
10417 * comint.el (comint-previous-matching-input): Don't print message
10418 "History item: %d" when `isearch-mode' is active.
10419 (comint-history-isearch-message): Print message "History item: %d"
10420 when `comint-input-ring-index' is not empty and this function is
10421 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
10422
10423 2013-05-01 Leo Liu <sdl.web@gmail.com>
10424
10425 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
10426 definitions. Use completion-at-point to insert keywords.
10427 (octave-abbrev-start): Remove.
10428 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
10429
10430 2013-04-30 Leo Liu <sdl.web@gmail.com>
10431
10432 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
10433 change.
10434
10435 2013-04-30 Alan Mackenzie <acm@muc.de>
10436
10437 Handle arbitrarily long C++ member initialisation lists.
10438 * progmodes/cc-engine.el (c-back-over-member-initializers):
10439 new function.
10440 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
10441 (most) member init lists.
10442
10443 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
10444
10445 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
10446 variable.
10447
10448 2013-04-30 Leo Liu <sdl.web@gmail.com>
10449
10450 * progmodes/octave.el (octave-variables): Remove. No builtin
10451 variables any more. All converted to functions.
10452 (octave-font-lock-keywords, octave-completion-at-point-function):
10453 Fix uses.
10454 (octave-font-lock-texinfo-comment): New user variable.
10455 (octave-texinfo-font-lock-keywords): New variable for texinfo
10456 comment block.
10457 (octave-function-comment-block): New face.
10458 (octave-font-lock-texinfo-comment): New function.
10459 (octave-mode): Font lock texinfo comment block.
10460
10461 2013-04-29 Leo Liu <sdl.web@gmail.com>
10462
10463 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
10464 indexing expression.
10465 (octave-continuation-string): Do not use \.
10466 (inferior-octave-complete-impossible): Remove.
10467 (inferior-octave-completion-table)
10468 (inferior-octave-completion-at-point): Remove its uses.
10469 (inferior-octave-startup): completion_matches was introduced to
10470 Octave in 1996 so safe to assume it.
10471 (octave-function-file-comment): Improve to follow how Octave does it.
10472 (octave-update-function-file-comment): Tweak.
10473
10474 2013-04-29 Leo Liu <sdl.web@gmail.com>
10475
10476 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
10477 (inferior-octave-startup): Remove inferior-octave-startup-hook.
10478 (octave-function-file-comment): Fix typo.
10479 (octave-sync-function-file-names): Use read-char-choice.
10480
10481 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
10482
10483 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
10484 to t for the less important warnings.
10485
10486 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
10487
10488 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
10489
10490 2013-04-27 Glenn Morris <rgm@gnu.org>
10491
10492 * vc/log-view.el (log-view-current-entry):
10493 Treat "---" separator lines as part of the following rev. (Bug#14169)
10494
10495 2013-04-27 Juri Linkov <juri@jurta.org>
10496
10497 * subr.el (read-number): Doc fix about using it by interactive
10498 code letter `n'. (Bug#14254)
10499
10500 2013-04-27 Juri Linkov <juri@jurta.org>
10501
10502 * desktop.el (desktop-auto-save-timeout): New option.
10503 (desktop-file-checksum): New variable.
10504 (desktop-save): Add optional arg `auto-save' and don't auto-save
10505 if nothing changed.
10506 (desktop-auto-save-timer): New variable.
10507 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
10508 (after-init-hook): Call `desktop-auto-save-set-timer'.
10509 Suggested by Reuben Thomas <rrt@sc3d.org> in
10510 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
10511
10512 2013-04-27 Leo Liu <sdl.web@gmail.com>
10513
10514 * progmodes/octave.el (octave-function-file-p)
10515 (octave-skip-comment-forward, octave-function-file-comment)
10516 (octave-update-function-file-comment): New functions.
10517 (octave-mode-map): Bind C-c ; to
10518 octave-update-function-file-comment.
10519 (octave-mode-menu): Add octave-update-function-file-comment.
10520 (octave-mode, inferior-octave-mode): Fix doc-string.
10521 (octave-insert-defun): Conform to Octave's coding convention.
10522 (Bug#14285)
10523
10524 * files.el (basic-save-buffer): Don't let errors in
10525 before-save-hook prevent saving buffer.
10526
10527 2013-04-20 Roland Winkler <winkler@gnu.org>
10528
10529 * faces.el (read-face-name): Use completing-read if arg multiple
10530 is nil.
10531
10532 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
10533
10534 * ls-lisp.el (ls-lisp-insert-directory): If no files are
10535 displayed, move point to after the totals line.
10536 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
10537 for the details.
10538
10539 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
10540
10541 * emacs-lisp/package.el (package-autoload-ensure-default-file):
10542 Add current dir to the load-path.
10543 (package-generate-autoloads): Don't rely on
10544 autoload-ensure-default-file.
10545
10546 2013-04-26 Reuben Thomas <rrt@sc3d.org>
10547
10548 * textmodes/remember.el (remember-store-in-files): Document that
10549 the file name format is passed to `format-time-string'.
10550
10551 2013-04-26 Leo Liu <sdl.web@gmail.com>
10552
10553 * progmodes/octave.el (octave-sync-function-file-names): New function.
10554 (octave-mode): Use it in before-save-hook.
10555
10556 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
10557
10558 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
10559 (bug#14274).
10560
10561 * progmodes/octave.el (octave-smie-forward-token): Properly skip
10562 \n and comment, even if it's not an implicit ; (bug#14218).
10563
10564 2013-04-26 Glenn Morris <rgm@gnu.org>
10565
10566 * subr.el (read-number): Once more use `read' rather than
10567 `string-to-number', to trap non-numeric input. (Bug#14254)
10568
10569 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
10570
10571 * emacs-lisp/syntax.el (syntax-propertize-multiline):
10572 Use `syntax-multiline' text property consistently instead of
10573 `font-lock-multiline'. (Bug#14237)
10574
10575 2013-04-26 Glenn Morris <rgm@gnu.org>
10576
10577 * emacs-lisp/shadow.el (list-load-path-shadows):
10578 No longer necessary to check for duplicate simple.el, since
10579 2012-07-07 change to init_lread to not include installation lisp
10580 directories in load-path when running uninstalled. (Bug#14270)
10581
10582 2013-04-26 Leo Liu <sdl.web@gmail.com>
10583
10584 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
10585 (octave-mode, inferior-octave-mode): Use setq-local.
10586 (octave-not-in-string-or-comment-p): Rename to
10587 octave-in-string-or-comment-p.
10588 (octave-in-comment-p, octave-in-string-p)
10589 (octave-in-string-or-comment-p): Replace defsubst with defun.
10590
10591 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
10592
10593 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
10594
10595 2013-04-25 Bastien Guerry <bzg@gnu.org>
10596
10597 * textmodes/remember.el (remember-data-directory)
10598 (remember-directory-file-name-format): Fix custom types.
10599
10600 2013-04-25 Leo Liu <sdl.web@gmail.com>
10601
10602 * progmodes/octave.el (octave-completion-at-point-function):
10603 Make use of inferior octave process.
10604 (octave-initialize-completions): Remove.
10605 (inferior-octave-completion-table): New function.
10606 (inferior-octave-completion-at-point): Use it.
10607 (octave-completion-alist): Remove.
10608
10609 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
10610
10611 * progmodes/opascal.el: Use font-lock and syntax-propertize.
10612 (opascal-mode-syntax-table): New var.
10613 (opascal-literal-kind, opascal-is-literal-end)
10614 (opascal-literal-token-at): Rewrite.
10615 (opascal--literal-start-re, opascal-font-lock-keywords)
10616 (opascal--syntax-propertize): New constants.
10617 (opascal-font-lock-defaults): Adjust.
10618 (opascal-mode): Use them. Set comment-<foo> variables as well.
10619 (delphi-comment-face, opascal-comment-face, delphi-string-face)
10620 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
10621 (delphi-other-face, opascal-other-face): Remove face variables.
10622 (opascal-save-state): Remove macro.
10623 (opascal-fontifying-progress-step): Remove constant.
10624 (opascal--ignore-changes): Remove var.
10625 (opascal-set-token-property, opascal-parse-next-literal)
10626 (opascal-is-stable-literal, opascal-complete-literal)
10627 (opascal-is-literal-start, opascal-face-of)
10628 (opascal-parse-region, opascal-parse-region-until-stable)
10629 (opascal-fontify-region, opascal-after-change)
10630 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
10631 (opascal-debug-parse-region, opascal-debug-parse-window)
10632 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
10633 (opascal-debug-fontify-buffer): Remove.
10634 (opascal-debug-mode-map): Adjust accordingly.
10635
10636 2013-04-25 Leo Liu <sdl.web@gmail.com>
10637
10638 Merge octave-mod.el and octave-inf.el into octave.el with some
10639 cleanups.
10640 * progmodes/octave.el: New file renamed from octave-mod.el.
10641 * progmodes/octave-inf.el: Merged into octave.el.
10642 * progmodes/octave-mod.el: Renamed to octave.el.
10643
10644 2013-04-25 Tassilo Horn <tsdh@gnu.org>
10645
10646 * textmodes/reftex-vars.el
10647 (reftex-label-ignored-macros-and-environments): New defcustom.
10648
10649 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
10650
10651 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
10652
10653 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
10654 (smie-indent-keyword): Improve the check to ensure that the next
10655 comment is really on the same line.
10656 (smie-indent-comment): Don't align with a subsequent closer (or eob).
10657
10658 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
10659 semi-colons if the line is not otherwise empty (bug#14218).
10660
10661 2013-04-25 Glenn Morris <rgm@gnu.org>
10662
10663 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
10664
10665 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
10666
10667 * progmodes/opascal.el (opascal-set-token-property): Rename from
10668 opascal-set-text-properties and only set `token' (bug#14134).
10669 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
10670 (opascal-literal-text-properties): Remove.
10671 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
10672 Adjust callers.
10673
10674 2013-04-24 Reuben Thomas <rrt@sc3d.org>
10675
10676 * textmodes/remember.el (remember-handler-functions): Add an
10677 option for a new handler `remember-store-in-files'.
10678 (remember-data-directory, remember-directory-file-name-format):
10679 New options.
10680 (remember-store-in-files): New function to store remember notes
10681 as separate files within a directory.
10682
10683 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
10684
10685 * progmodes/compile.el (compilation-next-error-function):
10686 Pass "formats" to compilation-find-file (bug#11777).
10687
10688 2013-04-24 Glenn Morris <rgm@gnu.org>
10689
10690 * vc/vc-bzr.el (vc-bzr-print-log):
10691 * vc/vc-hg.el (vc-hg-print-log):
10692 * vc/vc-svn.el (vc-svn-print-log):
10693 Fix START-REVISION with LIMIT != 1. (Bug#14168)
10694
10695 * vc/vc-bzr.el (vc-bzr-print-log):
10696 * vc/vc-cvs.el (vc-cvs-print-log):
10697 * vc/vc-git.el (vc-git-print-log):
10698 * vc/vc-hg.el (vc-hg-print-log):
10699 * vc/vc-mtn.el (vc-mtn-print-log):
10700 * vc/vc-rcs.el (vc-rcs-print-log):
10701 * vc/vc-sccs.el (vc-sccs-print-log):
10702 * vc/vc-svn.el (vc-svn-print-log):
10703 * vc/vc.el (vc-print-log-internal): Doc fixes.
10704
10705 2013-04-23 Glenn Morris <rgm@gnu.org>
10706
10707 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
10708 Remove venerable code attempting to avoid substitute-command-keys.
10709
10710 2013-04-23 Tassilo Horn <tsdh@gnu.org>
10711
10712 * textmodes/reftex-vars.el (reftex-label-regexps):
10713 Call `reftex-compile-variables' after changes to this variable.
10714
10715 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
10716
10717 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
10718 Use lexical-binding.
10719 (jit-lock-force-redisplay): Use markers, check buffer's continued
10720 existence and beware narrowed buffers.
10721 (jit-lock-fontify-now): Adjust call accordingly.
10722
10723 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
10724
10725 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
10726 to avoid misleading the user.
10727
10728 2013-04-22 Leo Liu <sdl.web@gmail.com>
10729
10730 * info-look.el: Prefer latex2e.info. (Bug#14240)
10731
10732 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
10733
10734 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
10735
10736 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
10737 * net/tramp.el (tramp-call-process): ... here.
10738 (tramp-set-completion-function, tramp-parse-putty):
10739 * net/tramp-adb.el (tramp-adb-execute-adb-command):
10740 * net/tramp-gvfs.el (tramp-gvfs-send-command):
10741 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
10742 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
10743 (tramp-call-local-coding-command): Use `tramp-call-process'
10744 instead of `tramp-compat-call-process'.
10745
10746 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
10747 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
10748 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
10749 (tramp-find-inline-compress): Improve traces.
10750 (tramp-maybe-send-script): Check for Perl binary.
10751 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
10752
10753 2013-04-22 Daiki Ueno <ueno@gnu.org>
10754
10755 * epg.el (epg-context-pinentry-mode): New function.
10756 (epg-context-set-pinentry-mode): New function.
10757 (epg--start): Pass --pinentry-mode option to gpg command.
10758
10759 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
10760
10761 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
10762 `comint-dynamic-complete' is obsolete since 24.1, replaced by
10763 `completion-at-point'. (Bug#13774)
10764
10765 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
10766 default key binding for `describe-distribution' has been moved to
10767 `C-h C-o'. (Bug#13970)
10768
10769 2013-04-21 Glenn Morris <rgm@gnu.org>
10770
10771 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
10772 Add doc strings.
10773 (vc-print-log): Clarify interactive prompt.
10774
10775 2013-04-20 Glenn Morris <rgm@gnu.org>
10776
10777 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
10778 No longer include timestamp etc information.
10779
10780 2013-04-20 Roland Winkler <winkler@gnu.org>
10781
10782 * faces.el (read-face-name): Bug fix, return just one face if arg
10783 multiple is nil. (Bug#14209)
10784
10785 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
10786
10787 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
10788 (remove-function): Autoload.
10789
10790 * comint.el (comint-redirect-original-filter-function): Remove.
10791 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
10792 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
10793 (vc-cvs-annotate-command):
10794 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
10795 * progmodes/prolog.el (prolog-consult-compile):
10796 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
10797 Use add/remove-function instead.
10798 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
10799 (gud-tooltip-process-output, gud-tooltip-tips):
10800 Use add/remove-function instead.
10801 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
10802 (scheme-interaction-mode, exit-scheme-interaction-mode):
10803 Use add/remove-function instead.
10804
10805 * vc/vc-dispatcher.el: Use lexical-binding.
10806 (vc--process-sentinel): Rename from vc-process-sentinel.
10807 Change last arg to be the code to run. Don't use vc-previous-sentinel
10808 and vc-sentinel-commands any more.
10809 (vc-exec-after): Allow code to be a function. Use add/remove-function.
10810 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
10811
10812 2013-04-19 Masatake YAMATO <yamato@redhat.com>
10813
10814 * progmodes/sh-script.el (sh-imenu-generic-expression):
10815 Handle function names with a single character. (Bug#14111)
10816
10817 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
10818
10819 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
10820 for subroutines defined in an eval (bug#14182).
10821
10822 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10823
10824 * bookmark.el (bookmark-completing-read): Improve handling of empty
10825 string (bug#14176).
10826
10827 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
10828
10829 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
10830
10831 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
10832
10833 New faster Imenu implementation (bug#14058).
10834 * progmodes/python.el:
10835 (python-imenu-prev-index-position):
10836 (python-imenu-format-item-label-function)
10837 (python-imenu-format-parent-item-label-function)
10838 (python-imenu-format-parent-item-jump-label-function):
10839 New vars.
10840 (python-imenu-format-item-label)
10841 (python-imenu-format-parent-item-label)
10842 (python-imenu-format-parent-item-jump-label)
10843 (python-imenu--put-parent, python-imenu--build-tree)
10844 (python-imenu-create-index, python-imenu-create-flat-index)
10845 (python-util-popn): New functions.
10846 (python-mode): Set imenu-create-index-function to
10847 python-imenu-create-index.
10848
10849 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
10850
10851 * winner.el (winner-active-region): Use region-active-p, activate-mark
10852 and deactivate-mark (bug#14225).
10853
10854 * simple.el (deactivate-mark): Don't inline it.
10855
10856 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
10857
10858 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
10859
10860 2013-04-18 Tassilo Horn <tsdh@gnu.org>
10861
10862 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
10863 file extensions from the archive-mode entry in order to prefer
10864 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
10865
10866 2013-04-18 Leo Liu <sdl.web@gmail.com>
10867
10868 * bindings.el (help-event-list): Add ?\?.
10869
10870 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
10871
10872 * subr.el (with-wrapper-hook): Declare obsolete.
10873 * simple.el (filter-buffer-substring-function): New hook.
10874 (filter-buffer-substring): Use it.
10875 (filter-buffer-substring-functions): Mark obsolete.
10876 * minibuffer.el (completion-in-region-function): New hook.
10877 (completion-in-region): Use it.
10878 (completion-in-region-functions): Mark obsolete.
10879 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
10880 * abbrev.el (abbrev-expand-function): New hook.
10881 (expand-abbrev): Use it.
10882 (abbrev-expand-functions): Mark obsolete.
10883 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
10884 and :filter-return.
10885
10886 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
10887
10888 * progmodes/python.el (python-nav--syntactically): Fix cornercases
10889 and do not care about match data.
10890
10891 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
10892
10893 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
10894 completion tables when completing error conditions and
10895 `declare' arguments.
10896 (lisp-complete-symbol, field-complete): Mark as obsolete.
10897 (check-parens): Unmatched parens are user errors.
10898 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
10899
10900 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
10901
10902 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
10903 command changed buffer (ie. `flyspell-pre-buffer' is not current
10904 buffer), which prevents making decisions based on invalid value of
10905 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
10906 cause an error when `flyspell-pre-point' was nil after switching
10907 buffers.
10908 (flyspell-post-command-hook): No longer needs to change buffers when
10909 checking pre-word. While at it remove unnecessary progn.
10910
10911 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
10912
10913 * textmodes/ispell.el (ispell-add-per-file-word-list):
10914 Fix `flyspell-correct-word-before-point' error when accepting
10915 words and `coment-padding' is an integer by using
10916 `comment-normalize-vars' (Bug #14214).
10917
10918 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
10919
10920 New defun movement commands.
10921 * progmodes/python.el (python-nav--syntactically)
10922 (python-nav--forward-defun, python-nav-backward-defun)
10923 (python-nav-forward-defun): New functions.
10924
10925 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
10926
10927 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
10928 (python-syntax-context): Use named compiler-macro for backwards
10929 compatibility with Emacs 24.x.
10930
10931 2013-04-17 Leo Liu <sdl.web@gmail.com>
10932
10933 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
10934 octave-hide-process-buffer.
10935
10936 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
10937
10938 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
10939 (bug#14216).
10940
10941 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
10942
10943 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
10944 Fix adjustment of offset when receiving incomplete responses from GDB
10945 (bug#14129).
10946
10947 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
10948
10949 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
10950 python-mode-abbrev-table.
10951 (python-skeleton-define): Adjust accordingly.
10952 (python-mode-abbrev-table): New table that inherits from it so that
10953 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
10954
10955 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
10956 (abbrev-symbol): Use it.
10957 (abbrev--before-point): Use it since we already handle inheritance.
10958
10959 2013-04-16 Leo Liu <sdl.web@gmail.com>
10960
10961 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
10962 binding to info-lookup-symbol.
10963
10964 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
10965
10966 * minibuffer.el (completion--twq-all):
10967 * term/ns-win.el (ns-initialize-window-system):
10968 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
10969
10970 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
10971
10972 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
10973 global bindings.
10974
10975 * doc-view.el (doc-view-start-process): Handle url-handler directories.
10976
10977 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
10978
10979 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
10980 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
10981 to nil.
10982 (ruby-end-of-defun): Remove the unused arg, change the docstring
10983 to reflect that this function is only used as the value of
10984 `end-of-defun-function'.
10985 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
10986 to reflect an earlier change that beginning/end-of-defun functions
10987 jump between methods in a class definition, as well as top-level
10988 functions.
10989
10990 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
10991
10992 * minibuffer.el (minibuffer-complete): Don't just scroll
10993 a *Completions* that's been iconified.
10994 (minibuffer-force-complete): Make sure repetitions do cycle when going
10995 through completion-in-region -> minibuffer-complete.
10996
10997 2013-04-15 Alan Mackenzie <acm@muc.de>
10998
10999 Correct the placement of c-cpp-delimiters when there're #s not at
11000 col 0.
11001
11002 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
11003 place a submatch around the #.
11004 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
11005 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
11006 on the #, not BOL.
11007
11008 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
11009
11010 * emacs-lisp/nadvice.el: Properly test names when adding advice.
11011 (advice--member-p): New arg `name'.
11012 (advice--add-function, advice-member-p): Use it (bug#14202).
11013
11014 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
11015
11016 Reformulate java imenu-generic-expression.
11017 The old expression contained ill formed regexps.
11018
11019 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
11020 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
11021 (cc-imenu-java-method-arg-regexp): New defconsts.
11022 (cc-imenu-java-build-type-args-regex): New defun.
11023 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
11024 handling of spaces in the regexp.
11025
11026 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11027
11028 * textmodes/ispell.el (ispell-command-loop): Remove
11029 flyspell highlight of a word when ispell accepts it (bug #14178).
11030
11031 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
11032
11033 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
11034 uses code from the previous `ange-ftp-run-real-handler'.
11035 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
11036 only in case that function exist. This is needed for proper
11037 unloading of Tramp.
11038
11039 2013-04-15 Tassilo Horn <tsdh@gnu.org>
11040
11041 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
11042
11043 * textmodes/reftex.el (reftex-compile-variables): Use it.
11044
11045 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
11046
11047 * files.el (normal-mode): Only use default major-mode if no other mode
11048 was specified.
11049
11050 * emacs-lisp/trace.el (trace-values): New function.
11051
11052 * files.el: Allow : in local variables (bug#14089).
11053 (hack-local-variable-regexp): New var.
11054 (hack-local-variables-prop-line, hack-local-variables): Use it.
11055
11056 2013-04-13 Roland Winkler <winkler@gnu.org>
11057
11058 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
11059 data before it gets modified by bibtex-beginning-of-entry.
11060
11061 2013-04-13 Roland Winkler <winkler@gnu.org>
11062
11063 * textmodes/bibtex.el (bibtex-url): Doc fix.
11064
11065 2013-04-13 Roland Winkler <winkler@gnu.org>
11066
11067 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
11068 does not visit a BibTeX file, exclude it from the list of buffers
11069 returned by bibtex-initialize.
11070
11071 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
11072
11073 * window.el (split-window): Remove interactive form, since as a
11074 command this function is a special case of split-window-below.
11075 Correct doc string.
11076
11077 2013-04-12 Roland Winkler <winkler@gnu.org>
11078
11079 * faces.el (read-face-name): Do not override value of arg default.
11080 Allow single faces and strings as default values. Remove those
11081 elements from return value that are not faces.
11082 (describe-face): Simplify.
11083 (face-at-point): New optional args thing and multiple so that this
11084 function can provide the same functionality previously provided by
11085 read-face-name.
11086 (make-face-bold, make-face-unbold, make-face-italic)
11087 (make-face-unitalic, make-face-bold-italic, invert-face)
11088 (modify-face, read-face-and-attribute): Use face-at-point.
11089
11090 * cus-edit.el (customize-face, customize-face-other-window)
11091 * cus-theme.el (custom-theme-add-face)
11092 * face-remap.el (buffer-face-set)
11093 * facemenu.el (facemenu-set-face): Use face-at-point.
11094
11095 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
11096
11097 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
11098
11099 2013-04-10 Tassilo Horn <tsdh@gnu.org>
11100
11101 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
11102 off leading { and trailing } from field values.
11103
11104 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
11105
11106 * emacs-lisp/timer.el (timer--check): New function.
11107 (timer--time, timer-set-function, timer-event-handler): Use it.
11108 (timer-set-idle-time): Simplify.
11109 (timer--activate): CSE.
11110 (timer-event-handler): Give more info in error message.
11111 (internal-timer-start-idle): New function, moved from C.
11112
11113 * mpc.el (mpc-proc): Add `restart' argument.
11114 (mpc-proc-cmd): Use it.
11115 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
11116 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
11117 less often.
11118
11119 2013-04-10 Masatake YAMATO <yamato@redhat.com>
11120
11121 * progmodes/sh-script.el: Implement `sh-mode' own
11122 `add-log-current-defun-function' (bug#14112).
11123 (sh-current-defun-name): New function.
11124 (sh-mode): Use the function.
11125
11126 2013-04-09 Bastien Guerry <bzg@gnu.org>
11127
11128 * simple.el (choose-completion-string): Fix docstring (bug#14163).
11129
11130 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
11131
11132 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
11133
11134 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
11135 timer (bug#14156).
11136
11137 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
11138
11139 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
11140 declaration.
11141
11142 2013-04-07 Leo Liu <sdl.web@gmail.com>
11143
11144 * pcmpl-x.el: New file.
11145
11146 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
11147
11148 Do not set x-display-name until X connection is established.
11149 This is needed to prevent from weird situation described at
11150 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
11151 * frame.el (make-frame): Set x-display-name after call to
11152 window system initialization function, not before.
11153 * term/x-win.el (x-initialize-window-system): Add optional
11154 display argument and use it.
11155 * term/w32-win.el (w32-initialize-window-system):
11156 * term/ns-win.el (ns-initialize-window-system):
11157 * term/pc-win.el (msdos-initialize-window-system):
11158 Add compatible optional display argument.
11159
11160 2013-04-06 Eli Zaretskii <eliz@gnu.org>
11161
11162 * files.el (normal-backup-enable-predicate): On MS-Windows and
11163 MS-DOS compare truenames of temporary-file-directory and of the
11164 file, so that 8+3 aliases (usually found in $TEMP on Windows)
11165 don't fail comparison by compare-strings. Also, compare file
11166 names case-insensitively on MS-Windows and MS-DOS.
11167
11168 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
11169
11170 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
11171 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
11172
11173 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
11174
11175 * whitespace.el (whitespace-color-on, whitespace-color-off):
11176 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
11177
11178 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
11179
11180 * ispell.el (ispell-set-spellchecker-params):
11181 Really set `ispell-args' for all equivs.
11182
11183 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
11184
11185 * ido.el (ido-completions): Use extra elements of ido-decorations
11186 (bug#14143).
11187 (ido-decorations): Update docstring.
11188
11189 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
11190
11191 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
11192 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
11193 nil during initialization, in order not to miss changes since the
11194 file was opened. (Bug#14140)
11195
11196 2013-04-05 Leo Liu <sdl.web@gmail.com>
11197
11198 * kmacro.el (kmacro-call-macro): Fix bug#14135.
11199
11200 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
11201
11202 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
11203
11204 2013-04-04 Glenn Morris <rgm@gnu.org>
11205
11206 * electric.el (electric-pair-inhibit-predicate): Add :version.
11207
11208 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
11209
11210 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
11211 when a package is required several times (bug#14082).
11212
11213 2013-04-04 Roland Winkler <winkler@gnu.org>
11214
11215 * faces.el (read-face-name): Behave as promised by the docstring.
11216 Assume that arg default is a list of faces.
11217 (describe-face): Call read-face-name with list of default faces.
11218
11219 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11220
11221 * bookmark.el: Fix deletion of bookmarks (bug#13972).
11222 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
11223 (bookmark-bmenu-execute-deletions): Only skip first line if it's
11224 the header.
11225 (bookmark-exit-hook-internal): Save even if list is empty.
11226
11227 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
11228
11229 * emacs-lisp/package.el (package-pinned-packages): New var.
11230 (package--add-to-archive-contents): Obey it (bug#14118).
11231
11232 2013-04-03 Alan Mackenzie <acm@muc.de>
11233
11234 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
11235 Also adapt to the new values of element 7 of a parse state.
11236
11237 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
11238 parameter `not-in-delimiter'. Handle being inside comment opener.
11239 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
11240 character in case we're typing a '*' after a '/'.
11241 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
11242 instead by passing the parameter to c-state-pp-to-literal.
11243
11244 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
11245 for elt. 7 of a parse state.
11246
11247 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
11248
11249 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
11250 * international/latin1-disp.el, international/mule-util.el:
11251 * language/cyril-util.el, language/european.el, language/ind-util.el:
11252 * language/lao-util.el, language/thai.el, language/tibet-util.el:
11253 * language/tibetan.el, language/viet-util.el:
11254 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
11255
11256 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
11257
11258 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
11259 (electric-pair-post-self-insert-function): Use it.
11260 (electric-pair-default-inhibit): New function, extracted from
11261 electric-pair-post-self-insert-function.
11262
11263 2013-03-31 Roland Winkler <winkler@gnu.org>
11264
11265 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
11266
11267 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
11268
11269 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
11270
11271 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
11272
11273 Un-indent after "pass" and "return" statements (Bug#13888)
11274 * progmodes/python.el (python-indent-block-enders): New var.
11275 (python-indent-calculate-indentation): Use it.
11276
11277 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
11278
11279 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
11280 defun. Defining it as defalias could introduce too eager
11281 byte-compiler optimization. (Bug#14030)
11282
11283 2013-03-30 Chong Yidong <cyd@gnu.org>
11284
11285 * iswitchb.el (iswitchb-read-buffer): Fix typo.
11286
11287 2013-03-30 Leo Liu <sdl.web@gmail.com>
11288
11289 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
11290 (kmacro-execute-from-register): Pass the keyboard macro to
11291 kmacro-call-macro or repeating won't work correctly.
11292
11293 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
11294
11295 * progmodes/subword.el: Back to using `forward-symbol'.
11296
11297 * subr.el (forward-whitespace, forward-symbol)
11298 (forward-same-syntax): Move from thingatpt.el.
11299
11300 2013-03-29 Leo Liu <sdl.web@gmail.com>
11301
11302 * kmacro.el (kmacro-to-register): New command.
11303 (kmacro-execute-from-register): New function.
11304 (kmacro-keymap): Bind to 'x'. (Bug#14071)
11305
11306 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
11307
11308 * mpc.el: Use defvar-local and setq-local.
11309 (mpc--proc-connect): Connection failures are not bugs.
11310 (mpc-mode-map): `follow-link' only applies to the buffer's content.
11311 (mpc-volume-map): Bind to the up-events.
11312
11313 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
11314
11315 * progmodes/subword.el (superword-mode): Use `forward-sexp'
11316 instead of `forward-symbol'.
11317
11318 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
11319
11320 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
11321 (edebug--recursive-edit): Use it.
11322 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
11323 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
11324
11325 2013-03-28 Leo Liu <sdl.web@gmail.com>
11326
11327 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
11328
11329 2013-03-27 Eli Zaretskii <eliz@gnu.org>
11330
11331 * facemenu.el (list-colors-callback): New defvar.
11332 (list-colors-redisplay): New function.
11333 (list-colors-display): Install list-colors-redisplay as the
11334 revert-buffer-function. (Bug#14063)
11335
11336 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
11337
11338 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
11339 and suffixes don't overlap (bug#14061).
11340
11341 * case-table.el: Use lexical-binding.
11342 (case-table-get-table): New function.
11343 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
11344
11345 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
11346
11347 * progmodes/subword.el: Add `superword-mode' to do word motion
11348 over symbol_words (parallels and leverages `subword-mode' which
11349 does word motion inside MixedCaseWords).
11350
11351 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
11352
11353 * eshell/em-unix.el: Move su and sudo to...
11354 * eshell/em-tramp.el: ...Eshell tramp module.
11355
11356 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11357
11358 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
11359 Change return value to be a sexp. Delay `get-buffer' to after
11360 restoring the desktop (bug#13951).
11361
11362 2013-03-26 Leo Liu <sdl.web@gmail.com>
11363
11364 * register.el: Move semantic tag handling back to
11365 cedet/semantic/senator.el. (Bug#14052)
11366
11367 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11368
11369 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
11370 into the prompt either (bug#13963).
11371
11372 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
11373
11374 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
11375 part of "(error-foo)".
11376
11377 2013-03-24 Juri Linkov <juri@jurta.org>
11378
11379 * replace.el (list-matching-lines-prefix-face): New defcustom.
11380 (occur-1): Pass `list-matching-lines-prefix-face' to the function
11381 `occur-engine' if `face-differs-from-default-p' returns t.
11382 (occur-engine): Add `,' inside backquote construct to evaluate
11383 `prefix-face'. Propertize the prefix with the `prefix-face' face.
11384 Pass `prefix-face' to the functions `occur-context-lines' and
11385 `occur-engine-add-prefix'.
11386 (occur-engine-add-prefix, occur-context-lines): Add optional arg
11387 `prefix-face' and propertize the prefix with `prefix-face'.
11388 (Bug#14017)
11389
11390 2013-03-24 Leo Liu <sdl.web@gmail.com>
11391
11392 * nxml/rng-valid.el (rng-validate-while-idle)
11393 (rng-validate-quick-while-idle): Guard against deleted buffer.
11394 (Bug#13999)
11395
11396 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
11397 is the last entry in kill-buffer-hook.
11398
11399 * files.el (kill-buffer-hook): Doc fix.
11400
11401 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
11402
11403 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
11404 Make it safe-local.
11405
11406 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
11407
11408 2013-03-23 Leo Liu <sdl.web@gmail.com>
11409
11410 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
11411 Remove.
11412
11413 * nxml/rng-valid.el (rng-validate-mode)
11414 (rng-after-change-function, rng-do-some-validation):
11415 * nxml/rng-maint.el (rng-validate-buffer):
11416 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
11417 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
11418 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
11419 (nxml-extend-after-change-region): Use with-silent-modifications.
11420
11421 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
11422 timer-idle-list.
11423
11424 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
11425 (rng-next-error-1, rng-previous-error-1): Do not let-bind
11426 timer-idle-list. (Bug#13999)
11427
11428 2013-03-23 Juri Linkov <juri@jurta.org>
11429
11430 * info.el (info-index-match): New face.
11431 (Info-index, Info-apropos-matches): Add a nested subgroup to the
11432 main pattern and add text properties with the new face to matches
11433 in index entries relative to the beginning of the index entry.
11434 (Bug#14015)
11435
11436 2013-03-21 Eric Ludlam <zappo@gnu.org>
11437
11438 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
11439 Inhibit read only while inserting objects.
11440
11441 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
11442
11443 * progmodes/cfengine.el: Update docs to mention
11444 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
11445 symbol motion. Remove "_" from the word syntax.
11446
11447 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
11448
11449 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
11450 syntax for both `cfengine2-mode' and `cfengine3-mode'.
11451
11452 2013-03-20 Juri Linkov <juri@jurta.org>
11453
11454 * info.el (Info-next-reference-or-link)
11455 (Info-prev-reference-or-link): New functions.
11456 (Info-next-reference, Info-prev-reference): Use them.
11457 (Info-try-follow-nearest-node): Handle footnote navigation.
11458 (Info-fontify-node): Fontify footnotes. (Bug#13989)
11459
11460 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
11461
11462 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
11463 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
11464
11465 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
11466
11467 Suppress unnecessary non-ASCII chatter during build process.
11468 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
11469 (batch-skkdic-convert): Suppress most of the chatter.
11470 It's not needed so much now that machines are faster,
11471 and its non-ASCII component was confusing; see Dmitry Gutov in
11472 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
11473
11474 2013-03-20 Leo Liu <sdl.web@gmail.com>
11475
11476 * ido.el (ido-chop): Fix bug#10994.
11477
11478 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
11479
11480 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
11481 Remove vars.
11482 (whitespace-color-on, whitespace-color-off):
11483 Use `font-lock-fontify-buffer' (Bug#13817).
11484
11485 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
11486
11487 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
11488 remapping in mode-line.
11489 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
11490
11491 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
11492
11493 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
11494 value for `whitespace-line' face (Bug#13875).
11495 (whitespace-font-lock-keywords): Change description.
11496 (whitespace-color-on): Don't save `font-lock-keywords' value, save
11497 the constructed keywords instead.
11498 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
11499
11500 2013-03-19 Leo Liu <sdl.web@gmail.com>
11501
11502 * progmodes/compile.el (compilation-display-error): New command.
11503 (compilation-mode-map, compilation-minor-mode-map): Bind it to
11504 C-o. (Bug#13992)
11505
11506 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
11507
11508 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
11509
11510 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
11511
11512 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
11513
11514 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
11515
11516 * net/tramp-compat.el (tramp-compat-user-error): New defun.
11517
11518 * net/tramp-adb.el (tramp-adb-handle-shell-command):
11519 * net/tramp-gvfs.el (top):
11520 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
11521 (tramp-handle-shell-command): Use it.
11522 (tramp-dissect-file-name): Raise an error when hostname is a
11523 method name, and neither method nor user is specified.
11524
11525 * net/trampver.el: Update release number.
11526
11527 2013-03-18 Leo Liu <sdl.web@gmail.com>
11528
11529 Make sure eldoc can be turned off properly.
11530 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
11531 eldoc-mode.
11532 (eldoc-display-message-p): Revert last change.
11533 (eldoc-display-message-no-interference-p)
11534 (eldoc-print-current-symbol-info): Tweak.
11535
11536 2013-03-18 Tassilo Horn <tsdh@gnu.org>
11537
11538 * doc-view.el (doc-view-new-window-function): Check the new window
11539 overlay's display property instead the char property of the
11540 buffer's first char. Use `with-selected-window' instead of
11541 `save-window-excursion' with `select-window'.
11542 (doc-view-document->bitmap): Check the current doc-view overlay's
11543 display property instead the char property of the buffer's first char.
11544
11545 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
11546
11547 Automate the build of ja-dic.el (Bug#13984).
11548 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
11549 from the input, rather than assume that it's been done for us by the
11550 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
11551 the current date into a ja-dic.el comment, as that complicates
11552 regression testing.
11553
11554 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
11555
11556 * whitespace.el: Fix double evaluation.
11557 (whitespace-space, whitespace-hspace, whitespace-tab)
11558 (whitespace-newline, whitespace-trailing, whitespace-line)
11559 (whitespace-space-before-tab, whitespace-indentation)
11560 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
11561 obsolete defvars.
11562 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
11563 (whitespace-color-on): Use a single font-lock-add-keywords call.
11564 Fix double-evaluation of face variables.
11565
11566 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
11567
11568 * net/tramp-adb.el (tramp-adb-parse-device-names):
11569 Use `start-process' instead of `call-process'. Otherwise, the
11570 function might be blocked under MS Windows. (Bug#13299)
11571
11572 2013-03-17 Leo Liu <sdl.web@gmail.com>
11573
11574 Extend eldoc to display info in the mode-line. (Bug#13978)
11575 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
11576 (eldoc-mode-line-string): New variable.
11577 (eldoc-minibuffer-message): New function.
11578 (eldoc-message-function): New variable.
11579 (eldoc-message): Use it.
11580 (eldoc-display-message-p)
11581 (eldoc-display-message-no-interference-p):
11582 Support eldoc-post-insert-mode.
11583
11584 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
11585 (eval-expression): Run it.
11586
11587 2013-03-17 Roland Winkler <winkler@gnu.org>
11588
11589 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
11590 strings in the list of return values.
11591
11592 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
11593
11594 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
11595 radix before checking for HMS forms.
11596
11597 2013-03-16 Leo Liu <sdl.web@gmail.com>
11598
11599 * progmodes/scheme.el: Add indentation and font-locking for λ.
11600 (Bug#13975)
11601
11602 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
11603
11604 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
11605 token before point (bug#13942).
11606
11607 2013-03-16 Leo Liu <sdl.web@gmail.com>
11608
11609 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
11610
11611 2013-03-16 Eli Zaretskii <eliz@gnu.org>
11612
11613 * startup.el (command-line-normalize-file-name): Fix handling of
11614 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
11615 <xfq.free@gmail.com> in
11616 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
11617
11618 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
11619
11620 Sync with Tramp 2.2.7.
11621
11622 * net/trampver.el: Update release number.
11623
11624 2013-03-14 Tassilo Horn <tsdh@gnu.org>
11625
11626 * doc-view.el: Fix bug#13887.
11627 (doc-view-insert-image): Don't modify overlay associated to
11628 non-live windows, and implement horizontal centering of image in
11629 case it's smaller than the window.
11630 (doc-view-new-window-function): Force redisplay of new windows on
11631 doc-view buffers.
11632
11633 2013-03-13 Karl Fogel <kfogel@red-bean.com>
11634
11635 * saveplace.el (save-place-alist-to-file): Don't sort
11636 `save-place-alist', just pretty-print it (bug#13882).
11637
11638 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
11639
11640 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
11641 Check whether `default-file-name-coding-system' is bound.
11642 It isn't in XEmacs.
11643
11644 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
11645
11646 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
11647 backquotes for `obsolete' (bug#13929).
11648
11649 * international/mule.el (find-auto-coding): Include file name in
11650 obsolescence warning (bug#13922).
11651
11652 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
11653
11654 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
11655 for CFEngine 3-specific indentation.
11656 (cfengine3-indent-line): Use it. Fix up category regex.
11657 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
11658
11659 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
11660
11661 * type-break.el (type-break-file-name):
11662 * textmodes/remember.el (remember-data-file):
11663 * strokes.el (strokes-file):
11664 * shadowfile.el (shadow-initialize):
11665 * saveplace.el (save-place-file):
11666 * ps-bdf.el (bdf-cache-file):
11667 * progmodes/idlwave.el (idlwave-config-directory):
11668 * net/quickurl.el (quickurl-url-file):
11669 * international/kkc.el (kkc-init-file-name):
11670 * ido.el (ido-save-directory-list-file):
11671 * emulation/viper.el (viper-custom-file-name):
11672 * emulation/vip.el (vip-startup-file):
11673 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
11674 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
11675
11676 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
11677
11678 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
11679 * language/thai-word.el: Switch to UTF-8.
11680
11681 See ChangeLog.16 for earlier changes.
11682
11683 ;; Local Variables:
11684 ;; coding: utf-8
11685 ;; End:
11686
11687 Copyright (C) 2011-2013 Free Software Foundation, Inc.
11688
11689 This file is part of GNU Emacs.
11690
11691 GNU Emacs is free software: you can redistribute it and/or modify
11692 it under the terms of the GNU General Public License as published by
11693 the Free Software Foundation, either version 3 of the License, or
11694 (at your option) any later version.
11695
11696 GNU Emacs is distributed in the hope that it will be useful,
11697 but WITHOUT ANY WARRANTY; without even the implied warranty of
11698 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11699 GNU General Public License for more details.
11700
11701 You should have received a copy of the GNU General Public License
11702 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.