* kmacro.el (kmacro-to-register): New command.
[bpt/emacs.git] / lisp / ChangeLog
1 2013-03-29 Leo Liu <sdl.web@gmail.com>
2
3 * kmacro.el (kmacro-to-register): New command.
4 (kmacro-execute-from-register): New function.
5 (kmacro-keymap): Bind to 'x'. (Bug#14071)
6
7 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
8
9 * mpc.el: Use defvar-local and setq-local.
10 (mpc--proc-connect): Connection failures are not bugs.
11 (mpc-mode-map): `follow-link' only applies to the buffer's content.
12 (mpc-volume-map): Bind to the up-events.
13
14 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
15
16 * progmodes/subword.el (superword-mode): Use `forward-sexp'
17 instead of `forward-symbol'.
18
19 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
20
21 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
22 (edebug--recursive-edit): Use it.
23 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
24 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
25
26 2013-03-28 Leo Liu <sdl.web@gmail.com>
27
28 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
29
30 2013-03-27 Eli Zaretskii <eliz@gnu.org>
31
32 * facemenu.el (list-colors-callback): New defvar.
33 (list-colors-redisplay): New function.
34 (list-colors-display): Install list-colors-redisplay as the
35 revert-buffer-function. (Bug#14063)
36
37 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
38
39 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
40 and suffixes don't overlap (bug#14061).
41
42 * case-table.el: Use lexical-binding.
43 (case-table-get-table): New function.
44 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
45
46 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
47
48 * progmodes/subword.el: Add `superword-mode' to do word motion
49 over symbol_words (parallels and leverages `subword-mode' which
50 does word motion inside MixedCaseWords).
51
52 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
53
54 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
55 Change return value to be a sexp. Delay `get-buffer' to after
56 restoring the desktop (bug#13951).
57
58 2013-03-26 Leo Liu <sdl.web@gmail.com>
59
60 * register.el: Move semantic tag handling back to
61 cedet/semantic/senator.el. (Bug#14052)
62
63 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
64
65 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
66 into the prompt either (bug#13963).
67
68 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
69
70 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
71 part of "(error-foo)".
72
73 2013-03-24 Juri Linkov <juri@jurta.org>
74
75 * replace.el (list-matching-lines-prefix-face): New defcustom.
76 (occur-1): Pass `list-matching-lines-prefix-face' to the function
77 `occur-engine' if `face-differs-from-default-p' returns t.
78 (occur-engine): Add `,' inside backquote construct to evaluate
79 `prefix-face'. Propertize the prefix with the `prefix-face' face.
80 Pass `prefix-face' to the functions `occur-context-lines' and
81 `occur-engine-add-prefix'.
82 (occur-engine-add-prefix, occur-context-lines): Add optional arg
83 `prefix-face' and propertize the prefix with `prefix-face'.
84 (Bug#14017)
85
86 2013-03-24 Leo Liu <sdl.web@gmail.com>
87
88 * nxml/rng-valid.el (rng-validate-while-idle)
89 (rng-validate-quick-while-idle): Guard against deleted buffer.
90 (Bug#13999)
91
92 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
93 is the last entry in kill-buffer-hook.
94
95 * files.el (kill-buffer-hook): Doc fix.
96
97 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
98
99 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
100 Make it safe-local.
101
102 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
103
104 2013-03-23 Leo Liu <sdl.web@gmail.com>
105
106 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
107 Remove.
108
109 * nxml/rng-valid.el (rng-validate-mode)
110 (rng-after-change-function, rng-do-some-validation):
111 * nxml/rng-maint.el (rng-validate-buffer):
112 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
113 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
114 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
115 (nxml-extend-after-change-region): Use with-silent-modifications.
116
117 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
118 timer-idle-list.
119
120 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
121 (rng-next-error-1, rng-previous-error-1): Do not let-bind
122 timer-idle-list. (Bug#13999)
123
124 2013-03-23 Juri Linkov <juri@jurta.org>
125
126 * info.el (info-index-match): New face.
127 (Info-index, Info-apropos-matches): Add a nested subgroup to the
128 main pattern and add text properties with the new face to matches
129 in index entries relative to the beginning of the index entry.
130 (Bug#14015)
131
132 2013-03-21 Eric Ludlam <zappo@gnu.org>
133
134 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
135 Inhibit read only while inserting objects.
136
137 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
138
139 * progmodes/cfengine.el: Update docs to mention
140 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
141 symbol motion. Remove "_" from the word syntax.
142
143 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
144
145 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
146 syntax for both `cfengine2-mode' and `cfengine3-mode'.
147
148 2013-03-20 Juri Linkov <juri@jurta.org>
149
150 * info.el (Info-next-reference-or-link)
151 (Info-prev-reference-or-link): New functions.
152 (Info-next-reference, Info-prev-reference): Use them.
153 (Info-try-follow-nearest-node): Handle footnote navigation.
154 (Info-fontify-node): Fontify footnotes. (Bug#13989)
155
156 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
157
158 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
159 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
160
161 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
162
163 Suppress unnecessary non-ASCII chatter during build process.
164 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
165 (batch-skkdic-convert): Suppress most of the chatter.
166 It's not needed so much now that machines are faster,
167 and its non-ASCII component was confusing; see Dmitry Gutov in
168 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
169
170 2013-03-20 Leo Liu <sdl.web@gmail.com>
171
172 * ido.el (ido-chop): Fix bug#10994.
173
174 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
175
176 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
177 Remove vars.
178 (whitespace-color-on, whitespace-color-off):
179 Use `font-lock-fontify-buffer' (Bug#13817).
180
181 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
182
183 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
184 remapping in mode-line.
185 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
186
187 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
188
189 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
190 value for `whitespace-line' face (Bug#13875).
191 (whitespace-font-lock-keywords): Change description.
192 (whitespace-color-on): Don't save `font-lock-keywords' value, save
193 the constructed keywords instead.
194 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
195
196 2013-03-19 Leo Liu <sdl.web@gmail.com>
197
198 * progmodes/compile.el (compilation-display-error): New command.
199 (compilation-mode-map, compilation-minor-mode-map): Bind it to
200 C-o. (Bug#13992)
201
202 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
203
204 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
205
206 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
207
208 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
209
210 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
211
212 * net/tramp-compat.el (tramp-compat-user-error): New defun.
213
214 * net/tramp-adb.el (tramp-adb-handle-shell-command):
215 * net/tramp-gvfs.el (top):
216 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
217 (tramp-handle-shell-command): Use it.
218 (tramp-dissect-file-name): Raise an error when hostname is a
219 method name, and neither method nor user is specified.
220
221 * net/trampver.el: Update release number.
222
223 2013-03-18 Leo Liu <sdl.web@gmail.com>
224
225 Make sure eldoc can be turned off properly.
226 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
227 eldoc-mode.
228 (eldoc-display-message-p): Revert last change.
229 (eldoc-display-message-no-interference-p)
230 (eldoc-print-current-symbol-info): Tweak.
231
232 2013-03-18 Tassilo Horn <tsdh@gnu.org>
233
234 * doc-view.el (doc-view-new-window-function): Check the new window
235 overlay's display property instead the char property of the
236 buffer's first char. Use `with-selected-window' instead of
237 `save-window-excursion' with `select-window'.
238 (doc-view-document->bitmap): Check the current doc-view overlay's
239 display property instead the char property of the buffer's first char.
240
241 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
242
243 Automate the build of ja-dic.el (Bug#13984).
244 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
245 from the input, rather than assume that it's been done for us by the
246 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
247 the current date into a ja-dic.el comment, as that complicates
248 regression testing.
249
250 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
251
252 * whitespace.el: Fix double evaluation.
253 (whitespace-space, whitespace-hspace, whitespace-tab)
254 (whitespace-newline, whitespace-trailing, whitespace-line)
255 (whitespace-space-before-tab, whitespace-indentation)
256 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
257 obsolete defvars.
258 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
259 (whitespace-color-on): Use a single font-lock-add-keywords call.
260 Fix double-evaluation of face variables.
261
262 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
263
264 * net/tramp-adb.el (tramp-adb-parse-device-names):
265 Use `start-process' instead of `call-process'. Otherwise, the
266 function might be blocked under MS Windows. (Bug#13299)
267
268 2013-03-17 Leo Liu <sdl.web@gmail.com>
269
270 Extend eldoc to display info in the mode-line. (Bug#13978)
271 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
272 (eldoc-mode-line-string): New variable.
273 (eldoc-minibuffer-message): New function.
274 (eldoc-message-function): New variable.
275 (eldoc-message): Use it.
276 (eldoc-display-message-p)
277 (eldoc-display-message-no-interference-p):
278 Support eldoc-post-insert-mode.
279
280 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
281 (eval-expression): Run it.
282
283 2013-03-17 Roland Winkler <winkler@gnu.org>
284
285 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
286 strings in the list of return values.
287
288 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
289
290 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
291 radix before checking for HMS forms.
292
293 2013-03-16 Leo Liu <sdl.web@gmail.com>
294
295 * progmodes/scheme.el: Add indentation and font-locking for λ.
296 (Bug#13975)
297
298 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
299
300 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
301 token before point (bug#13942).
302
303 2013-03-16 Leo Liu <sdl.web@gmail.com>
304
305 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
306
307 2013-03-16 Glenn Morris <rgm@gnu.org>
308
309 * Version 24.3 released.
310
311 2013-03-16 Eli Zaretskii <eliz@gnu.org>
312
313 * startup.el (command-line-normalize-file-name): Fix handling of
314 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
315 <xfq.free@gmail.com> in
316 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
317
318 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
319
320 Sync with Tramp 2.2.7.
321
322 * net/trampver.el: Update release number.
323
324 2013-03-14 Tassilo Horn <tsdh@gnu.org>
325
326 * doc-view.el Fix bug#13887.
327 (doc-view-insert-image): Don't modify overlay associated to
328 non-live windows, and implement horizontal centering of image in
329 case it's smaller than the window.
330 (doc-view-new-window-function): Force redisplay of new windows on
331 doc-view buffers.
332
333 2013-03-13 Karl Fogel <kfogel@red-bean.com>
334
335 * saveplace.el (save-place-alist-to-file): Don't sort
336 `save-place-alist', just pretty-print it (bug#13882).
337
338 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
339
340 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Check,
341 whether `default-file-name-coding-system' is bound. It isn't in
342 XEmacs.
343
344 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
345
346 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
347 backquotes for `obsolete' (bug#13929).
348
349 * international/mule.el (find-auto-coding): Include file name in
350 obsolescence warning (bug#13922).
351
352 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
353
354 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
355 for CFEngine 3-specific indentation.
356 (cfengine3-indent-line): Use it. Fix up category regex.
357 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
358
359 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
360
361 * type-break.el (type-break-file-name):
362 * textmodes/remember.el (remember-data-file):
363 * strokes.el (strokes-file):
364 * shadowfile.el (shadow-initialize):
365 * saveplace.el (save-place-file):
366 * ps-bdf.el (bdf-cache-file):
367 * progmodes/idlwave.el (idlwave-config-directory):
368 * net/quickurl.el (quickurl-url-file):
369 * international/kkc.el (kkc-init-file-name):
370 * ido.el (ido-save-directory-list-file):
371 * emulation/viper.el (viper-custom-file-name):
372 * emulation/vip.el (vip-startup-file):
373 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
374 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
375
376 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
377
378 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
379 * language/thai-word.el: Switch to UTF-8.
380
381 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
382
383 * recentf.el (recentf-save-file): Use locate-user-emacs-file (bug#13870).
384
385 2013-03-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
386
387 * net/net-utils.el (net-utils-remove-ctrl-m-filter):
388 Use with-current-buffer and don't move point.
389 (net-utils-run-simple): Remove useless code.
390 (net-utils-remove-ctl-m): Remove unused custom.
391
392 2013-03-11 Per Starbäck <starback@stp.lingfil.uu.se>
393
394 * international/characters.el (glyphless-set-char-table-range): New fun.
395 (update-glyphless-char-display): Use it (bug#13744).
396
397 2013-03-11 Teodor Zlatanov <tzz@lifelogs.com>
398
399 * progmodes/cfengine.el: Update for CFEngine 3.4.2 and higher:
400 namespaces in the syntax, indent closer for hanging brace
401 correctly, allow single-quote delimited 'strings', and make
402 `cfengine3-mode' the default.
403
404 2013-03-11 Jean-Philippe Gravel <jpgravel@gmail.com>
405
406 * progmodes/gdb-mi.el: Speed up initialization (bug#10580).
407 Use lexical-binding. Fix up docstring according to conventions.
408 (gdbmi-debug-mode): New var.
409 (gdbmi-start-with, gdbmi-same-start, gdbmi-is-number, gdbmi-bnf-init)
410 (gdbmi-bnf-output, gdbmi-bnf-skip-unrecognized, gdbmi-bnf-gdb-prompt)
411 (gdbmi-bnf-result-record, gdbmi-bnf-out-of-band-record)
412 (gdbmi-bnf-async-record, gdbmi-bnf-stream-record)
413 (gdbmi-bnf-console-stream-output, gdbmi-bnf-target-stream-output)
414 (gdbmi-bnf-log-stream-output, gdbmi-bnf-result-and-async-record-impl)
415 (gdbmi-bnf-incomplete-record-result): New functions.
416 (gdb-car<): Remove function.
417 (gdbmi-record-list): Remove variable.
418 (gdbmi-bnf-state, gdbmi-bnf-offset): New vars.
419 (gdbmi-bnf-result-state-configs): New const.
420 (gud-gdbmi-marker-filter): Rewrite.
421 (gdb-ignored-notification, gdb-thread-created, gdb-thread-exited)
422 (gdb-thread-selected, gdb-running, gdb-starting, gdb-stopped):
423 Add `token' argument.
424 (gdb-done, gdb-error): New functions.
425 (gdb-done-or-error): Add `is-complete' argument. Change arg order.
426
427 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
428
429 * term/xterm.el (xterm--report-background-handler): Don't burp
430 upon timeout.
431 (xterm--version-handler): Extract from terminal-init-xterm.
432 (xterm--query): Don't mishandle timeout. Remove debugging messages.
433 Allow multiple handlers.
434 (terminal-init-xterm): Handle OSX's Terminal.app's incorrect answer.
435
436 * term/xterm.el: Don't discard input (bug#6758). Use lexical-binding.
437 (xterm--report-background-handler, xterm--query): New functions.
438 (terminal-init-xterm): Use them.
439
440 2013-03-11 Michael R. Mauger <michael@mauger.com>
441
442 * progmodes/sql.el Version 3.2
443 Please note that my address changed to <michael@mauger.com>;
444 the <mmaug@yahoo.com> address remains active.
445 (sql-connection-alist): Updates documentation to fix bug#13715.
446 (sql-connect): Handle missing `sql-connection-alist' correctly.
447 (sql-mode-oracle-font-lock-keywords): Add missing keywords.
448 (sql-magic-go, sql-magic-semicolon): Mark with `delete-selection'
449 property.
450 (sql-default-value): New function.
451 (sql-get-login-ext, sql-get-login): Fixes bug where buffer-local
452 values were not used.
453 (sql-rename-buffer): Make sure alternate buffer name has no text
454 properties.
455 (sql-input-sender, sql-execute-feature): Fetch variable with
456 `buffer-local-value' rather than `with-current-buffer'.
457 (sql-*): Use #' function syntax consistently.
458 (sql-*): Use message/error/user-error consistently.
459
460 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
461
462 * xt-mouse.el (xterm-mouse-event-read): Remove.
463 (xterm-mouse--read-event-sequence-1000)
464 (xterm-mouse--read-event-sequence-1006): Use read-event instead.
465
466 2013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
467
468 * term/xterm.el (xterm-function-map): Support format used with
469 formatOtherKeys=1 (bug#13839).
470
471 * emacs-lisp/byte-run.el (dont-compile): Declare obsolete.
472 (with-no-warnings): Use `declare'.
473
474 * whitespace.el (whitespace-enable-predicate): New variable.
475 (whitespace-enable-predicate): Use it.
476
477 * comint.el (comint-send-input, comint-snapshot-last-prompt)
478 (comint-output-filter, comint-update-fence):
479 Use with-silent-modifications.
480
481 2013-03-10 Jambunathan K <kjambunathan@gmail.com>
482
483 * replace.el (occur-read-regexp-defaults-function): New var.
484 (occur-read-regexp-defaults): New defun.
485 (occur-read-primary-args): Propagate above change (bug#13892).
486
487 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
488
489 * mouse.el (mouse-drag-track): Remove left-over debugging code.
490
491 2013-03-09 Michael Albinus <michael.albinus@gmx.de>
492
493 Major rewrite due to changed D-Bus interface of GVFS 1.14.
494
495 * net/tramp-gvfs.el (top): Extend check for gvfs availability.
496 (tramp-gvfs-methods-mounttracker, tramp-gvfs-listmounts)
497 (tramp-gvfs-mountlocation, tramp-gvfs-mountlocation-signature):
498 New defconst.
499 (tramp-gvfs-file-name-handler-alist) [directory-files]
500 [directory-files-and-attributes, file-exists-p, file-modes]:
501 Use Tramp default handler.
502 [file-acl, file-selinux-context, process-file, set-file-acl]:
503 [set-file-modes, set-file-selinux-context, shell-command]:
504 [start-file-process]: Remove handler.
505 [verify-visited-file-modtime]: New handler.
506 (tramp-gvfs-dbus-string-to-byte-array)
507 (tramp-gvfs-dbus-byte-array-to-string): New defuns. Replace all
508 calls of `dbus-string-to-byte-array' and
509 `tramp-gvfs-dbus-byte-array-to-string'.
510 (tramp-gvfs-handle-copy-file)
511 (tramp-gvfs-handle-delete-directory)
512 (tramp-gvfs-handle-delete-file, tramp-gvfs-handle-file-attributes)
513 (tramp-gvfs-handle-file-directory-p)
514 (tramp-gvfs-handle-file-executable-p)
515 (tramp-gvfs-handle-file-name-all-completions)
516 (tramp-gvfs-handle-file-readable-p)
517 (tramp-gvfs-handle-file-writable-p)
518 (tramp-gvfs-handle-insert-directory)
519 (tramp-gvfs-handle-insert-file-contents)
520 (tramp-gvfs-handle-make-directory, tramp-gvfs-handle-rename-file)
521 (tramp-gvfs-handle-set-visited-file-modtime)
522 (tramp-gvfs-handle-write-region): Rewrite.
523 (tramp-gvfs-handle-file-acl)
524 (tramp-gvfs-handle-file-selinux-context)
525 (tramp-gvfs-handle-process-file, tramp-gvfs-handle-set-file-acl)
526 (tramp-gvfs-handle-set-file-modes)
527 (tramp-gvfs-handle-set-file-selinux-context)
528 (tramp-gvfs-handle-shell-command)
529 (tramp-gvfs-handle-start-file-process)
530 (tramp-gvfs-handle-verify-visited-file-modtime): Remove defuns.
531 (tramp-gvfs-url-file-name): Do not use `file-truename', we work
532 over the symlinks. Fix user handling.
533 (top, tramp-gvfs-handler-mounted-unmounted): Handle different names
534 of the D-Bus signals.
535 (tramp-gvfs-connection-mounted-p): Handle different names of the
536 D-Bus methods.
537 (tramp-gvfs-mount-spec-entry): New defun.
538 (tramp-gvfs-mount-spec): Use it.
539 (tramp-gvfs-maybe-open-connection): Check, that in case of "smb"
540 there is a share name. Handle different names of the D-Bus
541 signals and methods. Set connection properties needed for
542 `tramp-check-cached-permissions'.
543 (tramp-gvfs-send-command): Apply `tramp-gvfs-maybe-open-connection'.
544 Return t or nil.
545
546 * net/tramp.el (tramp-backtrace): Move up.
547 (tramp-error): Dump a backtrace into the debug buffer when
548 `tramp-verbose > 9.
549 (tramp-file-mode-type-map, tramp-file-mode-from-int)
550 (tramp-file-mode-permissions, tramp-get-local-uid)
551 (tramp-get-local-gid, tramp-check-cached-permissions): Move from
552 tramp-sh.el.
553
554 * net/tramp-sh.el (tramp-file-mode-type-map)
555 (tramp-check-cached-permissions, tramp-file-mode-from-int)
556 (tramp-file-mode-permissions, tramp-get-local-uid)
557 (tramp-get-local-gid): Move to tramp.el.
558
559 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
560
561 Separate mouse-1-click-follows-link from mouse-drag-region.
562 * mouse.el (mouse--down-1-maybe-follows-link): New function.
563 (key-translation-map): Use it to implement mouse-1-click-follows-link.
564 (mouse-drag-line, mouse-drag-track):
565 Remove mouse-1-click-follows-link code.
566 (mouse--remap-link-click-p): Remove.
567
568 2013-03-08 Jambunathan K <kjambunathan@gmail.com>
569
570 * hi-lock.el (hi-lock-read-regexp-defaults-function): New var.
571 (hi-lock-read-regexp-defaults): New defun.
572 (hi-lock-line-face-buffer, hi-lock-face-buffer)
573 (hi-lock-face-phrase-buffer): Propagate above change.
574 Update docstring (bug#13892).
575
576 * subr.el (find-tag-default-as-regexp): New defun.
577 * replace.el (read-regexp): Propagate above change.
578
579 2013-03-08 Jay Belanger <jay.p.belanger@gmail.com>
580
581 * calc/calc-units.el (calc-convert-units): Fix the way that default
582 new units are stored.
583
584 2013-03-07 Matthias Meulien <orontee@gmail.com>
585
586 * bookmark.el: Define a face to highlight bookmark names in
587 bookmark menu buffers, where the default is a bold face similarly
588 to buffer names in buffer menu buffers.
589 (bookmark-menu-bookmark): New face to highlight bookmark names.
590 (bookmark-insert-location): Remove duplicated text property to
591 conform to buffer list (see `list-buffers').
592 (bookmark-bmenu-list, bookmark-bmenu-hide-filenames): Apply face
593 `bookmark-menu-bookmark' to bookmark names.
594
595 2013-03-07 Matthias Meulien <orontee@gmail.com>
596 Karl Fogel <kfogel@red-bean.com>
597
598 * bookmark.el: Display the bookmark list header similarly to the
599 buffer list header (see `list-buffers'), where the default is now
600 an immovable/immutable header line.
601 (bookmark-bmenu-use-header-line): New variable.
602 (bookmark-bmenu-inline-header-height): New name for
603 `bookmark-bmenu-header-height', to avoid confusion with the code
604 for the new immovable header. All references changed.
605 (bookmark-bmenu-set-header): New function.
606 (bookmark-bmenu-list, bookmark-bmenu-toggle-filenames):
607 Conditionalize header construction accordingly.
608 (bookmark-bmenu-ensure-position): Conditionalize the skipping of
609 the inline header height.
610 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
611 Conditionalize the skipping of the inline header height.
612
613 2013-03-07 Dmitry Gutov <dgutov@yandex.ru>
614
615 * progmodes/js.el (js--multi-line-declaration-indentation):
616 Merge from js2-mode (https://github.com/mooz/js2-mode/issues/89).
617
618 2013-03-06 Dmitry Gutov <dgutov@yandex.ru>
619
620 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
621 Only propertize regexp when not inside a string (Bug#13885).
622
623 2013-03-06 Alan Mackenzie <acm@muc.de>
624
625 Correct the position of point in some line-up functions.
626 * progmodes/cc-align.el (c-lineup-whitesmith-in-block)
627 (c-lineup-assignments, c-lineup-gcc-asm-reg ): take position of
628 point at column 0 rather than at a random place in the line.
629
630 2013-03-05 Michael Albinus <michael.albinus@gmx.de>
631
632 * net/tramp-compat.el (tramp-compat-delete-directory):
633 Implement TRASH argument.
634
635 2013-03-05 Dmitry Gutov <dgutov@yandex.ru>
636
637 Keep pre-existing highlighting in completion candidates (Bug#13250).
638 * minibuffer.el (completions-first-difference): State that the
639 face is "added" in the docstring.
640 (completions-common-part): Same. And don't inherit from default.
641 (completion-hilit-commonality): Prepend 'completions-common-part
642 and 'completion-first-difference faces to the 'face property,
643 instead of replacing the value(s).
644 (completion--insert-strings): Same with 'completions-annotations face.
645 (completion-hilit-commonality): Use 'face instead of
646 'font-lock-face, because it gets priority if the completion
647 strings already have 'face set.
648
649 2013-03-04 Alan Mackenzie <acm@muc.de>
650
651 Replace `last-command-event' by `last-command-char' in XEmacs.
652 * progmodes/cc-defs.el (c-last-command-char): New macro.
653 * progmodes/cc-align.el (c-semi&comma-inside-parenlist)
654 (c-semi&comma-no-newlines-before-nonblanks)
655 (c-semi&comma-no-newlines-for-oneline-inliners): Use the new macro
656 in place of `last-command-event'.
657 * progmodes/cc-cmds.el (c-electric-pound, c-electric-brace)
658 (c-electric-slash, c-electric-semi&comma, c-electric-lt-gt)
659 (c-electric-paren, c-electric-continued-statement): Use the new
660 macro in place of `last-command-event'.
661
662 2013-03-04 Glenn Morris <rgm@gnu.org>
663
664 * files.el (inhibit-local-variables-regexps):
665 Add .diff and .patch. (Bug#13862)
666
667 2013-03-03 Michael Albinus <michael.albinus@gmx.de>
668
669 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Cache,
670 whether the "su" command is available on the device.
671
672 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
673
674 * net/tramp-adb.el (tramp-adb-prompt): Extend regexp.
675 (tramp-adb-handle-process-file): Remove superfluous setting.
676 (tramp-adb-command-exit-status): Handle case that COMMAND is nil.
677 (tramp-adb-barf-unless-okay): Use `tramp-adb-command-exit-status'.
678 (tramp-adb-maybe-open-connection): Apply "su" if user is defined.
679
680 2013-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
681
682 * textmodes/ispell.el: Fix nitpicks and byte-compiler warnings.
683 (ispell-print-if-debug): Build `format' in. Avoid end-of-buffer.
684 (ispell-parse-hunspell-affix-file): Avoid beginning-of-buffer.
685 Use dict-key rather than dict-name for the error message.
686
687 2013-03-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
688
689 * net/net-utils.el (net-utils-run-simple): Don't display-buffer
690 when reverting (bug#13831).
691
692 2013-03-01 Agustín Martín Domingo <agustin.martin@hispalinux.es>
693
694 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
695 Always expand affix-file before storing to protect against changed
696 `default-directory'.
697 (ispell-print-if-debug): Make sure message is printed at the end
698 of the debug buffer.
699
700 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
701
702 * net/tramp.el (tramp-obsolete-methods): New defconst.
703 (tramp-warned-obsolete-methods): New defvar.
704 (tramp-find-method): Check for obsolete methods. Map them to a
705 replacement method if appropriate.
706
707 * net/tramp-sh.el (tramp-methods) [scp1, scp2, ssh1, ssh2, plink1]:
708 Remove methods.
709 (top): Remove completion functions for "scp1", "scp2", "ssh1",
710 "ssh2" and "plink1".
711
712 2013-02-28 Dale Sedivec <dale@codefu.org>
713
714 * textmodes/sgml-mode.el (sgml-syntax-propertize-function):
715 Return valid syntax-table property value when converting
716 quotes within text from string syntax to punctuation syntax (bug#13844).
717
718 2013-02-28 Juri Linkov <juri@jurta.org>
719
720 * dired-aux.el (dired-diff): If file at point is a backup file,
721 use its original as the default value, and reverse the order
722 of arguments to the `diff' call. Doc fix. (Bug#13772)
723
724 2013-02-28 Michael Albinus <michael.albinus@gmx.de>
725
726 * net/tramp-adb.el (tramp-adb-sdk-dir): Remove. Replaced by ...
727 (tramp-adb-program): New defcustom. Remove function. Adapt calls.
728
729 2013-02-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
730
731 Initial support for hunspell dictionaries auto-detection (Bug#13639)
732
733 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
734 Ask hunspell about available and default dictionaries.
735 (ispell-parse-hunspell-affix-file): Extract relevant info from
736 hunspell affix file.
737 (ispell-hunspell-fill-dictionary-entry): Fill non-initialized
738 `ispell-dictionary-alist' entry for given dictionary after info
739 provided by `ispell-parse-hunspell-affix-file'.
740 (ispell-hunspell-dict-paths-alist): New defvar to contain an alist
741 of parsed hunspell dicts and associated affix files.
742 (ispell-hunspell-dictionary-alist): New defvar to contain an alist
743 of parsed hunspell dicts and associated parameters.
744 (ispell-set-spellchecker-params):
745 Call `ispell-find-hunspell-dictionaries' if hunspell and not
746 previously done.
747 (ispell-start-process):
748 Call `ispell-hunspell-fill-dictionary-entry' for current
749 dictionary if it is not initialized.
750
751 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
752
753 * imenu.el: Comment nitpicks.
754
755 2013-02-28 Sam Steingold <sds@gnu.org>
756
757 * vc/diff-mode.el (diff-hunk-file-names): Handle filenames with spaces.
758 See <http://stackoverflow.com/questions/14720205>.
759
760 2013-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
761
762 * net/net-utils.el (net-utils--revert-function): New fun (bug#13831).
763 (net-utils-mode): Use it.
764 (net-utils--revert-cmd): New var.
765 (net-utils-run-simple): Set it, and remove bogus interactive spec.
766 (traceroute): Use net-utils-run-simple.
767
768 2013-02-28 Glenn Morris <rgm@gnu.org>
769
770 * textmodes/paragraphs.el (mark-paragraph): Doc fix.
771
772 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
773
774 * doc-view.el: Preserve h&v scroll across C-c C-c C-c C-c.
775 (doc-view-fallback-mode): Remove overlays here.
776 (doc-view-toggle-display): Instead of here. Don't throw away
777 image-mode-winprops-alist.
778 (doc-view-goto-page): Don't mess with hscroll.
779
780 2013-02-27 Thierry Volpiatto <thierry.volpiatto@gmail.com>
781
782 * font-lock.el (lisp-font-lock-keywords-2): Fix highlighting of
783 &optional (bug#13819).
784
785 2013-02-27 Michael Albinus <michael.albinus@gmx.de>
786
787 * net/tramp-adb.el (tramp-adb-parse-device-names)
788 (tramp-adb-maybe-open-connection): Add timeouts. (Bug#13299)
789
790 2013-02-26 Michael Albinus <michael.albinus@gmx.de>
791
792 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
793 Add "2>/dev/null" to the ls command, in case "en_US.utf8" is not
794 defined. POSIX environments fall back to the "C" locale then and
795 emit a warning, which shall be suppressed.
796
797 2013-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
798
799 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Tweak logic.
800 (easy-mmode-set-keymap-parents): Use make-composed-keymap.
801
802 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
803
804 * emacs-lisp/bytecomp.el (byte-compile-file): Use let.
805
806 2013-02-25 Juri Linkov <juri@jurta.org>
807
808 * replace.el (read-regexp): Let-bind `default' to the first
809 element of `defaults' if it's a list, otherwise it should be
810 a string or nil. Let-bind `suggestions' to `defaults' if it's
811 a list, otherwise make a list with the string value. Doc fix.
812 (Bug#13805)
813
814 2013-02-25 Eli Zaretskii <eliz@gnu.org>
815
816 * emacs-lisp/bytecomp.el (byte-recompile-directory): Reject files
817 that match "\`\.#", to avoid compiling lock files, even if they
818 are readable (as they are on MS-Windows).
819
820 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
821
822 * files.el (basic-save-buffer): Remove redundant directory-creation.
823
824 2013-02-24 Jay Belanger <jay.p.belanger@gmail.com>
825
826 * calc/calc-ext.el (math-to-radians-2, math-from-radians-2):
827 Add option to force `pi' to remain symbolic.
828 * calc/calcalg2.el (calcFunc-sin, calcFunc-cos, calcFunc-tan)
829 (calcFunc-cot, calcFunc-csc, calcFunc-sec, calcFunc-arcsin)
830 (calcFunc-arccos, calcFunc-arctan): Use symbolic `pi' in the
831 derivatives, when necessary.
832
833 2013-02-23 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
834
835 * progmodes/ps-mode.el (ps-mode-version): Bump to 1.1i.
836 (ps-mode-octal-region): Use string-make-unibyte.
837
838 2013-02-23 Glenn Morris <rgm@gnu.org>
839
840 * emulation/viper-cmd.el (viper-submit-report):
841 * progmodes/ps-mode.el (ps-mode-maintainer-address):
842 * progmodes/vera-mode.el (vera-mode-help-address):
843 * textmodes/artist.el (artist-maintainer-address):
844 * textmodes/reftex.el (reftex-report-bug):
845 * vc/ediff-util.el (ediff-submit-report):
846 Add bug-gnu-emacs to bug report address.
847
848 * progmodes/simula.el (simula-mode-menu, simula-mode-map):
849 Remove bug report entries.
850 (simula-mode-help-address, simula-submit-bug-report): Make obsolete.
851
852 * emacs-lisp/bytecomp.el (byte-compile-level): New.
853 (byte-compile-file, byte-compile-from-buffer):
854 Use separate input/output buffers for each level of recursive
855 byte-compile-file calls. (Bug#13787)
856
857 2013-02-23 Michael Albinus <michael.albinus@gmx.de>
858
859 * net/tramp.el (tramp-methods): Fix docstring.
860 (tramp-ssh-controlmaster-options): Rename it from
861 `tramp-ssh-controlmaster-template'. Return a string.
862 (tramp-default-method): Adapt check for
863 `tramp-ssh-controlmaster-options'.
864
865 * net/tramp-sh.el (tramp-methods):
866 Replace `tramp-ssh-controlmaster-template' by "%c".
867 (tramp-do-copy-or-rename-file-out-of-band)
868 (tramp-maybe-open-connection): Use it in format spec. Ensure,
869 that it is applied for the first hop only.
870
871 2013-02-22 Juri Linkov <juri@jurta.org>
872
873 * isearch.el (isearch-lazy-highlight-new-loop):
874 Set `isearch-lazy-highlight-start' and `isearch-lazy-highlight-end'
875 to `isearch-other-end' if it is not nil. (Bug#13402)
876
877 * replace.el (replace-highlight): Let-bind `isearch-other-end'
878 to `match-beg'.
879
880 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
881 Let-bind `isearch-other-end' to `start', `isearch-forward' to t
882 and `isearch-error' to nil.
883
884 2013-03-16 Fabián Ezequiel Gallina <fgallina@cuca>
885
886 * progmodes/python.el (python-info-current-defun):
887 Enhance match-data cluttering prevention.
888
889 2013-02-22 Michael Albinus <michael.albinus@gmx.de>
890
891 * net/tramp.el (tramp-tramp-file-p): Fix docstring.
892
893 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
894 Handle multibyte file names.
895
896 2013-02-22 Glenn Morris <rgm@gnu.org>
897
898 * textmodes/sgml-mode.el (sgml-xml-mode): Move before use.
899 (sgml-transformation-function): Give it a :set function.
900 (sgml-tag): Doc fix.
901
902 * cmuscheme.el (scheme-buffer):
903 * progmodes/inf-lisp.el (inferior-lisp-buffer):
904 * progmodes/tcl.el (inferior-tcl-buffer):
905 * textmodes/tex-mode.el (tex-command): Doc fixes.
906
907 * image-mode.el (image-mode): Add mouse bindings for mode-line-process.
908
909 * htmlfontify.el (hfy-default-header): Encode title string. (Bug#7457)
910
911 2013-02-21 Bastien Guerry <bzg@gnu.org>
912
913 * cmuscheme.el (scheme-buffer): Fix docstring. (Bug#13778)
914
915 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
916
917 * progmodes/python.el (python-info-current-defun):
918 Enhance match-data cluttering prevention.
919
920 2013-02-21 Glenn Morris <rgm@gnu.org>
921
922 * net/tramp.el (tramp-get-debug-buffer): Ensure outline.el is not
923 loaded while outline-regexp is let bound. (Bug#9584)
924
925 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
926
927 * progmodes/python.el (python-info-current-defun): Fix failed
928 defun name retrieval because of unwanted match-data cluttering.
929
930 2013-02-21 Michael Albinus <michael.albinus@gmx.de>
931
932 * net/tramp.el (tramp-ssh-controlmaster-template): Make it a
933 defconst. Apply independent check for ControlPersist.
934
935 * net/tramp-sh.el (tramp-sh-handle-set-file-times): Set $UTC only
936 temporarily, via "env".
937
938 2013-02-21 Glenn Morris <rgm@gnu.org>
939
940 * info.el (Info-enable-edit): Remove.
941 (Info-edit): Disable it rather than using Info-enable.
942 (Info-edit-mode-hook, Info-edit-map, Info-edit-mode, Info-edit)
943 (Info-cease-edit): Make editing of Info files obsolete.
944
945 * informat.el (Info-tagify):
946 Handle buffers not visiting files. (Bug#13763)
947
948 2013-02-21 Juanma Barranquero <lekktu@gmail.com>
949
950 * calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
951
952 2013-02-21 Glenn Morris <rgm@gnu.org>
953
954 * files.el (basic-save-buffer): Move check for existing parent
955 directory after hooks. (Bug#13773)
956
957 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
958
959 * simple.el (command-execute): Move from C. Add obsolete check.
960 (extended-command-history): Move from C.
961
962 2013-02-20 Ulrich Müller <ulm@gentoo.org>
963
964 * jka-cmpr-hook.el (jka-compr-compression-info-list)
965 (jka-compr-mode-alist-additions): Handle .txz suffix for
966 XZ-compressed tar archives (bug#13770).
967
968 2013-02-20 Bastien Guerry <bzg@gnu.org>
969
970 * outline.el (outline-regexp, outline-heading-end-regexp):
971 Make variables, not options (bug#13731).
972
973 2013-02-20 Glenn Morris <rgm@gnu.org>
974
975 * image.el (image-current-frame): Change from variable to function.
976 (image-show-frame): Rename from image-nth-frame. Update callers.
977 * image-mode.el (image-multi-frame): New variable.
978 (image-mode-map, image-mode, image-goto-frame):
979 Use image-multi-frame rather than image-current-frame.
980 (image-mode, image-goto-frame): Use image-current-frame as
981 function rather than as variable.
982
983 * emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
984 * emacs-lisp/cl-macs.el (cl--make-type-test)
985 (cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
986
987 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
988
989 * net/tramp-cache.el (tramp-get-hash-table): New defun.
990 (tramp-get-file-property, tramp-set-file-property)
991 (tramp-get-connection-property, tramp-set-connection-property): Use it.
992 (tramp-flush-file-property, tramp-flush-directory-property):
993 Rename argument to KEY.
994 (tramp-flush-connection-property): Simplify a little bit.
995 (tramp-connection-property-p): New defun.
996 (top): Reapply saved values only if there isn't a corresponding
997 entry in `tramp-connection-properties'.
998
999 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
1000
1001 * progmodes/python.el (python-indent-context):
1002 Fix python-info-line-ends-backslash-p call.
1003 (python-info-line-ends-backslash-p)
1004 (python-info-beginning-of-backslash): Respect line-number argument.
1005 (python-info-current-line-comment-p):
1006 Fix behavior when not at beginning-of-line.
1007 (python-util-position): Remove function.
1008 (python-util-goto-line): New function.
1009
1010 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
1011
1012 * eshell/em-unix.el (eshell/su): Require tramp.
1013 (eshell/sudo): Require tramp. Remove now unnecessary check.
1014
1015 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
1016 `tramp-current-connection' in order to avoid an error when several
1017 commands are invoked in a short time in eshell and friends.
1018
1019 2013-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
1020
1021 Cleanup some of EIEIO's namespace.
1022 * emacs-lisp/eieio.el (eieio--define-field-accessors): New macro.
1023 Use it to define all the class-* and object-* field accessors (renamed
1024 to eieio--class-* and eieio--object-*). Update all uses.
1025 (eieio--class-num-slots, eieio--object-num-slots): Rename from
1026 class-num-slots and object-num-slots.
1027 (eieio--check-type): New macro.
1028 (eieio-defclass, eieio-oref, eieio-oref-default, same-class-p)
1029 (object-of-class-p, child-of-class-p, object-slots, class-slot-initarg)
1030 (eieio-oset, eieio-oset-default, object-assoc, object-assoc-list)
1031 (object-assoc-list-safe): Use it.
1032 (eieio-defclass): Tighten regexp.
1033 (eieio--defmethod): Use `memq'. Signal an error for unknown method kind.
1034 Remove unreachable code.
1035 (object-class-fast): Declare obsolete.
1036 (eieio-class-name, eieio-object-name, eieio-object-set-name-string)
1037 (eieio-object-class, eieio-object-class-name, eieio-class-parents)
1038 (eieio-class-children, eieio-class-precedence-list, eieio-class-parent):
1039 Rename from class-name, object-name, object-set-name-string,
1040 object-class, object-class-name, class-parents, class-children,
1041 class-precedence-list, class-parent; with obsolete alias.
1042 (class-of, class-direct-superclasses, class-direct-subclasses):
1043 Declare obsolete.
1044 (eieio-defmethod): Use `memq'; remove unreachable code.
1045 * emacs-lisp/eieio-base.el (eieio-persistent-read):
1046 * emacs-lisp/eieio-opt.el (eieio-class-button, eieio-describe-generic)
1047 (eieio-browse-tree, eieio-browse): Use eieio--check-type.
1048
1049
1050 2013-02-18 Michael Heerdegen <michael_heerdegen@web.de>
1051
1052 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
1053 Use font-lock-keyword-face for macros and special forms (bug#8345).
1054
1055 2013-02-17 Didier Verna <didier@didierverna.net>
1056
1057 * net/network-stream.el (network-stream-open-starttls):
1058 Check that response to the starttls-command is non-nil. (Bug#13706)
1059
1060 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
1061
1062 * font-lock.el (lisp-font-lock-keywords-1, lisp-font-lock-keywords-2):
1063 Don't assume all identifier chars have syntax word.
1064 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
1065 Remove bar-not-symbol. Adjust callers.
1066 (lisp-mode-variables): Don't set a font-lock-syntax-table.
1067
1068 2013-02-17 Leo Liu <sdl.web@gmail.com>
1069
1070 * net/rcirc.el (rcirc-keepalive): Fix invalid timer error.
1071
1072 2013-02-17 Glenn Morris <rgm@gnu.org>
1073
1074 * menu-bar.el (menu-bar-tools-menu): Fix case of EDE entry.
1075
1076 * image-mode.el (image-mode-map): Add image-dired menu entry.
1077
1078 * image-dired.el (tumme): Make this alias obsolete.
1079
1080 2013-02-16 Glenn Morris <rgm@gnu.org>
1081
1082 * image.el (image-animated-types): Remove.
1083 (image-multi-frame-p): Rename from image-animated-p, and generalize.
1084 (image-animated-p): Make obsolete alias.
1085 (image-animate, image-nth-frame, image-animate-timeout):
1086 Use image-multi-frame-p.
1087 (image-animate-timeout): If no delay, use image-default-frame-delay.
1088 * image-mode.el (image-mode, image-toggle-animation):
1089 Use image-multi-frame-p. (Bug#763, bug#10739)
1090 (image-mode): Adjust startup message for a multi-frame image.
1091
1092 * image-mode.el (image-mode-map): Give it a menu.
1093
1094 2013-02-16 Michael Albinus <michael.albinus@gmx.de>
1095
1096 * net/tramp-cache.el (tramp-connection-properties): New customer
1097 option.
1098 (tramp-get-connection-property): Use it.
1099
1100 * net/tramp-compat.el (top): Require 'trampver.
1101
1102 * net/tramp-sh.el (tramp-remote-process-environment):
1103 Set tramp-autoload cookie.
1104
1105 2013-02-16 Kevin Ryde <user42@zip.com.au>
1106
1107 * info-look.el (info-lookup-select-mode): If major-mode has no
1108 info-lookup-alist entry then search up derived-mode-parent (bug#8660).
1109
1110 2013-02-16 Jambunathan K <kjambunathan@gmail.com>
1111
1112 * replace.el (read-regexp): Tighten the regexp that matches tag.
1113 When tag is retrieved with `find-tag-default', use regexp that
1114 matches tag at point. Also update docstring (Bug#13687).
1115
1116 2013-02-16 Eli Zaretskii <eliz@gnu.org>
1117
1118 * autorevert.el (auto-revert-notify-add-watch): With 'w32notify',
1119 add watch for the file, not its parent directory, since w32notify
1120 sets up the watch for the directory internally. (Bug#13725)
1121
1122 2013-02-16 Glenn Morris <rgm@gnu.org>
1123
1124 * image.el (image-default-frame-delay): New variable.
1125 (image-animated-p): Use image-default-frame-delay.
1126 (image-minimum-frame-delay): New constant.
1127 (image-animate-timeout): Use image-minimum-frame-delay.
1128
1129 * image.el (image-nth-frame): New, split from image-animate-timeout.
1130 (image-animate-timeout): Use image-nth-frame.
1131 * image-mode.el (image-goto-frame, image-next-frame)
1132 (image-previous-frame): New commands.
1133 (image-mode-map): Add new frame commands.
1134
1135 2013-02-16 Jonas Bernoulli <jonas@bernoul.li>
1136
1137 * emacs-lisp/tabulated-list.el (tabulated-list-print-col):
1138 If col-desc already has help-echo, use it. (Bug#13563)
1139
1140 2013-02-16 Glenn Morris <rgm@gnu.org>
1141
1142 * image.el (image-current-frame): New variable.
1143 (image-animate-timeout): Set image-current-frame.
1144 * image-mode.el (image-mode): For animated images,
1145 display a frame counter via mode-line-process.
1146
1147 * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
1148
1149 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
1150
1151 * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
1152
1153 2013-02-15 Alan Mackenzie <acm@muc.de>
1154
1155 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): When a
1156 global minor mode has been enabled, call the minor mode function
1157 for a new buffer once only, after the major mode hook, whilst
1158 allowing that hook explicitly to disable the minor mode.
1159 (MODE-disable-in-buffer): New (generated) function.
1160 (disable-MODE): New (generated) buffer local variable.
1161
1162 2013-02-15 Jambunathan K <kjambunathan@gmail.com>
1163
1164 * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
1165 `iswitchb-next-match' and `iswitchb-prev-match' resply.
1166 * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
1167 `ido-next-match' and `ido-prev-match' resply.
1168 * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
1169 Bind `C-.' and `C-,' to `icomplete-forward-completions' and
1170 `icomplete-backward-completions' (Bug#13708).
1171
1172 2013-02-15 Glenn Morris <rgm@gnu.org>
1173
1174 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
1175
1176 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
1177
1178 * net/goto-addr.el (goto-address-fontify): Add start and end args.
1179 (goto-address-fontify-region): Use them instead of narrowing, so
1180 syntax-ppss has access to the whole buffer.
1181
1182 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
1183
1184 * progmodes/python.el: Explain how to restore "cc-mode"-like
1185 forward-sexp movement in header documentation (Bug#13642).
1186 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
1187 comments and strings (GH bug 114).
1188
1189 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
1190
1191 * progmodes/python.el (python-info-current-defun): Fix current
1192 defun detection (Bug#13618).
1193
1194 2013-02-15 Chong Yidong <cyd@gnu.org>
1195
1196 * xml.el (xml-parse-string): Fix typo in handling of bad character
1197 references.
1198
1199 2013-02-15 Glenn Morris <rgm@gnu.org>
1200
1201 * play/fortune.el (fortune-compile): Simplify and fix previous change.
1202
1203 2013-02-14 Michael Albinus <michael.albinus@gmx.de>
1204
1205 * net/tramp.el (tramp-debug-message):
1206 Add `tramp-condition-case-unless-debug'.
1207 (tramp-debug-on-error): New defvar.
1208 (tramp-condition-case-unless-debug): New defun.
1209 (tramp-file-name-handler): Use it.
1210
1211 2013-02-14 Juri Linkov <juri@jurta.org>
1212
1213 * info.el (Info-isearch-filter): Treat non-nil values of
1214 `search-invisible' including its default value `open'
1215 like the value `t' to match hidden text. (Bug#13402)
1216
1217 2013-02-14 Glenn Morris <rgm@gnu.org>
1218
1219 * help-fns.el (find-lisp-object-file-name): Give special treatment
1220 to all ~/.foo.elc files, not just ~/.emacs. (Bug#9007)
1221
1222 2013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change)
1223
1224 * net/quickurl.el (quickurl-save-urls):
1225 Ensure quickurl-urls is not truncated on printing. (Bug#9276)
1226
1227 2013-02-14 Dmitry Gutov <dgutov@yandex.ru>
1228
1229 * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
1230 depth for unfinished percent literal. Not using it in the caller.
1231 (ruby-move-to-block): Jump over multiline literals of all types,
1232 ignoring code-looking contents inside them.
1233 (ruby-add-log-current-method): Improve performance at the expense
1234 of accuracy. `ruby-block-contains-point' is relatively slow, so
1235 only use it for method and singleton class blocks.
1236
1237 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
1238
1239 Use ControlMaster where applicable. (Bug#13677)
1240
1241 * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
1242 replacing `tramp-detect-ssh-controlmaster'.
1243 (tramp-default-method): Use it.
1244
1245 * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
1246 [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
1247 arguments.
1248 [scpc, rsyncc]: Remove methods.
1249 (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
1250 and "ssh2_old".
1251 (tramp-do-copy-or-rename-file-out-of-band): Change trace level.
1252 (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
1253
1254 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1255
1256 * emacs-lisp/package.el (package--initialized): Move before first use.
1257
1258 2013-02-13 Jambunathan K <kjambunathan@gmail.com>
1259
1260 * icomplete.el (icomplete-hide-common-prefix): New user option.
1261 (icomplete-first-match): New face.
1262 (icomplete-completions): Correct handling of "complete but not
1263 unique" (Bug#12638).
1264
1265 2013-02-13 YE Qianchuan <stool.ye@gmail.com> (tiny change)
1266
1267 * descr-text.el (describe-char): Display the script (bug#13698).
1268
1269 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1270
1271 * tmm.el: Use lexical-binding and current-active-maps.
1272 (tmm-menubar): Use map-keymap and pcase.
1273 (tmm--completion-table): New function.
1274 (tmm-prompt): Use it to fix the menu order.
1275 (tmm-get-keybind): Use current-active-maps.
1276
1277 2013-02-12 Christopher Schmidt <christopher@ch.ristopher.com>
1278
1279 Add dired-hide-details-mode. (Bug#6799)
1280
1281 * locate.el (locate-mode): Set parent mode property to dired-mode.
1282
1283 * find-dired.el (find-dired): Call dired-insert-set-properties on
1284 initial information line. Set process mark on end of buffer.
1285 (find-dired-sentinel):
1286 Call dired-insert-set-properties on summary.
1287
1288 * dired.el (dired-hide-details-hide-symlink-targets)
1289 (dired-hide-details-hide-information-lines): New options.
1290 (dired-insert-directory):
1291 Set properties after final treatment of output.
1292 (dired-insert-set-properties):
1293 Set dired-hide-details-* properties.
1294 (dired-mode-map): Bind dired-hide-details-mode.
1295 (dired-mode): Set buffer-invisibility-spec to a list.
1296 (dired-next-line): Skip hidden lines.
1297 (dired-previous-line): Use dired-next-line.
1298 (dired-hide-details-mode): New minor mode.
1299 (dired-hide-details-update-invisibility-spec): New function.
1300
1301 2013-02-13 Glenn Morris <rgm@gnu.org>
1302
1303 * play/yow.el: Move to obsolete/. (Bug#9384)
1304
1305 2013-02-13 Juri Linkov <juri@jurta.org>
1306
1307 * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
1308 to select `ediff-control-frame' and set input focus correctly on Xfce.
1309 (Bug#12218)
1310
1311 2013-02-13 Juri Linkov <juri@jurta.org>
1312
1313 * image-mode.el (image-mode-map):
1314 * doc-view.el (doc-view-mode-map):
1315 * vc/ediff-util.el (ediff-setup-keymap):
1316 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
1317
1318 2013-02-13 Dmitry Gutov <dgutov@yandex.ru>
1319
1320 * progmodes/ruby-mode.el (ruby-move-to-block): Improve
1321 performance. Instead of recalculating indentation fully for each
1322 line, sum up indentation depth based only on visited lines.
1323 (ruby-parse-partial): Increase the depth after "do" even when END
1324 is right after it.
1325 (ruby-parse-partial): When END is in the middle of a percent
1326 literal, increase the depth if the delimiter chars belong to the
1327 paren syntax class.
1328
1329 2013-02-13 Kirill A. Korinskiy <catap@catap.ru>
1330
1331 * play/fortune.el (fortune-compile): Also make the compiled file
1332 if it does not exist at all, not just if it is old. (Bug#5338)
1333
1334 2013-02-13 Glenn Morris <rgm@gnu.org>
1335
1336 * emacs-lisp/package.el (package-menu-execute): Doc fix.
1337
1338 2013-02-13 Yves Baumes <ybaumes@gmail.com> (tiny change)
1339
1340 * lisp/emacs-lisp/package.el (package-menu-execute):
1341 Add optional noquery argument. (Bug#13625)
1342
1343 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
1344
1345 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
1346 if DIR exists and PARENTS is non-nil.
1347
1348 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
1349
1350 * progmodes/js.el (js--multi-line-declaration-indentation):
1351 Silence byte-compiler warning.
1352
1353 2013-02-12 Michael Albinus <michael.albinus@gmx.de>
1354
1355 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
1356
1357 * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
1358 only if it doesn't exist.
1359
1360 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1361 Set process marker.
1362
1363 2013-02-12 Tassilo Horn <tsdh@gnu.org>
1364
1365 * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
1366 UserInstallation when calling soffice to work around LibreOffice
1367 bug 37531.
1368
1369 2013-02-12 Glenn Morris <rgm@gnu.org>
1370
1371 * files.el (basic-save-buffer):
1372 Offer to create a non-existing directory. (Bug#3016)
1373
1374 * calc/calc-graph.el (calc-graph-show-dumb):
1375 * calendar/calendar.el (calendar-mode-map):
1376 * cus-edit.el (custom-mode-map):
1377 * ehelp.el (electric-help-map):
1378 * emulation/vip.el (vip-mode-map):
1379 * epa.el (epa-key-list-mode-map):
1380 * info.el (Info-mode-map):
1381 * mail/rmail.el (rmail-mode-map):
1382 * mail/rmailsum.el (rmail-summary-mode-map):
1383 * man.el (Man-mode-map):
1384 * net/newst-plainview.el (newsticker-mode-map):
1385 * progmodes/cpp.el (cpp-edit-mode-map):
1386 * progmodes/grep.el (grep-mode-map):
1387 * progmodes/idlw-help.el (idlwave-help-mode-map):
1388 * simple.el (special-mode-map):
1389 * startup.el (splash-screen-keymap):
1390 * view.el (view-mode-map):
1391 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
1392
1393 2013-02-11 Elias Pipping <pipping@lavabit.com>
1394
1395 * doc-view.el (doc-view-current-cache-dir): Beware % escapes
1396 (bug#13679).
1397
1398 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
1399
1400 * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
1401
1402 2013-02-11 Glenn Morris <rgm@gnu.org>
1403
1404 * vc/diff.el (diff-use-labels): New variable.
1405 (diff-no-select): Use --label rather than -L, and first
1406 check that it is supported. (Bug#11067)
1407
1408 * files.el (enable-dir-local-variables): New variable.
1409 (hack-dir-local-variables): Respect enable-dir-local-variables.
1410 * tutorial.el (help-with-tutorial):
1411 Ignore directory-local variables. (Bug#11127)
1412
1413 * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
1414 (vc-svn-global-switches): ... to here. (Bug#13513)
1415
1416 2013-02-10 Christopher Schmidt <christopher@ch.ristopher.com>
1417
1418 * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
1419 Handle "foo (bar, default: xxx): " prompts.
1420
1421 2013-02-10 Chong Yidong <cyd@gnu.org>
1422
1423 * files.el (basic-save-buffer-1): Do not set
1424 buffer-file-coding-system-explicit (Bug#4533).
1425
1426 * mail/emacsbug.el (report-emacs-bug): Change binding of
1427 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
1428
1429 2013-02-09 Jay Belanger <jay.p.belanger@gmail.com>
1430
1431 * calc/calc.el (calc-allow-units-as-numbers): New variable.
1432 * calc/calc-units.el (calc-convert-units): Use new variable.
1433
1434 2013-02-09 Eli Zaretskii <eliz@gnu.org>
1435
1436 * subr.el (buffer-file-type, default-buffer-file-type): Remove.
1437
1438 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
1439 buffer-file-type.
1440
1441 * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
1442 (feedmail-run-the-queue, feedmail-dump-message-to-queue)
1443 (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
1444 coding-system-for-write instead.
1445
1446 * jka-compr.el (jka-compr-write-region): Don't bind
1447 buffer-file-type.
1448
1449 * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
1450 buffer-file-type.
1451
1452 * files.el (file-name-buffer-file-type-alist): Remove defvar.
1453 (insert-file-contents-literally): Remove reference to
1454 file-name-buffer-file-type-alist.
1455
1456 * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
1457 make-obsolete.
1458 (find-buffer-file-type-match, find-buffer-file-type): Remove.
1459 (find-buffer-file-type-coding-system): Remove references to
1460 find-buffer-file-type-match, find-buffer-file-type, and
1461 buffer-file-type.
1462 Don't put find-buffer-file-type-coding-system into
1463 file-coding-system-alist.
1464 (find-file-binary, find-file-text): Bind coding-system-for-read
1465 instead of file-name-buffer-file-type-alist.
1466
1467 2013-02-09 Jambunathan K <kjambunathan@gmail.com>
1468
1469 * doc-view.el: Use (and prefer) soffice as default ODF->PDF
1470 converter (Bug#13622).
1471 (doc-view-unoconv-program): Make obsolete alias.
1472 (doc-view-odf->pdf-converter-program): New variable.
1473 (doc-view-odf->pdf-converter-function): New variable.
1474 (doc-view-mode-p): Use it.
1475 (doc-view-odf->pdf-converter-unoconv):
1476 Rename from `doc-view-odf->pdf-converter-unoconv'.
1477 (doc-view-odf->pdf-converter-soffice): New function.
1478 (doc-view-convert-current-doc):
1479 Use `doc-view-odf->pdf-converter-function'.
1480
1481 2013-02-09 Chong Yidong <cyd@gnu.org>
1482
1483 * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
1484 view-echo-area-messages (Bug#13340).
1485
1486 * help.el (view-echo-area-messages): Use display-buffer.
1487
1488 * dired-x.el (dired-do-run-mail): Prompt for confirmation
1489 (Bug#13561).
1490
1491 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1492
1493 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1494 Eval body right away, now that we do eager macroexpansion (bug#13605).
1495
1496 * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
1497 (fundamental-mode): Use run-mode-hooks.
1498
1499 * eshell/esh-proc.el (eshell/kill): Fix last change.
1500 * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
1501
1502 2013-02-08 Aidan Gauland <aidalgol@no8wireless.co.nz>
1503
1504 * eshell/esh-proc.el (eshell/kill): Rewrite.
1505
1506 * eshell/em-ls.el (show-almost-all): Declare.
1507 (eshell-do-ls): Add support for -A argument.
1508
1509 2013-02-08 Jambunathan K <kjambunathan@gmail.com>
1510
1511 * icomplete.el (icomplete-forward-completions)
1512 (icomplete-backward-completions): Handle corner case (bug#13602).
1513
1514 2013-02-07 Michael Albinus <michael.albinus@gmx.de>
1515
1516 * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
1517 be nil. Handle this. (Bug#13636)
1518
1519 2013-02-07 Richard Stallman <rms@gnu.org>
1520
1521 * mail/rmail.el (rmail-variables): Specify `no-conversion' for
1522 `save-buffer-coding-system'.
1523
1524 2013-02-07 Alan Mackenzie <acm@muc.de>
1525
1526 Fix bug in state cache mechanism. Remove 'BOD "strategy". Refactor.
1527 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
1528 (c-parse-state-get-strategy): Don't return 'BOD any more.
1529 (c-append-lower-brace-pair-to-state-cache):
1530 Extra parameter HERE instead of narrowing.
1531 Widen to top of buffer before searching backwards for a brace pair.
1532 (c-state-push-any-brace-pair): Add HERE parameter to function call.
1533 (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
1534 Narrow to parameter HERE, in place of being called narrowed.
1535 (c-remove-stale-state-cache): Extra parameter HERE in place of
1536 narrowing. Check there's an open brace in the cache before
1537 searching for its match.
1538 (c-invalidate-state-cache-1): Add HERE parameter to function call.
1539 (c-parse-state-1): Don't narrow here for 'forward strategy,
1540 instead passing extra parameter HERE to several functions.
1541 Remove 'BOD strategy.
1542
1543 2013-02-06 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
1544
1545 * emacs-lisp/package.el (describe-package-1): Tell what archive is
1546 used to install the package.
1547
1548 2013-02-06 Glenn Morris <rgm@gnu.org>
1549
1550 * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
1551 if we can't get user input. (Bug#6567)
1552
1553 * startup.el (command-line): If simple.el is missing,
1554 test and warn about for some possible causes.
1555
1556 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
1557
1558 * cus-start.el (all): Add ns-use-native-fullscreen.
1559
1560 2013-02-05 Glenn Morris <rgm@gnu.org>
1561
1562 * profiler.el (profiler-report-mode-map): Add a restart menu entry.
1563
1564 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
1565 Fix directory creation in fallback case.
1566
1567 2013-02-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1568
1569 * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
1570 (vc-update-change-log): Use dolist.
1571
1572 2013-02-04 Chong Yidong <cyd@gnu.org>
1573
1574 * thingatpt.el: Rewrite the URL detection routines, absorbing some
1575 code from ffap.el.
1576 (thing-at-point-beginning-of-url-regexp): New var.
1577 (thing-at-point-uri-schemes): Update list of URI schemes.
1578 (thing-at-point-url-regexp): Variable deleted.
1579 (thing-at-point-markedup-url-regexp): Disallow newlines.
1580 (thing-at-point-newsgroup-regexp)
1581 (thing-at-point-newsgroup-heads)
1582 (thing-at-point-default-mail-uri-scheme): New variables.
1583 (thing-at-point-bounds-of-url-at-point): Rewrite. Use ffap's
1584 method to find the possible bounds of the URI at point.
1585 New optional argument to find ill-formed URIs.
1586 (thing-at-point-url-at-point): Rewrite. New arguments for finding
1587 ill-formed URIs. Use thing-at-point-bounds-of-url-at-point, and
1588 the scheme-adding heuristics from ffap-url-at-point.
1589 (thing-at-point--bounds-of-well-formed-url): New function.
1590 Do parens matching to decide whether to include parens in the URI
1591 (Bug#9153).
1592
1593 * ffap.el: Require thingatpt.
1594 (ffap-url-at-point): Delegate URI detection to thing-at-point.
1595 All URI-valid characters are now recognized (Bug#5673).
1596 (ffap-string-at-point): Use use-region-p.
1597 (ffap-url-regexp): Extra character is handled by thing-at-point.
1598 (ffap-string-at-point-mode-alist): Allow parentheses.
1599 (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
1600 Convert to aliases; code moved to thingatpt.el.
1601 (ffap-gnus-hook): Use setq-local.
1602
1603 2013-02-04 Glenn Morris <rgm@gnu.org>
1604
1605 * emacs-lisp/ert.el (ert--explain-format-atom):
1606 Don't try to print non-characters as characters. (Bug#13543)
1607
1608 2013-02-03 Michael Albinus <michael.albinus@gmx.de>
1609
1610 * net/tramp.el (tramp-debug-message): Extend function exclude list.
1611 (tramp-backtrace): New defun.
1612 (tramp-handle-insert-file-contents): Use `visit' when inserting
1613 the local copy.
1614
1615 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
1616 Use `remote-file-name-inhibit-cache'.
1617
1618 2013-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
1619
1620 * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
1621 (bug#13614).
1622
1623 * subr.el (internal--called-interactively-p--get-frame): Avoid filling
1624 current-load-list (bug#13366).
1625
1626 2013-02-02 Christopher Schmidt <christopher@ch.ristopher.com>
1627
1628 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1629 Identify g++ template instantiation trace. (Bug#12287)
1630 (compilation-mode-hook, compilation-start-hook)
1631 (compilation-window-height): Simplify docstrings. (Bug#13379)
1632
1633 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
1634
1635 * mouse.el (mouse-drag-track): Always deactivate the mark before
1636 running the final event's command since that command is in charge of
1637 activating the mark if needed (bug#13523).
1638
1639 2013-02-02 Juri Linkov <juri@jurta.org>
1640
1641 * replace.el (perform-replace): Move let-bindings of isearch-*
1642 variables deeper to the loop that searches for the next match.
1643 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
1644 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
1645 (Bug#13579)
1646
1647 * isearch.el (isearch-search-fun-default): Check for null
1648 first element of isearch-cmds as a precaution when it's used
1649 with inactive isearch.
1650
1651 2013-02-02 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
1652
1653 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
1654 error when buffer in question is narrowed so position 1 is out of
1655 visible part.
1656
1657 2013-02-02 Glenn Morris <rgm@gnu.org>
1658
1659 * textmodes/remember.el (remember-clipboard): Doc fix.
1660
1661 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
1662
1663 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
1664 properties (bug#13179).
1665
1666 2013-02-02 Juri Linkov <juri@jurta.org>
1667
1668 * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
1669 instead of hard-coded default face `match'. (Bug#9438)
1670
1671 2012-02-01 Christopher Schmidt <christopher@ch.ristopher.com>
1672
1673 * vc/vc-arch.el (vc-arch-registered):
1674 * vc/vc-bzr.el (vc-bzr-registered):
1675 * vc/vc-cvs.el (vc-cvs-registered):
1676 * vc/vc-git.el (vc-git-registered):
1677 * vc/vc-hg.el (vc-hg-registered):
1678 * vc/vc-mtn.el (vc-mtn-registered):
1679 * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
1680 (Bug#13139)
1681
1682 * info.el (Info-next-reference, Info-prev-reference): Add numeric
1683 prefix argument. (Bug#11656)
1684
1685 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
1686
1687 * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
1688
1689 2013-02-01 Glenn Morris <rgm@gnu.org>
1690
1691 * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
1692 if the backend is known not to support it.
1693
1694 * imenu.el (imenu-default-create-index-function):
1695 Tweak infinite loop test to check for forward motion as well as none.
1696
1697 2013-02-01 Alex Harsanyi <AlexHarsanyi@gmail.com>
1698
1699 * net/soap-client.el (soap-invoke): Encode the string for
1700 `url-request-data' as UTF-8.
1701 Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
1702
1703 2013-02-01 Glenn Morris <rgm@gnu.org>
1704
1705 * calc/calc-help.el (calc-view-news): Use view-emacs-news.
1706
1707 * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
1708
1709 2013-01-31 Michael Albinus <michael.albinus@gmx.de>
1710
1711 * net/tramp.el (tramp-tramp-file-p): Comment check for
1712 `string-as-unibyte'. The function does not exist on XEmacs, and
1713 likely we need another approach.
1714
1715 * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
1716 `tramp-gw-*' variables are bound.
1717
1718 2013-01-31 Glenn Morris <rgm@gnu.org>
1719
1720 * files.el (basic-save-buffer-2): Choose coding system for
1721 writing the file before backing it up, to reduce delay between
1722 backing up and writing the new version. (Bug#13522)
1723
1724 2013-01-31 Michal Nazarewicz <mina86@mina86.com>
1725
1726 * simple.el (cycle-spacing): New command.
1727 (just-one-space): Use it.
1728
1729 2013-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
1730
1731 * progmodes/opascal.el: Rename from delphi.el. Use lexical-binding.
1732 (opascal-newline-always-indents): Remove custom.
1733 (opascal-tab, opascal-newline): Remove commands.
1734 (opascal-new-comment-line): Insert "\n" instead of calling newline.
1735 (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
1736 (opascal-save-match-data): Remove, use save-match-data instead.
1737 (opascal-save-state): Use with-silent-modifications.
1738
1739 * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
1740 (bug#13585).
1741
1742 2013-01-30 Juri Linkov <juri@jurta.org>
1743
1744 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
1745 Use fullboth as an alias for fullscreen. Suggested by Jan Djärv in
1746 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
1747
1748 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1749
1750 * progmodes/make-mode.el (makefile-backslash-region): Don't compute
1751 column if we're just deleting the backslashes.
1752 (makefile-fill-paragraph): Use eolp.
1753
1754 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
1755
1756 * autorevert.el (auto-revert-use-notify): Fix docstring.
1757
1758 2013-01-30 Leo Liu <sdl.web@gmail.com>
1759
1760 * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
1761
1762 2013-01-30 Glenn Morris <rgm@gnu.org>
1763
1764 * mouse.el (mouse-drag-line): Avoid pushing same event onto
1765 unread-command-events twice in some cases. This tries to implement
1766 the 2012-07-26 changes in a different way. (Bug#13560)
1767
1768 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
1769
1770 * progmodes/python.el
1771 (python-pdbtrack-comint-output-filter-function): Enhancements on
1772 stacktrace detection. (thanks @gnovak)
1773
1774 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1775
1776 * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
1777 (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
1778 Use defvar-local.
1779 (jit-lock-register): Use setq-local.
1780
1781 2013-01-30 Jay Belanger <jay.p.belanger@gmail.com>
1782
1783 * calc-units.el (math-default-units-table): Remove initial value.
1784 (calc-convert-units): Treat expressions where all the units cancel as
1785 if they didn't have units.
1786
1787 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
1788
1789 * net/tramp.el (tramp-process-connection-type): Fix docstring.
1790 (tramp-completion-reread-directory-timeout): Fix type.
1791 (tramp-connection-min-time-diff): New defcustom.
1792
1793 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
1794
1795 2013-01-30 Glenn Morris <rgm@gnu.org>
1796
1797 * imenu.el (imenu-default-create-index-function):
1798 Put back a version of the infinite loop test removed 2013-01-23.
1799
1800 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
1801
1802 * progmodes/python.el (python-shell-parse-command):
1803 Find python-shell-interpreter with modified environment.
1804
1805 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1806
1807 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
1808
1809 2013-01-29 Alan Mackenzie <acm@muc.de>
1810
1811 Amend to fontify /regexp/s in actions correctly.
1812 * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
1813 (c-awk-harmless-string*-here-re): Braces, parens and semicolons
1814 are no longer included.
1815 (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
1816 What used to be these variables without "-line" in the name.
1817 (c-awk-neutral-re): { is no longer neutral. Escaped newlines now are.
1818 (c-awk-non-arith-op-bra-re): Now also matches {.
1819 (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
1820 "return", and "case".
1821 (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
1822 by /.
1823 (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
1824 (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
1825
1826 2013-01-29 Michael Albinus <michael.albinus@gmx.de>
1827
1828 * autorevert.el (auto-revert-use-notify):
1829 Use `custom-initialize-default' for initialization. (Bug#13583)
1830
1831 * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
1832
1833 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1834 Catch `suppress'. Otherwise, `tramp-run-real-handler' might be called
1835 in `tramp-file-name-handler'.
1836 (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
1837 compatibility.
1838 (tramp-compute-multi-hops): Check, whether
1839 `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
1840
1841 2013-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
1842
1843 * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
1844 (bug#13297).
1845
1846 2013-01-27 Dmitry Gutov <dgutov@yandex.ru>
1847
1848 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
1849 checks made superfluous by the \_< operator.
1850 * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
1851 temporarily) broken indentation.
1852 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
1853 Highlight nested constants, too. \_< broke that.
1854
1855 2013-01-27 Nobuyoshi Nakada <nobu@ruby-lang.org>
1856
1857 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
1858 instead of "\\b".
1859
1860 2013-01-27 Michael Albinus <michael.albinus@gmx.de>
1861
1862 * autorevert.el (auto-revert-handler): Notifications which result
1863 from a saved file shall not be taken into account. (Bug#13557)
1864
1865 2013-01-26 Andreas Schwab <schwab@linux-m68k.org>
1866
1867 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
1868 parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
1869 (lisp-mode): Pass t for it. (Bug#13556)
1870
1871 2013-01-25 Alan Mackenzie <acm@muc.de>
1872
1873 AWK Mode: Fix indentation bug at top level. Bug #12274.
1874
1875 * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
1876 just before CASE 5D.
1877
1878 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
1879
1880 * net/socks.el (socks-nslookup-host): Use string-to-number.
1881
1882 2013-01-25 Michael Albinus <michael.albinus@gmx.de>
1883
1884 * autorevert.el (auto-revert-remote-files)
1885 (auto-revert-notify-exclude-dir-regexp): New defcustoms.
1886 (auto-revert-notify-enabled, auto-revert-use-notify)
1887 (auto-revert-notify-watch-descriptor-hash-list)
1888 (auto-revert-notify-modified-p, auto-revert-notify-event-p)
1889 (auto-revert-notify-event-descriptor)
1890 (auto-revert-notify-event-action)
1891 (auto-revert-notify-event-file-name): Doc fix.
1892 (global-auto-revert-mode): Reorder checks.
1893 (auto-revert-notify-rm-watch): Respect changed values of
1894 `auto-revert-notify-watch-descriptor-hash-list'.
1895 (auto-revert-notify-add-watch): Check for
1896 `auto-revert-notify-exclude-dir-regexp'. Adapt filters for
1897 `inotify-add-watch'. Watch `default-directory' instead of
1898 `buffer-file-name'. `auto-revert-notify-watch-descriptor-hash-list'
1899 has a changed meaning now. (Bug#13540)
1900 (auto-revert-notify-handler): Change implementation wrt events
1901 returning from a directory.
1902 (auto-revert-handler): Reorder implementation for checks of remote
1903 files.
1904 (auto-revert-buffers): Fix parentheses error.
1905
1906 2013-01-25 Fabián Ezequiel Gallina <fgallina@cuca>
1907
1908 * progmodes/python.el: Enhancements to header documentation about
1909 skeletons. (Bug#5716)
1910
1911 * imenu.el (imenu-default-create-index-function): Remove useless
1912 infinite loop check. (Bug#13438)
1913
1914 2013-01-25 Alan Mackenzie <acm@muc.de>
1915
1916 Fix a bug in the state cache mechanism. Refactor this a bit.
1917
1918 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
1919 `cache-pos' element from the return value.
1920 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
1921 buffer to enable proper searching from beyond HERE. Amend the
1922 test for detecting the sought brace pair. Amend the value written
1923 to the "brace desert cache" when the brace isn't found.
1924 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
1925 and several other variables analogously.
1926 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
1927 parameter to a locally calculated variable.
1928 (c-parse-state-1): Change the calling conventions to the two
1929 defuns involving `cache-pos'.
1930
1931 2013-01-25 Chong Yidong <cyd@gnu.org>
1932
1933 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
1934
1935 2013-01-24 Aaron Ecay <aaronecay@gmail.com> (tiny change)
1936
1937 * paren.el (show-paren-function): Make sure to set 'priority and
1938 'face only if the overlay does exist.
1939
1940 2013-01-24 Michael Albinus <michael.albinus@gmx.de>
1941
1942 * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
1943
1944 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
1945 basic attributes.
1946 (tramp-sh-handle-set-file-acl): Improve error checking.
1947
1948 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1949
1950 * doc-view.el (doc-view-display): Force mode line update until all
1951 document is converted. Suggested by Stefan Monnier (Bug#13164).
1952
1953 2013-01-23 Bastien Guerry <bzg@gnu.org>
1954
1955 * paren.el (show-paren-function): Make sure an overlay exists
1956 before trying to delete it. Also use `pos' as a position only
1957 when it is an integer.
1958
1959 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
1960
1961 * play/gametree.el (gametree-break-line-here): Use point-marker.
1962
1963 2013-01-22 Michael Albinus <michael.albinus@gmx.de>
1964
1965 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
1966 Mark descriptive parts with `display' property.
1967
1968 2013-01-21 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1969
1970 * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
1971 New variable to map standard dict names to hunspell ones.
1972 (ispell-set-spellchecker-params): Make sure specific dict names
1973 are used for standard dicts with hunspell.
1974
1975 2013-01-21 Tassilo Horn <tsdh@gnu.org>
1976
1977 * textmodes/reftex-cite.el (reftex-format-citation): Add format
1978 chars for note (%N) and url (%U).
1979 * textmodes/reftex-vars.el (reftex-cite-format): Document them.
1980
1981 2013-01-21 Juri Linkov <juri@jurta.org>
1982
1983 * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
1984 in addition to existing separate binding `meta f10' in `global-map'.
1985 (Bug#13484)
1986
1987 2013-01-21 Michael Albinus <michael.albinus@gmx.de>
1988
1989 Improve XEmacs compatibility.
1990
1991 * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
1992
1993 * net/tramp-adb.el (top): Require `time-date'.
1994 (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
1995 (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
1996 Use `tramp-file-name-handler'.
1997 (tramp-adb-maybe-open-connection):
1998 Use `tramp-compat-set-process-query-on-exit-flag'.
1999
2000 * net/tramp-sh.el (tramp-sh-handle-file-acl):
2001 Use `tramp-compat-funcall'.
2002
2003 * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
2004 `tramp-compat-funcall'.
2005
2006 2013-01-21 Jürgen Hötzel <juergen@archlinux.org>
2007
2008 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
2009 reimplementation using "adb shell command ..." instead of running
2010 remote shell interactively.
2011
2012 2013-01-20 Glenn Morris <rgm@gnu.org>
2013
2014 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
2015 Add native profiler menu entries.
2016
2017 * profiler.el (profiler-running-p): New function.
2018 (profiler-cpu-profile): Use profiler-running-p.
2019 (profiler-report-mode-map): Add some more menu entries.
2020
2021 2013-01-19 Glenn Morris <rgm@gnu.org>
2022
2023 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
2024 fixes 2012-12-07 change. (Bug#13499)
2025
2026 2013-01-19 Leo Liu <sdl.web@gmail.com>
2027
2028 * dired.el (dired-get-marked-files): Prune erroneous values due to
2029 last change. (Bug#13152)
2030
2031 2013-01-19 Glenn Morris <rgm@gnu.org>
2032
2033 * progmodes/etags.el (tags-table-check-computed-list):
2034 Preserve point in tags buffer. (Bug#13412)
2035
2036 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
2037
2038 2013-01-19 Christian Wittern <cwittern@gmail.com> (tiny change)
2039 Chong Yidong <cyd@gnu.org>
2040
2041 * image-mode.el (image-next-file, image-previous-file):
2042 New commands (Bug#8453).
2043 (image-mode-map): Bind them to n and p.
2044 (image-mode--images-in-directory): New helper function.
2045
2046 2013-01-19 Chong Yidong <cyd@gnu.org>
2047
2048 * image-mode.el (image-mode-fit-frame): Add a frame argument.
2049 Suggested by Drew Adams (Bug#7730). Handle window decorations;
2050 save and restore the old window configuration.
2051
2052 2013-01-18 Leo Liu <sdl.web@gmail.com>
2053
2054 * progmodes/js.el: Tweak autoload cookie for alias.
2055
2056 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
2057
2058 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
2059 buffer local, again. This was lost with the fix on 2013-01-12.
2060
2061 2013-01-17 Jürgen Hötzel <juergen@archlinux.org>
2062
2063 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
2064 order to support several eshell buffers in parallel.
2065
2066 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
2067
2068 * autorevert.el (auto-revert-use-notify): In the :set function, do
2069 not modify `kill-buffer-hook'.
2070 (auto-revert-notify-rm-watch):
2071 Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
2072 (auto-revert-notify-add-watch): Do not call
2073 `auto-revert-notify-rm-watch', but add it to a buffer local
2074 `kill-buffer-hook'.
2075
2076 2013-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2077
2078 * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
2079 call to `eval' rather than a backquoted lambda.
2080
2081 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2082
2083 * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
2084 to return an explicit nil.
2085 (advice--remove-function): Change accordingly.
2086
2087 * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
2088 the use of nadvice.el.
2089
2090 * progmodes/which-func.el (which-function): Silence imenu errors
2091 (bug#13433).
2092
2093 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
2094
2095 * progmodes/sql.el: (sql-imenu-generic-expression):
2096 (sql-mode-font-lock-object-name): Match schema qualified names.
2097 (sql-connect): Use string keys.
2098 (sql-product-interactive): Wait for interpreter prompt.
2099 (sql-comint-oracle): Set process coding based on NLS_LANG.
2100
2101 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
2102
2103 * progmodes/sql.el (sql-output-to-send): Remove, unused.
2104 (sql-interactive-remove-continuation-prompt):
2105 (sql-send-magic-terminator, sql-interactive-mode): Remove references.
2106
2107 2013-01-14 Leo Liu <sdl.web@gmail.com>
2108
2109 * calendar/calendar.el (calendar-redraw): Sync window-point and point.
2110 (Bug#13420)
2111
2112 2013-01-14 Glenn Morris <rgm@gnu.org>
2113
2114 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2115 Fix interpretation of gnu line.col1-col2 format. (Bug#13335)
2116
2117 2013-01-13 Fabián Ezequiel Gallina <fgallina@cuca>
2118
2119 * progmodes/python.el (python-nav-end-of-statement):
2120 Fix cornercase when handling multiline strings.
2121
2122 2013-01-13 Richard Stallman <rms@gnu.org>
2123
2124 * mail/sendmail.el (mail-position-on-field): Add doc string.
2125
2126 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2127 Get current message boundaries and pass them to
2128 message-forward-make-body-mime. Minor style changes.
2129
2130 2013-01-13 Eli Zaretskii <eliz@gnu.org>
2131
2132 * cus-start.el (all): Avoid warnings about
2133 scroll-bar-adjust-thumb-portion on platforms where it is not defined.
2134
2135 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
2136
2137 * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
2138
2139 2013-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2140
2141 * jit-lock.el (jit-lock-debug-mode): New minor mode.
2142 (jit-lock--debug-fontifying): New var.
2143 (jit-lock--debug-fontify): New function.
2144 * subr.el (condition-case-unless-debug): Don't prevent catching the
2145 error, just let the debbugger run.
2146 * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
2147 timer code and don't drop errors silently.
2148
2149 2013-01-12 Michael Albinus <michael.albinus@gmx.de>
2150
2151 * autorevert.el (auto-revert-notify-watch-descriptor): Give it
2152 `permanent-local' property.
2153 (auto-revert-notify-handler): Use `file-equal-p'.
2154
2155 2013-01-12 Eli Zaretskii <eliz@gnu.org>
2156
2157 * autorevert.el (auto-revert-notify-handler): Fix filtering of
2158 file notification by ACTION. For filtering by file name, compare
2159 only the non-directory part of the file name.
2160
2161 2013-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
2162
2163 * autorevert.el: Use cl-lib instead of cl.
2164
2165 * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
2166 (vc-bzr-checkin): Use it.
2167 * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
2168 will preserve match-data.
2169
2170 2013-01-11 Felix H. Dahlke <fhd@ubercode.de>
2171
2172 * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
2173 (js--declaration-keyword-re): New var.
2174 (js--multi-line-declaration-indentation): New function.
2175 (js--proper-indentation): Use it.
2176
2177 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
2178
2179 * calc/calc.el (calc-highlight-selections-with-faces)
2180 (calc-dispatch):
2181 * comint.el (comint-history-isearch-message):
2182 * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
2183 * ffap.el (ffap-string-at-point-region, ffap-next)
2184 (ffap-string-at-point, ffap-string-around)
2185 (ffap-copy-string-as-kill, ffap-highlight-overlay)
2186 (ffap-literally):
2187 * font-lock.el (font-lock-keywords-alist)
2188 (font-lock-removed-keywords-alist):
2189 * help-mode.el (help-xref-symbol-regexp):
2190 * info.el (Info-find-emacs-command-nodes):
2191 * international/mule.el (add-to-coding-system-list):
2192 * isearch.el (isearch-message-function, isearch-fail-pos):
2193 * misearch.el (multi-isearch-next-buffer-function):
2194 * newcomment.el (comment-box):
2195 * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
2196 (pr-setting-database):
2197 * progmodes/cc-fonts.el (c-font-lock-keywords-3)
2198 (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
2199 (java-font-lock-keywords-3, idl-font-lock-keywords-3)
2200 (pike-font-lock-keywords-3):
2201 * progmodes/compile.el (compile):
2202 * progmodes/etags.el (tags-table-files)
2203 (tags-table-files-function, tags-included-tables-function):
2204 * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
2205 (gdb-restore-windows):
2206 * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
2207 (ps-n-up-filling-database):
2208 * server.el (server-buffer, server-log):
2209 * simple.el (newline, delete-backward-char, delete-forward-char)
2210 (minibuffer-history-isearch-message, kill-line, track-eol)
2211 (temporary-goal-column):
2212 * textmodes/flyspell.el (flyspell-mark-duplications-flag)
2213 (flyspell-default-deplacement-commands):
2214 * textmodes/ispell.el (ispell-accept-output):
2215 * textmodes/sgml-mode.el (html-tag-help):
2216 * vc/compare-w.el (compare-ignore-whitespace)
2217 (compare-ignore-case, compare-windows-dehighlight):
2218 * vc/diff.el (diff):
2219 * whitespace.el (whitespace-point)
2220 (whitespace-font-lock-refontify, whitespace-bob-marker)
2221 (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
2222
2223 2013-01-11 Michael Albinus <michael.albinus@gmx.de>
2224
2225 * autorevert.el (top): Require 'cl in order to pacify byte compiler.
2226 (auto-revert-notify-rm-watch): Ignore errors.
2227 (auto-revert-notify-add-watch): Ignore errors. Use '(modify) for
2228 inotify, and '(size last-write-time) for w32notify.
2229 Set buffer-local `auto-revert-use-notify' to nil when adding a file
2230 watch fails - this is a fallback to the file modification check.
2231 (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
2232 (auto-revert-notify-event-action)
2233 (auto-revert-notify-event-file-name): New defuns.
2234 (auto-revert-notify-handler): Use them. Implement first
2235 plausibility checks.
2236 (auto-revert-handler): Handle also `auto-revert-tail-mode'.
2237
2238 2013-01-11 Julien Danjou <julien@danjou.info>
2239
2240 * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
2241 max are almost equal. Also return the correct value for V which is
2242 already between 0 and 1.
2243
2244 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
2245
2246 * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
2247
2248 2013-01-11 Eli Zaretskii <eliz@gnu.org>
2249
2250 * autorevert.el (auto-revert-notify-rm-watch)
2251 (auto-revert-notify-add-watch): Fix typos in w32notify function
2252 names.
2253
2254 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
2255
2256 * autorevert.el (auto-revert-notify-enabled): Move up.
2257 (auto-revert-use-notify): New defcustom.
2258 (auto-revert-mode, global-auto-revert-mode)
2259 (auto-revert-notify-add-watch, auto-revert-handler)
2260 (auto-revert-buffers): Use `auto-revert-use-notify' instead of
2261 `auto-revert-notify-enabled'.
2262
2263 2013-01-10 Elias Pipping <pipping@exherbo.org>
2264
2265 * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
2266 * doc-view.el (doc-view-document->bitmap):
2267 Use doc-view-single-page-converter-function instead of
2268 single-page-converter arg; adjust callers.
2269
2270 2013-01-10 Feng Li <fengli@gmail.com> (tiny change)
2271
2272 * progmodes/which-func.el (which-function): Understand Semantic's use
2273 of overlays in imenu--index-alist.
2274
2275 2013-01-10 Wolfgang Jenkner <wjenkner@inode.at>
2276
2277 * man.el: Handle different "man -k" behaviors (bug#13160). Use utf-8.
2278 (Man-man-k-use-anchor): New var.
2279 (Man-parse-man-k): New function.
2280 (Man-completion-table): Use it.
2281 (man): Flush the completion cache between uses.
2282
2283 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
2284
2285 * autorevert.el: Add file watch support.
2286 (auto-revert-notify-enabled): New defconst.
2287 (auto-revert-notify-watch-descriptor-hash-list)
2288 (auto-revert-notify-watch-descriptor)
2289 (auto-revert-notify-modified-p): New defvars.
2290 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
2291 (auto-revert-notify-handler): New defuns.
2292 (auto-revert-mode, global-auto-revert-mode): Remove file watches
2293 when mode is disabled.
2294 (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
2295 (auto-revert-buffers): Add file watches for active buffers.
2296
2297 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
2298
2299 * cus-start.el (toplevel): Only allow float values for
2300 scroll-up-aggressively and scroll-down-aggressively.
2301 Allow any number for line-spacing.
2302
2303 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2304
2305 * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
2306 (doc-view-pdf->png-converter-function): Use mupdf if available.
2307 (doc-view-djvu->png-converter-function)
2308 (doc-view-ps->png-converter-function): Remove.
2309 (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
2310 (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
2311 (doc-view-already-converted-p): Adjust accordingly.
2312 (doc-view-mode-p): Simplify.
2313 (doc-view-enlarge): Use setq-local.
2314 (doc-view-pdf->png-converter-ghostscript)
2315 (doc-view-djvu->png-converter-ddjvu)
2316 (doc-view-pdf->png-converter-mupdf): Rework to call
2317 doc-view-start-process directly.
2318 (doc-view-pdf/ps->png): Simplify accordingly.
2319 (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
2320 (doc-view-document->bitmap): Rename from doc-view-document->png.
2321 (doc-view-convert-current-doc): Merge pdf and djvu cases.
2322 (doc-view-set-slice-from-bounding-box): Fix completion table.
2323 (doc-view-mode): Use add-hook for after-revert-hook.
2324
2325 2013-01-10 Glenn Morris <rgm@gnu.org>
2326
2327 * emacs-lisp/authors.el (authors-ignored-files)
2328 (authors-valid-file-names, authors-renamed-files-alist):
2329 Add some more entries.
2330
2331 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2332
2333 * image-mode.el (image-mode-winprops): Don't throw away the fallback
2334 `t' pseudo-window entry.
2335
2336 2013-01-10 Alan Mackenzie <acm@muc.de>
2337
2338 Fix bugs in the c-parse-state mechanism. Reuse some markers
2339 instead of continually generating new ones.
2340
2341 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
2342 (c-state-old-cpp-end-marker): New variables.
2343 (c-append-lower-brace-pair-to-state-cache): Start a backward
2344 search for "}" definitively outside CPP constructs.
2345 (c-remove-stale-state-cache): Inform the caller of a need to
2346 search back for a brace pair in certain circumstances.
2347 (c-state-maybe-marker): New macro.
2348 (c-parse-state): Reuse markers when appropriate.
2349
2350 2013-01-10 Glenn Morris <rgm@gnu.org>
2351
2352 * simple.el (execute-extended-command): Doc fix.
2353 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
2354
2355 2013-01-10 Chong Yidong <cyd@gnu.org>
2356
2357 * faces.el (read-face-name): Doc fix.
2358
2359 2013-01-10 Roland Winkler <winkler@gnu.org>
2360
2361 * emacs-lisp/crm.el: Allow any regexp for separators.
2362 (crm-default-separator): All spaces around the default comma separator.
2363 (crm--completion-command): New macro.
2364 (crm-completion-help, crm-complete, crm-complete-word): Use it.
2365 (crm-complete-and-exit): Handle non-single-char separators.
2366
2367 2013-01-09 Elias Pipping <pipping@lavabit.com>
2368
2369 * doc-view.el: Add support for DjVu (bug#13164).
2370 (doc-view-djvu->png-converter-function): New config var.
2371 (doc-view-single-page-converter-function, doc-view--image-type)
2372 (doc-view--image-file-extension): New vars.
2373 (doc-view-mode): Initialize them.
2374 (doc-view-goto-page): Use them.
2375 (doc-view-mode-p): Add support for ddjvu.
2376 (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
2377 (doc-view-set-up-single-converter): New funs.
2378 (doc-view-pdf/ps->png): Extend for djvu.
2379 (doc-view-document->png): Rename from doc-view-pdf->png.
2380 (doc-view-convert-current-doc): Handle djvu.
2381 (doc-view-insert-image, doc-view-display)
2382 (doc-view-already-converted-p): Don't hardcode png.
2383 (doc-view-set-doc-type): Recognize djvu docs.
2384
2385 2013-01-09 Elias Pipping <pipping@lavabit.com>
2386
2387 * doc-view.el: Add support for mupdf converter (bug#13164).
2388 (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
2389 (doc-view-ps->png-converter-function): New config vars.
2390 (doc-view-pdf->png-converter-ghostscript)
2391 (doc-view-ps->png-converter-ghostscript)
2392 (doc-view-pdf->png-converter-mupdf): New functions.
2393 (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
2394
2395 2013-01-09 Jürgen Hötzel <juergen@archlinux.org>
2396
2397 * net/tramp.el (tramp-eshell-directory-change): Check remote-path
2398 first in session cache: When `tramp-own-remote-path' is in
2399 `tramp-remote-path', the remote path is only set in the session
2400 cache.
2401
2402 2013-01-09 Glenn Morris <rgm@gnu.org>
2403
2404 * emacs-lisp/trace.el (trace-function-foreground)
2405 (trace-function-background): Doc fix.
2406
2407 2013-01-09 Juri Linkov <juri@jurta.org>
2408
2409 * international/mule-cmds.el (read-char-by-name): Move let-binding
2410 of completion-ignore-case around completing-read to fix regression
2411 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
2412 `string-match-p' using the nil value of `case-fold-search' and
2413 `completion-ignore-case' in `completion-pcm--all-completions'.
2414 (Bug#12615).
2415
2416 2013-01-09 Glenn Morris <rgm@gnu.org>
2417
2418 * progmodes/compile.el (compilation-parse-errors):
2419 Fix typo. (Bug#13369)
2420
2421 2013-01-09 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
2422
2423 * comint.el (comint-send-input): Check size of buffer before
2424 waiting for process output, in case already accepted. (Bug#13290)
2425
2426 2013-01-09 Paul Eggert <eggert@cs.ucla.edu>
2427
2428 Spelling fixes.
2429 * net/tramp-adb.el (tramp-adb-get-toolbox):
2430 Fix misspelling of 'unknown'.
2431
2432 2013-01-08 Juri Linkov <juri@jurta.org>
2433
2434 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
2435 * progmodes/flymake.el (flymake-errline, flymake-warnline):
2436 Use underline style wave on terminals that support it. (Bug#13000)
2437
2438 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2439
2440 * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
2441 the predicate returns nil.
2442
2443 * simple.el: Use lexical-binding.
2444 (primitive-undo): Use pcase.
2445 (minibuffer-history-isearch-push-state): Use a closure.
2446
2447 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2448
2449 * simple.el (primitive-undo): Move from undo.c.
2450
2451 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2452
2453 * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
2454 (cvs-mode-remove-handled): Use it (bug#13380).
2455
2456 * emacs-lisp/nadvice.el (advice--tweak): New function.
2457 (advice--remove-function, advice--subst-main): Use it.
2458
2459 * emacs-lisp/advice.el: Update commentary.
2460
2461 2013-01-08 Michael Albinus <michael.albinus@gmx.de>
2462
2463 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2464 Remove spurious entry.
2465
2466 2013-01-08 Glenn Morris <rgm@gnu.org>
2467
2468 * net/tramp.el (tramp-default-host-alist): Add :version.
2469
2470 2013-01-08 Juri Linkov <juri@jurta.org>
2471
2472 * info.el (Info-read-node-name-2): Don't duplicate suffixes for
2473 single completion. (Bug#12456)
2474 (info--manual-names): Expand node completions into an explicit list
2475 before appending it to another list. Filter out internal buffers
2476 with the leading space in the buffer name. (Bug#10771)
2477
2478 2013-01-08 Juri Linkov <juri@jurta.org>
2479
2480 * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
2481 that defaults to the Top node.
2482 (Info-goto-node, Info-read-node-name): Doc fix to mention that
2483 the short format (FILENAME) goes to the Top node.
2484 (Info-build-node-completions): Rename arg `file' to `filename'.
2485 (Bug#13365)
2486
2487 2013-01-07 Bastien Guerry <bzg@gnu.org>
2488
2489 * menu-bar.el (menu-bar-search-documentation-menu):
2490 Use `apropos-user-option' and fix the help message.
2491
2492 2013-01-07 Bastien Guerry <bzg@gnu.org>
2493
2494 * apropos.el (apropos-do-all): Update docstring.
2495 (apropos-user-option-button): New face.
2496 (apropos-user-option): Rename from `apropos-variable' and update
2497 docstring.
2498 (apropos-variable): Rewrite, now show all variables by default.
2499 (apropos-print): Mention "User option" instead of "Variable" when
2500 printing doc for user options. (Bug#13276)
2501
2502 2013-01-07 Jürgen Hötzel <juergen@archlinux.org>
2503
2504 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
2505 Handle filename correctly, when parsing "source -> target" symlink
2506 output.
2507 (tramp-adb-handle-set-file-times): New defun.
2508
2509 2013-01-07 Stefan Monnier <monnier@iro.umontreal.ca>
2510
2511 * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
2512 advice list when the interactive-spec of ad-Advice-* changes.
2513
2514 2013-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
2515
2516 * wid-edit.el (widget-default-get): Work for inlined elements.
2517 (Bug#12670)
2518
2519 2013-01-07 Michael Albinus <michael.albinus@gmx.de>
2520
2521 * net/tramp.el (tramp-default-host-alist): New defcustom.
2522 (tramp-find-host): Use it.
2523 (tramp-eshell-directory-change): Move from tramp-sh.el. Add to
2524 `eshell-directory-change-hook'.
2525
2526 * net/tramp-adb.el (top): Add adb specific entry in
2527 `tramp-default-host-alist'.
2528 (tramp-adb-file-name-host): Remove function.
2529 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
2530 Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
2531
2532 * net/tramp-sh.el: Move eshell integration code to tramp.el.
2533
2534 2013-01-06 Jürgen Hötzel <juergen@archlinux.org>
2535
2536 * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
2537
2538 2013-01-06 Michael Albinus <michael.albinus@gmx.de>
2539
2540 * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
2541 consist of more than one digit.
2542 (tramp-adb-file-name-handler-alist):
2543 Use `tramp-handle-file-exists-p' consistently.
2544 (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
2545 (tramp-adb-handle-file-exists-p): Remove function.
2546 (tramp-adb-file-name-host): New defun.
2547 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
2548 Use it.
2549 (tramp-adb-maybe-open-connection): Set "remote-path" property.
2550
2551 2013-01-06 Chong Yidong <cyd@gnu.org>
2552
2553 * vc/vc.el (vc-next-action): Detect buffer modifications
2554 conflicting with locking VCS operation (Bug#11490).
2555
2556 * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
2557
2558 2013-01-05 Michael Albinus <michael.albinus@gmx.de>
2559
2560 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
2561 (tramp-adb-handle-directory-files-and-attributes): Fix typos.
2562
2563 2013-01-05 Jürgen Hötzel <juergen@archlinux.org>
2564
2565 * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
2566 parsing of ls output using regular expression (handle filenames
2567 with spaces). Use virtual device number.
2568 (tramp-do-parse-file-attributes-with-ls): New defun (Code
2569 cleanup).
2570
2571 2013-01-04 Daiki Ueno <ueno@gnu.org>
2572
2573 * epg.el: Silence byte-compiler warnings.
2574 (epg--start): Use delete-char instead of delete-backward-char.
2575 (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
2576
2577 2013-01-04 Daiki Ueno <ueno@gnu.org>
2578
2579 * epg.el (epg--start): Don't call "tty" program on W32 platforms.
2580 Suggested by Eli Zaretskii <eliz@gnu.org>.
2581
2582 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
2583
2584 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
2585 non-negative integers. Otherwise, the default values are used.
2586 (tramp-convert-file-attributes): Convert uid and gid to integers.
2587
2588 2013-01-04 Glenn Morris <rgm@gnu.org>
2589
2590 * term.el (term-handle-colors-array): Ensure face attributes
2591 are fully specified, not nil. (Bug#13337)
2592
2593 * term.el (term-default-fg-color, term-default-bg-color):
2594 Fix custom type.
2595
2596 * progmodes/etags.el (tags-compression-info-list): Doc fix.
2597 (tag-find-file-of-tag-noselect): Check auto-compression-mode
2598 rather than 'jka-compr being loaded. (Bug#13338)
2599
2600 2013-01-04 Wesley Dawson <whd@lavabit.com> (tiny change)
2601
2602 * icomplete.el (icomplete-completions):
2603 Honor icomplete-prospects-height once more following
2604 2012-11-29 changes. (Bug#13224)
2605
2606 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
2607
2608 * subr.el (internal--called-interactively-p--get-frame): Find aliases
2609 of called-interactively-p as well (bug#13237).
2610
2611 * view.el (view--enable, view--disable): Rename from view-mode-enable
2612 and view-mode-disable and assume it's called from view-mode.
2613 (view-mode-enable, view-mode-disable): Redefine as obsolete
2614 compatibility layer above view-mode.
2615 (view-mode-enter): Call `view-mode'.
2616
2617 * files.el (after-find-file): Call `view-mode'.
2618
2619 * doc-view.el (doc-view-scale-internally): New var.
2620 (doc-view-enlarge, doc-view-insert-image): Obey it.
2621
2622 2013-01-03 Daiki Ueno <ueno@gnu.org>
2623
2624 * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
2625 exist. (Bug#13344)
2626
2627 2013-01-03 Glenn Morris <rgm@gnu.org>
2628
2629 * mail/rmail.el (rmail-set-header-1): Ignore case.
2630 Handle multi-line headers. (Bug#13330)
2631
2632 * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
2633 Handle paragraph starting at beginning of buffer.
2634
2635 * subr.el (eval-after-load): Don't purecopy the form, so that it
2636 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
2637
2638 * emacs-lisp/byte-run.el (defun): Place cl declarations
2639 after any interactive spec. (Bug#13265)
2640
2641 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
2642
2643 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
2644 defun. Don't check for DECL if DOCSTRING isn't a string.
2645 (defun): Likewise.
2646
2647 2013-01-02 Glenn Morris <rgm@gnu.org>
2648
2649 * eshell/em-cmpl.el (eshell-pcomplete):
2650 More thoroughly imitate pcomplete. (Bug#13293)
2651
2652 * files.el (parse-colon-path): Doc fix. (Bug#12351)
2653 Return nil for empty path elements. (Bug#13296)
2654
2655 2013-01-02 Fabián Ezequiel Gallina <fgallina@cuca>
2656
2657 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
2658 order to improve efficiency (Based on Daniel Colascione's
2659 <dancol@dancol.org> patch). (Bug#13182)
2660
2661 2013-01-02 Glenn Morris <rgm@gnu.org>
2662
2663 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
2664
2665 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
2666
2667 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
2668 neither DOCSTRING nor DECL was given. (Bug#13316)
2669
2670 2013-01-02 Michael Albinus <michael.albinus@gmx.de>
2671
2672 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
2673 `error' call.
2674 (tramp-do-copy-or-rename-file): Ignore errors when calling
2675 `set-file-extended-attributes'.
2676
2677 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2678 Add handler for `file-acl'.
2679 (tramp-smb-handle-file-acl): New defun.
2680
2681 2013-01-02 Jay Belanger <jay.p.belanger@gmail.com>
2682
2683 * calc/README: Mention ISO 8601 week-numbering dates.
2684
2685 2013-01-01 Martin Rudalics <rudalics@gmx.at>
2686
2687 * view.el (view-mode-enable): New argument run-view-mode-hook.
2688 Run view-mode-hook only when it's non-nil (Bug#13315).
2689 (view-mode-enter): Call view-mode-enable with run-view-mode-hook
2690 argument t.
2691
2692 2012-12-31 Jürgen Hötzel <juergen@archlinux.org>
2693
2694 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
2695 (No device connected, invalid device name). (Bug #13299)
2696
2697 2012-12-31 Martin Rudalics <rudalics@gmx.at>
2698
2699 * window.el (window-resizable--p): Rename to window-resizable-p.
2700 (window-resize-no-error): New function.
2701
2702 * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
2703 broken in fix from 2012-12-28.
2704
2705 2012-12-31 Stefan Monnier <monnier@iro.umontreal.ca>
2706
2707 * subr.el (special-form-p): Don't signal errors on undef aliases.
2708
2709 2012-12-31 Jay Belanger <jay.p.belanger@gmail.com>
2710
2711 * calc/calc-forms.el (math-parse-date): Try using
2712 `math-parse-iso-date' when it looks like it might be needed.
2713 Allow times of 24:00.
2714 (math-parse-date-validate, math-parse-iso-date-validate): Allow times
2715 of 24:00.
2716
2717 2012-12-30 Glenn Morris <rgm@gnu.org>
2718
2719 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
2720 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
2721 (rmail-summary-displayed, rmail-summary): Declare.
2722 (mairix-rmail-display): Just require rmail.
2723
2724 2012-12-30 Chong Yidong <cyd@gnu.org>
2725
2726 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
2727 check for the tarball contents.
2728
2729 2012-12-30 Matt Fidler <matt.fidler@alcon.com> (tiny change)
2730
2731 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
2732 tarfile content listings (Bug#13136).
2733
2734 2012-12-30 Mark Lillibridge <mark.lillibridge@hp.com>
2735
2736 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2737 Insert the undecoded text of the message being forwarded. (Bug#9521)
2738
2739 2012-12-30 Michael Albinus <michael.albinus@gmx.de>
2740
2741 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
2742 integers, if they are real numbers. (Bug#13282)
2743
2744 * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
2745 Return `t' on success.
2746
2747 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2748 Add handler for `set-file-selinux-context'.
2749
2750 2012-12-29 Michael Albinus <michael.albinus@gmx.de>
2751
2752 * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
2753 (tramp-sh-handle-set-file-acl): Return `t' on success.
2754
2755 2012-12-29 Eli Zaretskii <eliz@gnu.org>
2756
2757 * files.el (backup-buffer-copy, basic-save-buffer-2):
2758 If set-file-extended-attributes fails, fall back on set-file-modes
2759 instead of signaling an error. (Bug#13298)
2760 (basic-save-buffer): Likewise.
2761
2762 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
2763
2764 * progmodes/python.el: Support other commands triggering
2765 python-indent-line so indentation cycling continues to work.
2766 (python-indent-trigger-commands): New defcustom.
2767 (python-indent-line): Use it.
2768
2769 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
2770
2771 * progmodes/python.el (python-shell-send-region): Add blank lines
2772 for non sent code so backtraces remain correct.
2773
2774 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
2775
2776 * progmodes/python.el: Remove cl dependency.
2777 (python-syntax-count-quotes): Replace incf call.
2778 (python-fill-string): Replace setf call.
2779
2780 2012-12-29 Damien Cassou <damien.cassou@gmail.com>
2781
2782 * info.el (info-other-window): New arg, for consistency with info.
2783
2784 2012-12-28 Martin Rudalics <rudalics@gmx.at>
2785
2786 * mail/rmail.el (rmail-maybe-display-summary):
2787 Rewrite (Bug#13066).
2788
2789 2012-12-28 Andreas Schwab <schwab@linux-m68k.org>
2790
2791 * epg.el (epg--start): Modify process-environment locally.
2792
2793 2012-12-28 Daiki Ueno <ueno@gnu.org>
2794
2795 * epg.el: Support pinentry-curses.
2796 Suggested by Werner Koch in
2797 <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
2798 (epg-agent-file, epg-agent-mtime): New variable.
2799 (epg--start): Record the modified time of gpg-agent socket file,
2800 to restore Emacs frame after pinentry-curses termination.
2801 (epg-wait-for-completion): Restore Emacs frame here.
2802
2803 2012-12-27 Juri Linkov <juri@jurta.org>
2804
2805 * info.el (Info-file-completions): New variable.
2806 (Info-read-node-name-1): Complete node names in the Info file
2807 when a file name is given. Call `Info-build-node-completions'
2808 with a file name.
2809 (Info-build-node-completions): Add new arg `file'. When it is
2810 non-nil, visit it in a temporary buffer and cache its completions in
2811 `Info-current-file-completions'. Move most of the function body to
2812 `Info-build-node-completions-1'.
2813 (Info-build-node-completions-1): New function with the body from
2814 `Info-build-node-completions'. (Bug#12456)
2815
2816 2012-12-27 Juri Linkov <juri@jurta.org>
2817
2818 * frame.el (frame-maximization-style): Remove user option.
2819 (cycle-frame-maximized): Remove function.
2820 (toggle-frame-maximized): Rewrite and bind to M-<f10>.
2821 (toggle-frame-fullscreen): New command bound to <f11> instead of
2822 `toggle-frame-maximized'.
2823 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
2824
2825 2012-12-27 Michael Albinus <michael.albinus@gmx.de>
2826
2827 * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
2828
2829 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2830 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
2831 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
2832 for `file-accessible-directory-p'. (Bug#13275)
2833
2834 2012-12-27 Sam Steingold <sds@gnu.org>
2835
2836 * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
2837 continuations, see <http://stackoverflow.com/questions/3582436>.
2838
2839 2012-12-27 Dmitry Gutov <dgutov@yandex.ru>
2840
2841 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
2842 "module" and "def" to have indentation before them.
2843 Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
2844
2845 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
2846
2847 2012-12-27 Alan Mackenzie <acm@muc.de>
2848
2849 Speed up fontification where there's large brace blocks.
2850 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
2851 to a call of c-beginning-of-decl-1.
2852
2853 2012-12-27 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
2854
2855 * comint.el (comint-adjust-window-point): New function.
2856 (comint-postoutput-scroll-to-bottom):
2857 Call comint-adjust-window-point (Bug#13248).
2858
2859 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
2860
2861 * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
2862 Rakefile regexp.
2863 (auto-mode-alist): Associate .gemspec files with ruby-mode
2864 (https://bugs.ruby-lang.org/issues/5453).
2865
2866 2012-12-26 Jürgen Hötzel <juergen@archlinux.org>
2867
2868 * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
2869 Suppress coloring, if possible (required for BusyBox based systems like
2870 CyanogenMod).
2871 (tramp-adb-handle-file-attributes)
2872 (tramp-adb-handle-insert-directory)
2873 (tramp-adb-handle-file-name-all-completions): Use it.
2874 (tramp-adb-get-toolbox): New defun. Check for remote shell
2875 implementation (BusyBox or Toolbox).
2876
2877 2012-12-24 Constantin Kulikov <zxnotdead@gmail.com> (tiny change)
2878
2879 * startup.el (initial-buffer-choice): Allow function as value
2880 (Bug#13251).
2881 (command-line-1): Handle case where initial-buffer-choice
2882 specifies a function.
2883 * server.el (server-execute): Handle case where
2884 initial-buffer-choice specifies a function.
2885
2886 2012-12-24 Lars Ingebrigtsen <larsi@gnus.org>
2887
2888 * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
2889 its own function.
2890 (smtpmail-try-auth-methods): Forget the user name/password if the
2891 login is unsuccessful (bug#12424).
2892
2893 2012-12-22 Michael Albinus <michael.albinus@gmx.de>
2894
2895 * notifications.el (notifications-notify): Protect body with
2896 `with-demoted-errors'.
2897
2898 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2899 Check properties of remote device. Restart connection, if there is a
2900 change.
2901
2902 2012-12-21 Chong Yidong <cyd@gnu.org>
2903
2904 * sort.el (sort-subr): Doc fix (Bug#13056).
2905
2906 2012-12-21 Bastien Guerry <bzg@gnu.org>
2907
2908 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
2909
2910 2012-12-21 Michael Albinus <michael.albinus@gmx.de>
2911
2912 * simple.el (process-file): Overwrite stderr file, if exists.
2913
2914 2012-12-21 Daiki Ueno <ueno@gnu.org>
2915
2916 * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
2917 (epg-error): Set `error-message' property.
2918
2919 2012-12-21 Chong Yidong <cyd@gnu.org>
2920
2921 * international/mule-cmds.el (read-char-by-name): Signal an error
2922 if the user does not supply a valid character (Bug#13177).
2923
2924 * simple.el (transpose-subr-1): Preserve marker positions by
2925 changing the insertion sequence (Bug#13122).
2926
2927 2012-12-21 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2928
2929 * simple.el (kill-region): Deactivate mark even for empty regions
2930 (Bug#13169).
2931
2932 2012-12-21 Chong Yidong <cyd@gnu.org>
2933
2934 * help-fns.el (describe-variable): Make sure we get the right
2935 buffer name (Bug#13105). Suggested by Kelly Dean.
2936
2937 2012-12-20 Michael R. Mauger <mmaug@yahoo.com>
2938
2939 * comint.el (comint-redirect-previous-input-string): New variable.
2940 (comint-redirect-setup, comint-redirect-cleanup)
2941 (comint-redirect-preoutput-filter): Use it. Fixes redirection bug.
2942 (comint-redirect-preoutput-filter): Fix verbose message.
2943
2944 2012-12-20 Michael Albinus <michael.albinus@gmx.de>
2945
2946 * progmodes/grep.el (rgrep): Escape command line. Sometimes, it
2947 is too long for Tramp. See discussion in
2948 <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
2949
2950 * progmodes/compile.el (compilation-start): Remove line escape
2951 template.
2952
2953 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
2954
2955 * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
2956 Adjust comment.
2957
2958 2012-12-19 Jonas Bernoulli <jonas@bernoul.li>
2959
2960 * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
2961 following non-comment text (bug#13207).
2962 (lm-header-multiline): Continuation lines need to be indented more than
2963 the first line.
2964 (lm-homepage): New function.
2965 (lm-with-file): Don't be confused if narrowing is in effect.
2966
2967 2012-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
2968
2969 * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
2970 very beginning of a hunk (e.g. killing the first line).
2971
2972 2012-12-19 Michael Albinus <michael.albinus@gmx.de>
2973
2974 * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
2975 and text properties from returned ACL string.
2976 (tramp-sh-handle-set-file-acl): Do not use additional parentheses
2977 for "setfacl" command.
2978
2979 2012-12-18 Michael Albinus <michael.albinus@gmx.de>
2980
2981 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
2982 `tramp-cleanup-this-connection', when the process has died.
2983 (Bug#13151)
2984
2985 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
2986
2987 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
2988
2989 2012-12-17 Kevin Ryde <user42@zip.com.au>
2990
2991 * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
2992
2993 2012-12-17 Michael Albinus <michael.albinus@gmx.de>
2994
2995 Add support for preserving ACL entries of files.
2996
2997 * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
2998 `set-file-acl' handlers.
2999
3000 * net/tramp-adb.el (tramp-adb-handle-copy-file):
3001 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3002
3003 * net/tramp-compat.el (tramp-compat-copy-file):
3004 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3005
3006 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3007 Add `file-acl' and `set-file-acl' handlers.
3008 (tramp-gvfs-handle-copy-file):
3009 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3010 (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
3011 New defuns.
3012
3013 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3014 Add `file-acl' and `set-file-acl' handlers.
3015 (tramp-remote-acl-p, tramp-sh-handle-file-acl)
3016 (tramp-sh-handle-set-file-acl): New defuns.
3017 (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
3018 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3019
3020 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3021 Add `file-acl' and `set-file-acl' handlers.
3022 (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
3023
3024 2012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
3025
3026 * help-macro.el (make-help-screen): Instead of switch-to-buffer
3027 use pop-to-buffer with NORECORD argument t. As buffer name, use
3028 *Metahelp* with a leading space (Bug#13190).
3029
3030 2012-12-16 Romain Francoise <romain@orebokech.com>
3031
3032 * files.el (file-extended-attributes)
3033 (set-file-extended-attributes): New functions.
3034 (backup-buffer): Use them to handle both SELinux context and ACL
3035 entries.
3036 (backup-buffer-copy): Work with an alist of extended attributes,
3037 rather than an SELinux context.
3038 (basic-save-buffer-2): Ditto.
3039
3040 2012-12-16 Timo Myyrä <timo.myyra@gmail.com>
3041
3042 * battery.el (battery-bsd-apm): New function.
3043
3044 2012-12-16 Jay Belanger <jay.p.belanger@gmail.com>
3045
3046 * calc/calc.el (calc-standard-date-formats): Adjust one of the
3047 standard date formats.
3048
3049 2012-12-15 Juri Linkov <juri@jurta.org>
3050
3051 * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
3052 `isearch-insert-char-by-name'.
3053 (with-isearch-suspended): New defmacro with body mostly from
3054 `isearch-edit-string' except the part that sets
3055 `isearch-new-string' and `isearch-new-message'.
3056 (isearch-edit-string): Use new macro `with-isearch-suspended' with
3057 body that sets `isearch-new-string' and `isearch-new-message'.
3058 (isearch-insert-char-by-name): New command.
3059 * international/mule-cmds.el (read-char-by-name): Let-bind
3060 `enable-recursive-minibuffers' to t.
3061 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
3062
3063 2012-12-15 Juri Linkov <juri@jurta.org>
3064
3065 * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
3066 (Bug#13175)
3067
3068 2012-12-15 Christopher Schmidt <christopher@ch.ristopher.com>
3069
3070 * dired-x.el (dired-guess-shell-command): Put colon at the end of
3071 the prompt. (Bug#13045)
3072
3073 2012-12-14 Glenn Morris <rgm@gnu.org>
3074
3075 * emacs-lisp/macroexp.el (macroexp--warn-and-return):
3076 Try to include filename in non-bytecomp warning. (Bug#13132)
3077
3078 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
3079
3080 Fix permissions bugs with setgid directories etc. (Bug#13125)
3081 * files.el (backup-buffer): Don't rely on 9th output of
3082 file-attributes, as it's now a placeholder. Instead, use the new
3083 optional arg of file-ownership-preserved-p.
3084 (file-ownership-preserved-p): New optional arg GROUP.
3085 Fix mishandling of setuid directories that would cause this
3086 function to return t when it should have returned nil.
3087 Document what happens if the file does not exist, and when
3088 it's not known whether the ownership will be preserved.
3089 * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
3090 Likewise.
3091 (tramp-get-local-gid): Use group-gid for integer, as that's
3092 faster and more reliable.
3093
3094 2012-12-14 Julien Danjou <julien@danjou.info>
3095
3096 * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
3097 Update keywords list, data type and PL/pgSQL.
3098
3099 2012-12-14 Dave Abrahams <dave@boostpro.com>
3100
3101 * vc/ediff-util.el (ediff-buffer-type): New function.
3102 (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
3103 rather than taking it as as argument.
3104 (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
3105
3106 2012-12-14 Ryan Crum <ryan.crum@eleostech.com>
3107
3108 * json.el: Add pretty-print option (bug#12634).
3109 (json-encoding-separator, json-encoding-default-indentation)
3110 (json--encoding-current-indentation, json-encoding-pretty-print)
3111 (json-encoding-lisp-style-closings): New vars.
3112 (json--with-indentation): New macro.
3113 (json-encode-hash-table, json-encode-alist, json-encode-plist)
3114 (json-encode-array): Use it to obey json-encoding-pretty-print.
3115 (json-pretty-print-buffer, json-pretty-print): New commands.
3116
3117 2012-12-14 Dmitry Gutov <dgutov@yandex.ru>
3118
3119 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3120 Extract `ruby-syntax-propertize-expansions'.
3121 (ruby-syntax-propertize-expansions): Only change syntax on
3122 certain string delimiters, to punctuation. This way the common
3123 functions like forward-word and thing-at-point still work.
3124 (ruby-match-expression-expansion): Improve readability.
3125 (ruby-block-contains-point): New function.
3126 (ruby-add-log-current-method): Handle several edge cases.
3127
3128 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
3129
3130 * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
3131 unload-feature finishes even when aborting an ongoing edebug session.
3132 Also, do not worry about edebug-mode, unload-feature takes care of it.
3133
3134 2012-12-13 Andreas Schwab <schwab@suse.de>
3135
3136 * net/tls.el (tls-program): Update customize type.
3137
3138 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
3139
3140 * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
3141 (edebug-setup-hook, cl-read-load-hooks): Use it.
3142 (edebug-unload-function): New function. (Bug#13163)
3143
3144 2012-12-13 Michael Albinus <michael.albinus@gmx.de>
3145
3146 * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
3147 Otherwise, there could be errors in autoloading. (Bug#13151)
3148
3149 2012-12-13 Jürgen Hötzel <juergen@archlinux.org>
3150
3151 * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
3152 sequences.
3153
3154 2012-12-13 Alan Mackenzie <acm@muc.de>
3155
3156 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
3157 * progmodes/cc-engine.el (c-backward-comments): Add code to work
3158 around `forward-comment' not recognizing ^M as whitespace.
3159
3160 2012-12-13 Fabián Ezequiel Gallina <fgallina@cuca>
3161
3162 * progmodes/python.el (python-skeleton-class)
3163 (python-skeleton-def): Do not add space after defun name.
3164
3165 2012-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
3166
3167 * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
3168 (cl--symbol-function): Remove (now that funbound is like nil).
3169
3170 2012-12-12 Glenn Morris <rgm@gnu.org>
3171
3172 * button.el (button--area-button-p): Fix typo.
3173
3174 2012-12-12 Sam Steingold <sds@gnu.org>
3175
3176 * frame.el (frame-maximization-style): New user option.
3177 (toggle-frame-maximized): Toggle frame maximization according to
3178 `frame-maximization-style', bound to <f11>.
3179 (cycle-frame-maximized): Cycle between all maximization styles and
3180 non-maximized frame, bound to shift-<f11>.
3181
3182 2012-12-12 David Cadé <codename68@gmail.com>
3183
3184 * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
3185
3186 2012-12-12 Jonas Bernoulli <jonas@bernoul.li>
3187
3188 * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
3189 (eieio-override-prin1): Don't quote kewords and booleans.
3190 (object-write) <eieio-default-superclass>: Don't put closing parens
3191 on new line, avoid needless empty lines, align values that are objects
3192 with the slot keyword (instead of beginning on the same line).
3193 (eieio-list-prin1): Align value with slot keyword; increase
3194 eieio-print-depth before printing members of the list.
3195
3196 2012-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
3197
3198 * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
3199 a display text-property.
3200 (report-emacs-bug-hook): Don't bother deleting it any more.
3201
3202 * hilit-chg.el (highlight-save-buffer-state): Delete.
3203 Use with-silent-modifications instead.
3204 (hilit-chg-set-face-on-change): Only fixup the text that's modified.
3205
3206 * button.el: Handle buttons in display text-properties.
3207 (button--area-button-p, button--area-button-string):
3208 Use (STRING . STRING-POS) representation instead of just STRING.
3209
3210 2012-12-11 Eli Zaretskii <eliz@gnu.org>
3211
3212 * makefile.w32-in (compile4-SH): Fix a typo that caused term
3213 subdirectory be skipped.
3214
3215 2012-12-11 Glenn Morris <rgm@gnu.org>
3216
3217 * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
3218
3219 * progmodes/f90.el (f90-line-continued, f90-indent-region):
3220 Treat preprocessor lines embedded in continuations like comments.
3221 (f90-indent-line): Special-case preprocessor lines. (Bug#13138)
3222
3223 2012-12-11 Jay Belanger <jay.p.belanger@gmail.com>
3224
3225 * calc/calc.el (calc-standard-date-formats): Add more date
3226 formats.
3227 * calc/calc-forms.el (math-parse-iso-date): New function.
3228 (math-parse-date): Use `math-parse-iso-date' when appropriate.
3229 (math-parse-iso-date-validate): Add extra error checking.
3230 (calc-date-notation): Add ability to access new date formats.
3231
3232 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3233
3234 * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
3235 font-lock as well as when there's no text-property.
3236
3237 2012-12-10 Jambunathan K <kjambunathan@gmail.com>
3238
3239 * hi-lock.el: Refine the choice of default face.
3240 (hi-lock-keyword->face): New function. Use it wherever we used
3241 cadadadr instead.
3242 (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
3243 (hi-lock--last-face): Remove var.
3244 (hi-lock--unused-faces): New var to replace it.
3245 (hi-lock-read-face-name): Use/maintain it.
3246 (hi-lock-unface-buffer): Maintain it. Fix error for the C-u case.
3247 (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
3248 if it has another face.
3249
3250 2012-12-10 Eli Zaretskii <eliz@gnu.org>
3251
3252 * subr.el (w32notify-handle-event): New function.
3253 (inotify-handle-event): Doc fix.
3254
3255 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3256
3257 * subr.el (inotify-event-p, inotify-handle-event): New functions.
3258
3259 2012-12-10 Dani Moncayo <dmoncayo@gmail.com>
3260
3261 * simple.el (just-one-space): Doc fix.
3262
3263 2012-12-10 Eli Zaretskii <eliz@gnu.org>
3264
3265 * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
3266
3267 2012-12-10 Le Wang <l26wang@gmail.com>
3268
3269 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
3270 narrowed buffer (bug#12361).
3271
3272 2012-12-10 Juanma Barranquero <lekktu@gmail.com>
3273
3274 * vc/vc-hooks.el (vc-state): Doc fix.
3275
3276 2012-12-10 Glenn Morris <rgm@gnu.org>
3277
3278 * mail/rmail.el (rmail-maybe-display-summary):
3279 Preserve buffer, in case select-window changes it. (Bug#13066)
3280
3281 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3282
3283 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
3284 cl-load-hook where they belong.
3285
3286 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3287
3288 * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
3289
3290 2012-12-09 Eli Zaretskii <eliz@gnu.org>
3291
3292 Parallelize byte compilation on MS-Windows.
3293 * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
3294 (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
3295 (WINS_BASIC): Define as concatenation of the above.
3296 (compile): Subdivide into 4 separate and independent jobs that can
3297 be run in parallel.
3298 (compile0-CMD, compile0-SH): New targets for compiling
3299 COMPILE_FIRST files, which are prerequisites for the rest of the
3300 byte-compilation.
3301 (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
3302 New targets for parallel compilation with cmd.exe.
3303 (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
3304 compiling under a Unixy shell.
3305
3306 2012-12-09 Chong Yidong <cyd@gnu.org>
3307
3308 * simple.el (set-mark-default-inactive): Delete this
3309 accidentally-introduced option.
3310 (set-mark-command, exchange-point-and-mark): Remove calls.
3311
3312 2012-12-09 Glenn Morris <rgm@gnu.org>
3313
3314 * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
3315 Respect a defcustom's :set function, if appropriate. (Bug#109)
3316 (eval-defun): Doc fix.
3317
3318 2012-12-08 Juri Linkov <juri@jurta.org>
3319
3320 * info.el (Info-copy-current-node-name, Info-breadcrumbs)
3321 (Info-fontify-node, Info-bookmark-make-record): Remove the
3322 file extension from Info-current-file (Bug#13016).
3323
3324 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3325
3326 * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
3327 point, still provide some default.
3328 (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
3329 names, since we don't use it right now. Actually return the list.
3330 (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
3331
3332 2012-12-07 Chong Yidong <cyd@gnu.org>
3333
3334 * novice.el (disabled-command-function): Remove a spurious help
3335 xref (Bug#13043). Suggested by Kelly Dean.
3336
3337 * subr.el (text-clone-maintain): Fix clone overlay deletion when a
3338 syntax is specified (Bug#13025).
3339
3340 * info.el (Info-set-mode-line): Remove the file extension from
3341 Info-current-file if there is one (Bug#13016).
3342
3343 2012-12-07 Glenn Morris <rgm@gnu.org>
3344
3345 * mail/rmail.el (rmail-mime-decoded): New permanent local.
3346 (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
3347 * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
3348 and rmail-mime-decoded. (Bug#9841)
3349
3350 * mail/unrmail.el (unrmail-mbox-format): New option. (Bug#6574)
3351 (batch-unrmail, unrmail): Doc fixes.
3352 (unrmail): Respect unrmail-mbox-format.
3353 * mail/rmail.el (rmail-mbox-format): New option.
3354 (rmail-show-message-1): Respect rmail-mbox-format.
3355
3356 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3357
3358 * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
3359
3360 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3361
3362 Further cleanup of the "cl-" namespace. Fit CL in 80 columns.
3363 * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
3364 (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
3365 (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
3366 (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
3367 (cl-progv): Don't rely on dynamic scoping to find the body.
3368 * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
3369 (cl--proclaims-deferred): Rename from the "cl-" prefix.
3370 (cl-declaim): Use backquotes.
3371 * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
3372 Use "cl--" prefix for the object's tag.
3373
3374 * ses.el: Use advice-add/remove.
3375 (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
3376 (copy-region-as-kill, yank): Use advice-add.
3377 (ses-unload-function): Use advice-remove.
3378
3379 2012-12-06 Jonas Bernoulli <jonas@bernoul.li>
3380
3381 * button.el: Make them work in header-lines (bug#12817).
3382 (button-map): Add bindings for header-line and mode-line use.
3383 (button-get, button-put, button-label): `button' may now be a string.
3384 (button-activate): Don't make it a defsubst.
3385 (button--area-button-p, button--area-button-string): New functions.
3386 (make-text-button): Fix the return value when `beg' was a string.
3387 (push-button): Handle the mode-line case.
3388
3389 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3390
3391 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
3392 (sql-signum): Remove. Use `cl-signum' instead.
3393 (sql-read-passwd): Remove; use read-passwd instread.
3394 (sql-get-login-ext): Use read-string.
3395 (sql-get-login): Use dolist and pcase.
3396 (sql--completion-table): Rename from sql-try-completion.
3397 Use complete-with-action.
3398 (sql-mode): Don't change abbrev-all-caps globally.
3399 (sql-connect): Don't rely on dynamic scoping for `new-name'.
3400 (sql-postgres-completion-object): Initialize vars in their `let'.
3401 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
3402 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
3403 (sql-comint-interbase): Use a single append, without setq.
3404 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
3405
3406 * hi-lock.el: Rework the default face and the serialize regexp code.
3407 (hi-lock--auto-select-face-defaults): Remove.
3408 (hi-lock-string-serialize-serial): Remove.
3409 (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
3410 make weak.
3411 (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
3412 equal string.
3413 (hi-lock-set-pattern): Adjust accordingly.
3414 (hi-lock--regexps-at-point): Simplify accordingly.
3415 (hi-lock--auto-select-face-defaults): Remove.
3416 (hi-lock--last-face): New var to replace it.
3417 (hi-lock-read-face-name): Rewrite (bug#11095).
3418 (hi-lock-unface-buffer): Arrange for the face to be the next default.
3419
3420 2012-12-06 Michael Albinus <michael.albinus@gmx.de>
3421
3422 * net/tramp.el (tramp-replace-environment-variables):
3423 Hide compiler warning.
3424 (tramp-file-name-for-operation): Remove `executable-find',
3425 `start-process', `call-process' and `call-process-region'.
3426
3427 * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
3428
3429 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
3430 compatibility.
3431
3432 * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
3433
3434 2012-12-06 Chong Yidong <cyd@gnu.org>
3435
3436 * ffap.el (ffap-replace-file-component): Fix typo.
3437
3438 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3439
3440 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
3441 fix open-paren-like token test (bug#12785).
3442
3443 2012-12-06 Glenn Morris <rgm@gnu.org>
3444
3445 * mail/rmailsum.el (rmail-new-summary): Tweak for
3446 rmail-maybe-display-summary changing buffer. (Bug#13066)
3447
3448 2012-12-06 Juri Linkov <juri@jurta.org>
3449
3450 * info.el (Info-fontify-node): Don't hide the last newline.
3451 (Bug#12272)
3452
3453 2012-12-06 Katsumi Yamaoka <yamaoka@jpl.org>
3454
3455 * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
3456 so as to enable message-read-from-minibuffer to expand mail aliases.
3457
3458 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3459
3460 * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
3461 the `intangible' property.
3462 Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
3463
3464 2012-12-05 Deniz Dogan <deniz@dogan.se>
3465
3466 * net/rcirc.el (rcirc-urls): Update documentation.
3467 (rcirc-condition-filter): New function.
3468 (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
3469 and exclude consecutive duplicate URLs (Bug#6082).
3470
3471 2012-12-05 Michael Albinus <michael.albinus@gmx.de>
3472
3473 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
3474 Check return code of copy command.
3475
3476 * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
3477 Use group `tramp'. Add version.
3478
3479 2012-12-05 Chong Yidong <cyd@gnu.org>
3480
3481 * ffap.el (ffap-url-regexp): Don't require matching at front of
3482 string (Bug#4952).
3483 (ffap-url-p): If only a substring matches, return that.
3484 (ffap-url-at-point): Use the return value of ffap-url-p.
3485 (ffap-read-file-or-url, ffap-read-file-or-url-internal)
3486 (find-file-at-point, dired-at-point, dired-at-point-prompter)
3487 (ffap-guess-file-name-at-point): Likewise.
3488 (ffap-replace-file-component): Fix typo.
3489
3490 * info.el (info-display-manual): Add existing Info buffers, whose
3491 files may not be in Info-directory-list, to the completion.
3492 (info--manual-names): New helper function.
3493
3494 2012-12-05 Glenn Morris <rgm@gnu.org>
3495
3496 * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
3497 New functions, for detecting and resolving conflicts. (Bug#10709)
3498
3499 2012-12-04 Jambunathan K <kjambunathan@gmail.com>
3500
3501 * hi-lock.el (hi-lock-auto-select-face): New user variable.
3502 (hi-lock-auto-select-face-defaults): New buffer local variable.
3503 (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
3504 (hi-lock-unface-buffer): Prompt user with useful defaults.
3505 With prefix arg, unhighlight all hi-lock patterns in buffer.
3506
3507 2012-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3508
3509 * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
3510
3511 2012-12-04 Michael Albinus <michael.albinus@gmx.de>
3512
3513 * Makefile.in (TRAMP_SRC):
3514 * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
3515
3516 2012-12-04 Juergen Hoetzel <juergen@archlinux.org>
3517
3518 * net/tramp-adb.el: New package.
3519
3520 2012-12-04 Chong Yidong <cyd@gnu.org>
3521
3522 * terminal.el: Move to obsolete/.
3523
3524 * longlines.el: Move to obsolete/.
3525
3526 * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
3527 Remove code referring to longlines mode.
3528
3529 2012-12-03 Juri Linkov <juri@jurta.org>
3530
3531 * sort.el (delete-duplicate-lines): New command. (Bug#13032)
3532
3533 2012-12-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3534
3535 * textmodes/ispell.el (ispell-init-process)
3536 (ispell-start-process, ispell-internal-change-dictionary):
3537 Make sure personal dictionary name is expanded after initial
3538 `default-directory' value. Use expanded strings for
3539 keep/restart checks and for value (Bug#13019).
3540
3541 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
3542
3543 * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
3544
3545 2012-12-03 Leo Liu <sdl.web@gmail.com>
3546
3547 * files.el (dir-locals-read-from-file): Check file non-empty
3548 before reading. (Bug#13038)
3549
3550 2012-12-03 Glenn Morris <rgm@gnu.org>
3551
3552 * jka-cmpr-hook.el (jka-compr-get-compression-info):
3553 Remove any version extension before checking filename. (Bug#13006)
3554 (jka-compr-compression-info-list): Belated :version bump.
3555
3556 2012-12-03 Chong Yidong <cyd@gnu.org>
3557
3558 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
3559
3560 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
3561 (buffer-menu): Doc fix (Bug#12294).
3562
3563 2012-12-03 Roland Winkler <winkler@gnu.org>
3564
3565 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
3566 of diary-show-all-entries in the diary buffer (Bug#12994).
3567
3568 2012-12-03 Michael Albinus <michael.albinus@gmx.de>
3569
3570 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
3571 "<STDIN>". This is binary safe.
3572
3573 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
3574
3575 * calc/calc-forms.el (math-absolute-from-iso-dt)
3576 (math-date-to-iso-dt, math-parse-iso-date-validate)
3577 (math-iso-dt-to-date): New functions.
3578 (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
3579 (math-fd-isoweekday): New variables.
3580 (calc-date-notation, math-parse-standard-date, math-format-date)
3581 (math-format-date-part): Add support for more formatting codes.
3582
3583 2012-12-02 Dmitry Gutov <dgutov@yandex.ru>
3584
3585 * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
3586 current buffer's file name when called interactively (Bug#12488).
3587
3588 2012-12-02 Juri Linkov <juri@jurta.org>
3589
3590 * info.el (info-display-manual): Don't clobber an existing Info
3591 buffer (Bug#10770). Add completion (Bug#10771).
3592
3593 2012-12-01 Yuya Nishihara <yuya@tcha.org> (tiny change)
3594
3595 * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
3596 before using it for comparison (Bug#5297).
3597
3598 2012-12-01 Jari Aalto <jari.aalto@cante.net>
3599
3600 * textmodes/css-mode.el (css-current-defun-name): New function.
3601 (css-mode): Use it.
3602
3603 * textmodes/sgml-mode.el (html-current-defun-name): New function.
3604 (html-mode): Use it.
3605
3606 2012-12-01 Chong Yidong <cyd@gnu.org>
3607
3608 Modularize add-log-current-defun (Bug#2224).
3609 Suggested by Jari Aalto.
3610
3611 * vc/add-log.el (add-log-current-defun-function): Doc fix.
3612 (add-log-current-defun): Move mode-specific code to other files.
3613 (add-log-lisp-like-modes, add-log-c-like-modes)
3614 (add-log-tex-like-modes): Variables deleted.
3615
3616 * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
3617 (lisp-mode-variables): Use it.
3618
3619 * progmodes/cc-mode.el (c-common-init):
3620 * progmodes/cperl-mode.el (cperl-mode): Set a value for
3621 add-log-current-defun-function.
3622
3623 * progmodes/m4-mode.el (m4-current-defun-name): New function.
3624 (m4-mode): Use it.
3625
3626 * progmodes/perl-mode.el (perl-current-defun-name): New.
3627 (perl-mode): Use it.
3628
3629 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
3630 Use lisp-current-defun-name.
3631
3632 * textmodes/tex-mode.el (tex-current-defun-name): New.
3633 (tex-common-initialization): Use it.
3634
3635 * textmodes/texinfo.el (texinfo-current-defun-name): New.
3636 (texinfo-mode): Use it.
3637
3638 2012-12-01 Chong Yidong <cyd@gnu.org>
3639
3640 * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
3641 * progmodes/autoconf.el (autoconf-mode):
3642 * progmodes/js.el (js-mode):
3643 * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
3644 (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
3645 * progmodes/perl-mode.el (perl-mode):
3646 * progmodes/sh-script.el (sh-mode, sh-set-shell):
3647 * textmodes/css-mode.el (css-mode):
3648 * textmodes/sgml-mode.el (html-mode, sgml-mode)
3649 (sgml-tags-invisible, sgml-guess-indent):
3650 * textmodes/tex-mode.el (tex-common-initialization)
3651 (latex-complete-bibtex-keys, tex-shell, tex-main-file)
3652 (doctex-mode, plain-tex-mode, latex-mode):
3653 * textmodes/texinfo.el (texinfo-mode): Use setq-local.
3654
3655 2012-12-01 Kirk Kelsey <kirk.kelsey@0x4b.net>
3656
3657 * vc/vc-hg.el (vc-hg-next-revision):
3658 Ensure use of default "tip" output format. (Bug#6968)
3659
3660 2012-12-01 Kim F. Storm <storm@cua.dk>
3661
3662 * startup.el (fancy-startup-tail): Add a clickable link
3663 (Bug#2176).
3664
3665 2012-12-01 Chong Yidong <cyd@gnu.org>
3666
3667 * startup.el (fancy-startup-tail): Improve the message about
3668 auto-save files (Bug#2176).
3669
3670 * files.el (recover-session): Improve the descriptive message, and
3671 use substitute-command-keys.
3672
3673 2012-12-01 Glenn Morris <rgm@gnu.org>
3674
3675 * ido.el (ido-file-internal):
3676 Handle other-window, other-frame for dired. (Bug#13036)
3677
3678 2012-11-30 Glenn Morris <rgm@gnu.org>
3679
3680 * icomplete.el (icomplete-separator): Fix :version.
3681
3682 2012-11-30 Chong Yidong <cyd@gnu.org>
3683
3684 * shell.el (shell): For C-u M-x shell, use an inactive shell
3685 buffer as the default (Bug#1975).
3686 (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
3687 (shell-mode): Use them to reapply ansi colorization if Shell mode
3688 is re-enabled.
3689
3690 2012-11-30 Yuriy Vostrikov <delamonpansie@gmail.com> (tiny change)
3691
3692 * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
3693
3694 2012-11-30 Samuel Bronson <naesten@gmail.com>
3695
3696 * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
3697 flag to xargs, for compatibility with BSD xargs (Bug#11703).
3698
3699 2012-11-30 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
3700
3701 * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
3702 by move-to-column (Bug#3234).
3703
3704 2012-11-30 Chong Yidong <cyd@gnu.org>
3705
3706 * longlines.el (longlines-wrap-line, longlines-encode-region):
3707 Preserve text properties (Bug#1425).
3708
3709 2012-11-30 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
3710
3711 * vc/vc.el (vc-register): Allow registering a file which is
3712 already registered with a different backend (Bug#10589).
3713
3714 2012-11-29 Jambunathan K <kjambunathan@gmail.com>
3715 Stefan Monnier <monnier@iro.umontreal.ca>
3716
3717 * icomplete.el: Change separator; add ido-style commands.
3718 (icomplete-show-key-bindings): Remove custom var.
3719 (icomplete-get-keys): Remove function.
3720 (icomplete-forward-completions, icomplete-backward-completions):
3721 New commands.
3722 (icomplete-minibuffer-map): New var.
3723 (icomplete-minibuffer-setup): Use it.
3724 (icomplete-exhibit): Don't delay if the list of completions is known.
3725 (icomplete-separator): New custom.
3726 (icomplete-completions): Use it.
3727 * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
3728 (minibuffer-force-complete-and-exit): New command.
3729 (minibuffer--complete-and-exit): New function extracted from
3730 minibuffer-complete-and-exit.
3731 (minibuffer-complete-and-exit): Use it.
3732
3733 * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
3734 error message when the file doesn't exist (bug#12974).
3735
3736 2012-11-29 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
3737
3738 * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
3739
3740 2012-11-29 Glenn Morris <rgm@gnu.org>
3741
3742 * files.el (hack-dir-local-variables): Warn if try to set
3743 coding via dir-locals, since it doesn't work. (Bug#7169)
3744
3745 Add desktop support for restoring vc-dir buffers. (Bug#10606)
3746 * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
3747 Set buffer-local value of desktop-save-buffer.
3748 (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
3749 New functions.
3750 (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
3751 * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
3752
3753 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
3754 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
3755 Doc fix.
3756 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
3757 Doc fixes.
3758
3759 2012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
3760
3761 * calc/calc-forms.el (calc-date-notation): Fix regexp
3762 used to find time codes. Fix symbol for seconds.
3763
3764 2012-11-27 Glenn Morris <rgm@gnu.org>
3765
3766 * emacs-lisp/derived.el (derived-mode-make-docstring):
3767 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
3768
3769 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
3770
3771 * textmodes/table.el (table-insert): Don't use `symbol-name' on
3772 lexically scoped variables (bug#13005).
3773
3774 2012-11-27 Glenn Morris <rgm@gnu.org>
3775
3776 * vc/vc-hooks.el (vc-mistrust-permissions):
3777 Default to t, to avoid data-loss. (Bug#11490)
3778
3779 2012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
3780
3781 * progmodes/python.el (python-indent-guess-indent-offset):
3782 If indentation is guessed make python-indent-offset buffer-local.
3783
3784 Fix Imenu regression.
3785 * progmodes/python.el (python-nav-beginning-of-defun):
3786 Fix forward movement when statement(s) separates point from defun.
3787 (python-imenu-prev-index-position): New function.
3788
3789 2012-11-27 Eli Zaretskii <eliz@gnu.org>
3790
3791 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
3792
3793 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
3794 Don't set buffer-file-type. Return nil. (Bug#12989)
3795
3796 2012-11-27 Glenn Morris <rgm@gnu.org>
3797
3798 * hippie-exp.el (hippie-expand-try-functions-list):
3799 Re-autoload it. (Bug#12982)
3800
3801 2012-11-27 Eli Zaretskii <eliz@gnu.org>
3802
3803 * descr-text.el (describe-char-padded-string):
3804 Call internal-char-font only on GUI frames. (Bug#11964)
3805
3806 2012-11-27 Andreas Schwab <schwab@linux-m68k.org>
3807
3808 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
3809 and obsoletion message.
3810
3811 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
3812
3813 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
3814 the constructs to keep outside of the `cl-block' (bug#12977).
3815
3816 2012-11-27 Chong Yidong <cyd@gnu.org>
3817
3818 * mouse.el (mouse-drag-line): Even if the line is not draggable,
3819 keep reading until we get the up-event anyway, in order to process
3820 the up-event for mouse-1-click-follows-link (Bug#12971).
3821
3822 2012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
3823
3824 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
3825 base function is not yet defined (bug#12965).
3826 (ad-activate-advised-definition): Use ad-compile-function.
3827 (ad-activate): Use cond.
3828
3829 2012-11-25 Leo Liu <sdl.web@gmail.com>
3830
3831 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
3832 (Bug#12979)
3833
3834 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
3835
3836 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
3837 reftex-section-info-function in order to be compatible with
3838 Texinfo integration.
3839
3840 * textmodes/reftex.el (reftex-section-pre-regexp)
3841 (reftex-section-post-regexp, reftex-section-info-function):
3842 New variable.
3843 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
3844 reftex-section-post-regexp, and reftex-section-info-function in order
3845 to be compatible with Texinfo integration.
3846
3847 * textmodes/reftex-toc.el (reftex-toc-promote-action):
3848 use reftex-section-pre-regexp variable in order to be compatible with
3849 Texinfo integration.
3850
3851 2012-11-25 Chong Yidong <cyd@gnu.org>
3852
3853 * faces.el: Make face-spec-set more analogous to setq.
3854 (face-spec-set): Change the third arg to specify whether this
3855 function is being called via defface, customize, or a third party.
3856 Set the appropriate symbol properties. Clear the override spec if
3857 setting via Custom. Initialize face if necessary. (Bug#4988)
3858 (face-spec-recalc): Allow theme faces to completely replace the
3859 defface spec, in the same way as custom faces (Bug#8454).
3860
3861 * cus-face.el (custom-declare-face): Move face initialization to
3862 face-spec-set.
3863 (custom-theme-set-faces): Don't initialize the face name here, as
3864 that is now done in face-spec-set.
3865
3866 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
3867 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
3868 Simplify by using the new arg to face-spec-set.
3869
3870 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
3871 reset face-override-spec too, and use custom-declare-face.
3872
3873 2012-11-24 Jan Djärv <jan.h.d@swipnet.se>
3874
3875 * term/ns-win.el (ns-initialize-window-system): Move creation of
3876 fontsets here (Bug#11964).
3877
3878 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
3879
3880 * ses.el (ses-rename-cell): Correct bug on mode-line update after
3881 cell renaming.
3882
3883 2012-11-24 Chong Yidong <cyd@gnu.org>
3884
3885 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
3886 obsolete.
3887
3888 * custom.el (custom-theme-set-variables): Use a topological sort
3889 for ordering by custom dependencies (Bug#12952).
3890 (custom--sort-vars, custom--sort-vars-1): New functions.
3891
3892 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
3893
3894 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
3895 lexical-binding (bug#12938).
3896
3897 2012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
3898
3899 * image-mode.el (image-transform-check-size): Use assertions only
3900 for images of type imagemagick.
3901
3902 Otherwise no error, image-transform-fit-to-{width,height} is
3903 silently ignored, as before. Doc fix.
3904
3905 2012-11-24 Chong Yidong <cyd@gnu.org>
3906
3907 * faces.el (color-defined-p): Doc fix (Bug#12853).
3908
3909 2012-11-24 Juri Linkov <juri@jurta.org>
3910
3911 * dired.el (dired-mark): Add optional arg `interactive'.
3912 Check for `use-region-p' if `interactive' is non-nil.
3913 (dired-unmark, dired-flag-file-deletion): Add optional arg
3914 `interactive'. Call `dired-mark' with the arg `interactive'.
3915 (Bug#10624)
3916
3917 * wdired.el: Revert 2012-10-17 change partly and replace it with
3918 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
3919 (wdired-finish-edit): Add marks for new file names to
3920 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
3921 after `revert-buffer'.
3922 (wdired-do-renames): Remove calls to `dired-remove-file',
3923 `dired-add-file', `dired-add-entry'. (Bug#11795)
3924
3925 2012-11-24 Alan Mackenzie <acm@muc.de>
3926
3927 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
3928
3929 Fix bugs in the state cache. Enhance a debugging mechanism.
3930 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
3931 "brace at column zero" strategy for C++.
3932 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
3933 (c-parse-state-point): New variable.
3934 (c-record-parse-state-state): Record old parse state with
3935 `copy-tree'. Record previous value of point.
3936 (c-debug-parse-state-double-cons): New debugging function.
3937 (c-debug-parse-state): Call the above new function.
3938 (c-toggle-parse-state-debug): Output a confirmatory message.
3939
3940 * progmodes/cc-mode.el (c-before-change, c-after-change):
3941 Call c-invalidate-state-cache from `c-before-change' instead of
3942 `c-after-change'.
3943
3944 2012-11-23 Chong Yidong <cyd@gnu.org>
3945
3946 * find-cmd.el (find-constituents): Add executable, ipath,
3947 readable, samefile, writable, daystart, regextype (Bug#12856).
3948
3949 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
3950
3951 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
3952
3953 2012-11-22 Paul Eggert <eggert@cs.ucla.edu>
3954
3955 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
3956 definition. This fixes a bootstrap failure.
3957 (calc-gregorian-switch): In menu, put dates before regions.
3958 This is easier to follow, lines up better in the menu, and lets us
3959 coalesce regions that switch at the same time. Give country
3960 names, not "Vatican", as that's better for non-expert users.
3961 Use names that are stable between the date of switch and now, e.g.,
3962 Bohemia and Moravia (which existed then and now) and not
3963 Czechoslovakia (which didn't exist then and doesn't exist now).
3964 What is now the U.S. mostly did not switch at the same time as
3965 Britain, so omit the U.S. Correct spelling of "Britain".
3966 Catholic Switzerland was too much of a mess, so omit it.
3967
3968 2012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
3969
3970 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
3971 after the variable is changed.
3972
3973 2012-11-21 Daniel Colascione <dancol@dancol.org>
3974
3975 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
3976 in SQL declarations for font-lock.
3977 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
3978
3979 2012-11-21 Glenn Morris <rgm@gnu.org>
3980
3981 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
3982 (face-italic-p): Add optional argument "inherit".
3983
3984 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
3985 Remove -p suffix from names, for consistency with other set-face-*.
3986 (set-face-inverse-video): Fix interactive spec.
3987 * play/gamegrid.el (gamegrid-make-mono-tty-face):
3988 * textmodes/table.el (table--update-cell-face):
3989 Use set-face-inverse-video rather than now obsolete alias.
3990
3991 2012-11-21 Eli Zaretskii <eliz@gnu.org>
3992
3993 * simple.el (line-move): Don't call line-move-partial if
3994 scroll-conservatively is in effect. (Bug#12927)
3995
3996 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
3997
3998 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
3999 Fallback on completion-at-point rather than
4000 pcomplete-expand-and-complete, and only if pcomplete actually failed.
4001 (eshell-cmpl-initialize): Setup completion-at-point.
4002
4003 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
4004
4005 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
4006
4007 2012-11-21 Michael Albinus <michael.albinus@gmx.de>
4008
4009 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
4010 are remote, check out-of-band property for both.
4011
4012 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4013
4014 * window.el (switch-to-buffer): Re-add the warning that was lost in the
4015 code rewrite.
4016
4017 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
4018
4019 More minor time fixes.
4020 * calendar/time-date.el: Commentary fix.
4021 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
4022 too much other code depends on (0 0) time stamps.
4023 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
4024 Add a couple of FIXME comments.
4025
4026 Minor cleanup for times as lists of four integers.
4027 * files.el (dir-locals-directory-cache):
4028 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
4029 Doc fixes.
4030 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
4031 * ps-bdf.el (bdf-file-newer-than-time):
4032 Process four-integers time stamps, not two. Doc fixes.
4033
4034 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
4035
4036 * uniquify.el (uniquify-managed): Use defvar-local.
4037 (rename-buffer, create-file-buffer): Advise with advice-add.
4038 (uniquify-unload-function): Unadvise accordingly.
4039
4040 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
4041 (trace-buffer): Don't purecopy.
4042 (trace-entry-message, trace-exit-message): Add `context' arg.
4043 (trace--timer): New var.
4044 (trace-make-advice): Adjust for use in nadvice.
4045 Add `context' argument. Delay `display-buffer' via a timer.
4046 (trace-function-internal): Use advice-add.
4047 (trace--read-args): New function.
4048 (trace-function-foreground, trace-function-background): Use it.
4049 (trace-function): Rename to trace-function-foreground and redefine as
4050 an alias to that new name.
4051 (untrace-function, untrace-all): Adjust to the use of nadvice.
4052
4053 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
4054
4055 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
4056
4057 * subr.el (called-interactively-p-functions): New var.
4058 (internal--called-interactively-p--get-frame): New macro.
4059 (called-interactively-p, interactive-p): Rewrite in Lisp.
4060 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
4061 (called-interactively-p-functions): Use it.
4062 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
4063 (called-interactively-p-functions): Use it.
4064 * allout.el (allout-called-interactively-p): Don't assume
4065 called-interactively-p is a subr.
4066
4067 2012-11-20 Glenn Morris <rgm@gnu.org>
4068
4069 * profiler.el (profiler-report-mode-map): Add a menu.
4070 No need to bind `q' because we derive from special-mode.
4071 (profiler-report-find-entry): Handle calls from the menu-bar.
4072
4073 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4074
4075 * emacs-lisp/byte-run.el (defun-declarations-alist):
4076 Allow a compiler-macro to be a lambda expression.
4077
4078 * progmodes/python.el: Use cl-lib. Move var declarations outside of
4079 eval-when-compile.
4080 (python-syntax-context): Add compiler-macro.
4081 (python-font-lock-keywords): Simplify with De Morgan.
4082
4083 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
4084
4085 * files.el (load-file): Require match in minibuffer selection, as was
4086 the case in Emacs-20 before we changed the spec to allow .elc files
4087 (bug#12935).
4088
4089 * json.el: Don't require cl since we don't use it.
4090 * color.el: Don't require cl.
4091 (color-complement): `caddr' -> `nth 2'.
4092
4093 * calendar/time-date.el (time-to-seconds): De-obsolete.
4094
4095 2012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
4096
4097 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
4098 year numbers.
4099 (math-date-to-julian-dt): Adjust the initial approximation for the
4100 year to deal with the new definition of the DATE.
4101
4102 2012-11-19 Daniel Colascione <dancol@dancol.org>
4103
4104 * term/w32-win.el (cygwin-convert-path-from-windows):
4105 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
4106
4107 2012-11-18 Chong Yidong <cyd@gnu.org>
4108
4109 * filecache.el (file-cache--read-list): New function.
4110 (file-cache-add-directory-list, file-cache-add-file-list)
4111 (file-cache-delete-file-list, file-cache-delete-directory-list):
4112 Use it to read a list of files or directories (Bug#12846).
4113 (file-cache-add-file, file-cache-add-directory)
4114 (file-cache-delete-file-list, file-cache-delete-file-regexp)
4115 (file-cache-delete-directory): Print an message.
4116
4117 2012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
4118
4119 * calc/calc-forms.el (math-date-to-dt): Use integer date when
4120 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
4121
4122 2012-11-18 Glenn Morris <rgm@gnu.org>
4123
4124 * image.el (insert-image, insert-sliced-image): Doc fix.
4125
4126 2012-11-18 Chong Yidong <cyd@gnu.org>
4127
4128 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
4129 (Bug#12810).
4130
4131 2012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
4132
4133 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
4134 response when the target file is in a subdirectory (Bug#12757).
4135
4136 2012-11-18 Chong Yidong <cyd@gnu.org>
4137
4138 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
4139
4140 2012-11-18 Glenn Morris <rgm@gnu.org>
4141
4142 * emacs-lisp/cl-lib.el (face-underline-p):
4143 Use set-face-underline rather than the alias set-face-underline-p.
4144
4145 * window.el (with-temp-buffer-window): Doc fix.
4146 * subr.el (with-output-to-temp-buffer):
4147 Add doc xref to with-temp-buffer-window.
4148
4149 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
4150
4151 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
4152 * calc/calc.el (math-format-date-cache): Declare.
4153
4154 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
4155
4156 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
4157 It also uses January 1, 1 AD as its day number 1.
4158 * calc/calc-forms.el (math-julian-date-beginning)
4159 (math-julian-date-beginning-int): Implement this.
4160
4161 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
4162
4163 * descr-text.el (quail-find-key):
4164 * dired.el (desktop-file-name):
4165 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
4166 * generic-x.el (comint-mode, comint-exec):
4167 * image-dired.el (widget-forward):
4168 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
4169 (speedbar-change-expand-button-char)
4170 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
4171 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
4172 * printing.el (easy-menu-add-item, easy-menu-remove-item)
4173 (widget-field-action, widget-value-set):
4174 * speedbar.el (imenu--make-index-alist):
4175 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
4176 (ring-length, ring-insert):
4177 * vcursor.el (compare-windows-skip-whitespace):
4178 * woman.el (dired-get-filename):
4179 Declare functions.
4180
4181 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
4182
4183 2012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
4184
4185 * calc/calc.el (calc-gregorian-switch): New variable.
4186
4187 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
4188 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
4189 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
4190 (math-leap-year-p): Add option to distinguish between Julian
4191 and Gregorian calendars.
4192 (math-day-number): Use `math-day-in-year' to do the computations.
4193 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
4194 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
4195 to do the computations.
4196 (math-date-to-dt): Use `math-date-to-julian-dt' and
4197 `math-date-to-gregorian-dt' to do the computations.
4198 (calcFunc-weekday, math-format-date-part): Use the new version of
4199 the DATE to determine the weekday.
4200 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
4201 when necessary.
4202
4203 2012-11-17 Eli Zaretskii <eliz@gnu.org>
4204
4205 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
4206 Cygwin; otherwise use 'file:'. (Bug#12914)
4207 (cygwin-convert-path-from-windows): Declare, to avoid
4208 byte-compiler warnings.
4209
4210 2012-11-17 Andreas Politz <politza@fh-trier.de>
4211
4212 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
4213 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
4214 prefix and negative numeric prefix args (Bug#12795).
4215
4216 2012-11-17 Stephen Berman <stephen.berman@gmx.net>
4217
4218 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
4219 Don't signal an error with a score that is too low to add to the
4220 list of top scores. (Bug#12779)
4221
4222 2012-11-17 Chong Yidong <cyd@gnu.org>
4223
4224 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
4225
4226 * filecache.el (file-cache-add-file): Handle relative file name in
4227 the argument (Bug#12694).
4228
4229 2012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
4230
4231 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
4232
4233 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4234
4235 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
4236
4237 * emacs-lisp/cl-lib.el: Set more meaningful version number.
4238
4239 2012-11-16 Martin Rudalics <rudalics@gmx.at>
4240
4241 * window.el (enlarge-window, shrink-window): Don't mention return
4242 value in doc-string (Bug#12896).
4243 (window--display-buffer): Don't resize frames - it won't work
4244 with all window managers and defeat pop-up-frame-alist.
4245 (display-buffer-alist): In doc-string explain that CONDITION can
4246 be a function and which arguments are passed to it (Bug#12854).
4247 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
4248 expressions (Bug#12854).
4249 (display-buffer): Pass ACTION argument to
4250 display-buffer-assq-regexp.
4251
4252 2012-11-16 Glenn Morris <rgm@gnu.org>
4253
4254 * window.el (fit-frame-to-buffer-bottom-margin)
4255 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
4256
4257 * faces.el (face-underline-p): Use face-attribute-specified-or.
4258
4259 2012-11-16 Juanma Barranquero <lekktu@gmail.com>
4260
4261 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
4262
4263 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4264
4265 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
4266
4267 2012-11-16 Glenn Morris <rgm@gnu.org>
4268
4269 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
4270 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
4271
4272 * faces.el (face-underline-p): Doc fix. Handle :underline being
4273 things other than `t' (a string, a list).
4274 (face-inverse-video-p): Doc fix.
4275 (set-face-underline): Rename it back from set-face-underline-p.
4276 Doc fix. Allow interactive input of values other than t.
4277 (read-face-attribute): Apply formatting to :underline,
4278 since like :box and :stipple it can take list values.
4279
4280 * term.el (ansi-term): Don't let C-x escape-char binding
4281 clobber the more standard C-c binding. (Bug#12842)
4282
4283 * subr.el (set-temporary-overlay-map): Doc fix.
4284
4285 2012-11-16 Martin Rudalics <rudalics@gmx.at>
4286
4287 * window.el (record-window-buffer)
4288 (display-buffer-record-window): When copying the markers to
4289 window-point preserve window-point-insertion-type. (Bug#12588)
4290
4291 2012-11-16 Glenn Morris <rgm@gnu.org>
4292
4293 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
4294 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
4295 Use new names for hooks rather than obsolete aliases.
4296
4297 2012-11-15 Daniel Colascione <dancol@dancol.org>
4298
4299 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
4300 prefix instead of "file:" so that when FILE-NAME begins with "//",
4301 as it does when the target file is on a network share, url-handler
4302 isn't confused.
4303
4304 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4305
4306 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
4307 a preactivated advice from an old advice.el; they're not compatible!
4308
4309 2012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
4310
4311 * emacs-lisp/nadvice.el (advice--make-interactive-form):
4312 Fix string-spec case.
4313
4314 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
4315
4316 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4317
4318 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
4319 (advice--buffer-local-function-sample): New var.
4320 (advice--set-buffer-local, advice--buffer-local): New functions.
4321 (add-function, remove-function): Use them.
4322
4323 2012-11-15 Drew Adams <drew.adams@oracle.com>
4324
4325 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
4326
4327 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4328
4329 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
4330 potential binding of print-gensym to t, and prettify (back)quotes in
4331 case they appear in args's default values (bug#12884).
4332
4333 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4334
4335 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
4336 (advice-eval-interactive-spec): New function.
4337 (advice--make-interactive-form): Support around advice (bug#12844).
4338
4339 2012-11-14 Dmitry Gutov <dgutov@yandex.ru>
4340
4341 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
4342 more strict. Add docstring.
4343 (ruby-expression-expansion-re): Extract from
4344 `ruby-match-expression-expansion'.
4345 (ruby-syntax-propertize-function): After everything else, search
4346 for expansions in string literals, mark their insides as
4347 whitespace syntax and save match data for font-lock.
4348 (ruby-font-lock-keywords): Use the 2nd group from expression
4349 expansion matches.
4350 (ruby-match-expression-expansion): Use the match data saved to the
4351 text property in ruby-syntax-propertize-function.
4352
4353 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4354
4355 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
4356 (bug#12879).
4357
4358 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4359
4360 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
4361 start/end keyword a bit harder. Works with different values of N.
4362 Add more comments.
4363 (ruby-end-of-block): Update accordingly.
4364
4365 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4366
4367 * woman.el (woman-file-name): Don't mess with unread-command-events
4368 (bug#12861).
4369
4370 * emacs-lisp/advice.el: Layer on top of nadvice.el.
4371 Remove out of date self-require hack.
4372 (ad-do-advised-functions): Use simple `dolist'.
4373 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
4374 (ad-advice-definition): Redefine as functions.
4375 (ad-advice-classes): Move before first use.
4376 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
4377 (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
4378 (ad--defalias-fset): Remove functions.
4379 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
4380 (ad-get-orig-definition): Rewrite.
4381 (ad-make-advised-definition-docstring): Change base docstring.
4382 (ad-real-orig-definition): Rewrite.
4383 (ad-map-arglists): Change name of called function.
4384 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
4385 (ad-make-advised-definition): Simplify.
4386 (ad-assemble-advised-definition): Tweak for new calling context.
4387 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
4388 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
4389 function and call ad-activate if needed.
4390 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
4391 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
4392 (ad-compile-function): Compile ad-Advice-*.
4393 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
4394 (ad-start-advice, ad-stop-advice): Remove.
4395
4396 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4397
4398 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
4399 period before class method names, not after. Remove handling of
4400 one impossible case. Add comments.
4401
4402 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4403
4404 * emacs-lisp/advice.el: Remove support for freezing.
4405 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
4406 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
4407 Remove support for `freeze'.
4408
4409 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
4410 override the default.
4411 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
4412 cl--dotimes/dolist.
4413 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
4414 `cl' is loaded.
4415
4416 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
4417 from add-advice.
4418 (advice--strip-macro): New function.
4419 (advice--defalias-fset): Use them to handle macros.
4420 (advice-add): Use them.
4421 (advice-member-p): Correctly handle macros.
4422
4423 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4424
4425 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4426 Never font-lock the beginning of singleton class as heredoc.
4427
4428 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4429
4430 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
4431
4432 2012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
4433
4434 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
4435 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
4436 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
4437
4438 2012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
4439
4440 Fix end-of-defun misbehavior.
4441 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
4442 python-beginning-of-defun-function. Handle nested defuns
4443 correctly.
4444 (python-nav-end-of-defun): Rename from
4445 python-end-of-defun-function. Ensure forward movement.
4446 (python-info-current-defun): Reimplement to work as intended
4447 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
4448 parent defuns as soon as possible.
4449
4450 2012-11-13 Glenn Morris <rgm@gnu.org>
4451
4452 * progmodes/flymake.el (flymake-error-bitmap)
4453 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
4454 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
4455
4456 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4457
4458 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
4459 backward, always stop at indentation. Reverts the change from
4460 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
4461
4462 2012-11-13 Glenn Morris <rgm@gnu.org>
4463
4464 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
4465 Add ibuffer-filter-by-derived-mode.
4466
4467 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
4468 the same name shadowing each other.
4469
4470 * window.el (with-temp-buffer-window): Doc tweak.
4471
4472 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
4473
4474 * help.el (temp-buffer-max-height):
4475 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
4476 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
4477
4478 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4479
4480 * emacs-lisp/nadvice.el: New package.
4481 * subr.el (special-form-p): New function.
4482 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
4483 (elp-all-instrumented-list): Remove var.
4484 (elp-not-profilable): Remove elp-wrapper.
4485 (elp-profilable-p): Use autoloadp and special-form-p.
4486 (elp--advice-name): New const.
4487 (elp-instrument-function): Use advice-add.
4488 (elp--instrumented-p): New predicate.
4489 (elp-restore-function): Use advice-remove.
4490 (elp-restore-all, elp-reset-all): Use mapatoms.
4491 (elp-set-master): Use elp--instrumented-p.
4492 (elp--make-wrapper): Rename from elp-wrapper, return a function
4493 suitable for advice-add. Use cl-inf.
4494 (elp-results): Use mapatoms+elp--instrumented-p.
4495 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
4496 (debug-function-list): Remove var.
4497 (debug): Rename arg, and then let-bind it explicitly inside.
4498 (debugger-setup-buffer): Rename arg.
4499 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
4500 (debugger-frame-number): Adjust to new debug-on-entry setup.
4501 (debug--implement-debug-on-entry): Rename from
4502 implement-debug-on-entry, add argument.
4503 (debugger-special-form-p): Remove, use special-form-p instead.
4504 (debug-on-entry): Use advice-add.
4505 (debug--function-list): New function.
4506 (cancel-debug-on-entry): Use it, along with advice-remove.
4507 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
4508 (debugger-list-functions): Use debug--function-list instead of
4509 debug-function-list.
4510 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
4511 (ad-special-form-p): Remove, use special-form-p instead.
4512 (ad-set-advice-info): Use add-function and remove-function.
4513 (ad--defalias-fset): Adjust accordingly.
4514
4515 2012-11-10 Glenn Morris <rgm@gnu.org>
4516
4517 * mail/emacsbug.el (report-emacs-bug-tracker-url)
4518 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
4519 (report-emacs-bug-create-existing-bugs-buffer)
4520 (report-emacs-bug-parse-query-results)
4521 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
4522
4523 * term.el (term-default-fg-color, term-default-bg-color):
4524 Make obsolete, rather than just saying "deprecated" in the doc.
4525
4526 * term.el (term): Rename from `term-face'.
4527 (term-current-face, ansi-term-color-vector)
4528 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
4529 Update all users.
4530
4531 2012-11-10 Jan Djärv <jan.h.d@swipnet.se>
4532
4533 * server.el (server-create-window-system-frame): Handle Nextstep
4534 specially (Bug#12780).
4535
4536 2012-11-10 Glenn Morris <rgm@gnu.org>
4537
4538 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
4539 Unautoload, and make obsolete. (Bug#7449)
4540
4541 2012-11-10 Chong Yidong <cyd@gnu.org>
4542
4543 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
4544 rename from diff-remove-trailing-whitespace (Bug#12831).
4545
4546 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4547
4548 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
4549 miscompilation of trace.el.
4550
4551 2012-11-10 Glenn Morris <rgm@gnu.org>
4552
4553 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
4554
4555 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4556
4557 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
4558 (bug#12812).
4559
4560 2012-11-10 Chong Yidong <cyd@gnu.org>
4561
4562 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
4563 a defcustom with an appropriate :set function.
4564 (minibuffer-default--in-prompt-regexps): New function.
4565
4566 2012-11-10 Glenn Morris <rgm@gnu.org>
4567
4568 * emacs-lisp/cl.el (define-setf-expander, defsetf)
4569 (define-modify-macro): Doc fixes.
4570
4571 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
4572 (gv-define-simple-setter): Update doc of `fix-return'.
4573
4574 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4575
4576 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
4577 twice when `fix-return' is set (bug#12813).
4578
4579 * emacs-lisp/cl.el (defsetf): Pass the third arg to
4580 gv-define-simple-setter (bug#12812).
4581
4582 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
4583 (bug#12756).
4584
4585 2012-11-10 Glenn Morris <rgm@gnu.org>
4586
4587 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
4588
4589 * emacs-lisp/cl-extra.el (cl-prettyexpand):
4590 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
4591 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
4592 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
4593
4594 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
4595
4596 2012-11-10 Leo Liu <sdl.web@gmail.com>
4597
4598 * ido.el (ido-set-matches-1): Improve flex matching performance by
4599 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
4600
4601 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4602
4603 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
4604 (ad--defalias-fset): New function.
4605 (ad-safe-fset): Remove.
4606 (ad-make-freeze-definition): Use cl-letf*.
4607
4608 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4609
4610 * subr.el (dolist): Don't bind VAR in RESULT.
4611
4612 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
4613 (fset, documentation): Don't save real def since we don't advise.
4614 (ad-do-advised-functions): Remove problematic `result-form'.
4615 (ad-safe-fset): `ad-real-fset' => `fset'.
4616 (ad-read-advised-function): Don't assume that ad-do-advised-functions
4617 uses CL's dolist internally.
4618 (ad-arglist): Remove unused arg `name'.
4619 (ad-docstring, ad-make-advised-docstring):
4620 `ad-real-documentation' => `documentation'.
4621 (warning-suppress-types): Declare.
4622 (ad-set-arguments): Simple CSE.
4623 (ad-recover-normality): Sanity check.
4624
4625 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
4626 (funcall '(lambda ..) ..) into ((lambda ..) ..).
4627
4628 2012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
4629
4630 * ses.el: symbol to coordinate mapping is made by symbol property
4631 `ses-cell'. This means that the same mapping is done for all SES
4632 sheets. That is good enough for cells with standard A1 names, but
4633 not for named cell. So a hash map is added for the latter.
4634 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
4635 (ses-sym-rowcol): Use hashmap for named cell.
4636 (ses-is-cell-sym-p): New defun.
4637 (ses-decode-cell-symbol): New defun.
4638 (ses-create-cell-variable): Add cell to hashmap when name is not
4639 A1-like.
4640 (ses-rename-cell): Check that cell new name is not already in
4641 spreadsheet with the use of ses-is-cell-sym-p
4642 (ses-rename-cell): Use hash map for named cells, but accept also
4643 renaming back to A1-like.
4644
4645 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4646
4647 * emacs-lisp/advice.el: Use new dynamic docstrings.
4648 (ad-make-advised-definition-docstring, ad-advised-definition-p):
4649 Use dynamic-docstring-function instead of ad-advice-info.
4650 (ad--make-advised-docstring): New function extracted from
4651 ad-make-advised-docstring.
4652 (ad-make-advised-docstring): Use it.
4653 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
4654 from sql-help.
4655 (sql-help): Use it with dynamic-docstring-function.
4656
4657 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
4658
4659 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4660
4661 * files.el (hack-one-local-variable--obsolete): New function.
4662 (hack-one-local-variable): Use it for obsolete settings.
4663
4664 * subr.el (locate-user-emacs-file): If both old and new name exist, use
4665 the new name.
4666
4667 * progmodes/js.el (js--filling-paragraph): New var.
4668 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
4669 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
4670 less sneaky.
4671
4672 2012-11-08 Julien Danjou <julien@danjou.info>
4673
4674 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
4675 `auto-mode-alist' (Bug#12835).
4676
4677 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4678
4679 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
4680 (perl--prettify-symbols-alist): New const.
4681 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
4682 New functions.
4683 (perl-font-lock-keywords-2): Use them.
4684 (perl-electric-noindent-p): New function.
4685 (perl-mode): Use it to set up electric-indent-mode.
4686 (perl-electric-terminator, perl-indent-command): Mark obsolete.
4687 (perl-mode-map): Remove bindings for them.
4688 (perl-imenu-generic-expression, perl-outline-level):
4689 Match functions&packages in column>0.
4690
4691 * env.el (env--substitute-vars-regexp): New const.
4692 (substitute-env-vars): Use it. Add `only-defined' arg.
4693 * net/tramp.el (tramp-replace-environment-variables): Use it.
4694
4695 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
4696 Byte-compile *before* eval in eval-and-compile.
4697 (byte-compile-log-warning): Remove redundant inhibit-read-only.
4698 (byte-compile-file-form-autoload): Don't hide actual definition.
4699 (byte-compile-maybe-guarded): Accept `functionp' as well.
4700
4701 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
4702
4703 2012-11-07 Michael Albinus <michael.albinus@gmx.de>
4704
4705 * notifications.el (notifications-get-server-information-method):
4706 New defconst.
4707 (notifications-get-capabilities): Fix docstring.
4708 (notifications-get-server-information): New defun.
4709
4710 2012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4711
4712 * textmodes/ispell.el (ispell-region): Standard re-indent for better
4713 readability.
4714
4715 * textmodes/ispell.el: Experimental support for support debugging.
4716 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
4717 buffer for ispell.
4718 (ispell-print-if-debug): New function to print stuff to
4719 `ispell-debug-buffer' if debugging is enabled.
4720 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
4721 show some debugging info.
4722 (ispell-buffer-with-debug): New function that creates a debugging
4723 buffer and calls `ispell-buffer' with debugging enabled.
4724
4725 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
4726 comment in autoconf mode. (Bug#12768)
4727
4728 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
4729
4730 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
4731 frame-first-window, frame-root-window, frame-selected-window,
4732 minibuffer-selected-window, minibuffer-window,
4733 window-absolute-pixel-edges, window-at, window-body-height,
4734 window-body-width, window-display-table, window-combination-limit,
4735 window-frame, window-fringes, window-inside-absolute-pixel-edges,
4736 window-inside-edges, window-inside-pixel-edges, window-left-child,
4737 window-left-column, window-margins, window-next-buffers,
4738 window-next-sibling, window-new-normal, window-new-total,
4739 window-normal-size, window-parameter, window-parameters, window-parent,
4740 window-pixel-edges, window-point, window-prev-buffers,
4741 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
4742 window-start, window-text-height, window-top-child, window-top-line,
4743 window-total-height, window-total-width and window-use-time to the list
4744 of functions without side-effects.
4745 (toplevel): Add window-valid-p to the list of error-free functions
4746 without side-effects.
4747
4748 2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4749
4750 * textmodes/ispell.el (ispell-program-name):
4751 Update spellchecker parameters when customized.
4752
4753 2012-11-04 Glenn Morris <rgm@gnu.org>
4754
4755 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
4756
4757 2012-11-04 Chong Yidong <cyd@gnu.org>
4758
4759 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
4760 same-window-* variables.
4761
4762 2012-11-04 Juri Linkov <juri@jurta.org>
4763
4764 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
4765 (isearch-describe-key, isearch-describe-mode): Use a display
4766 action instead of binding same-window-* variables (Bug#10040).
4767
4768 2012-11-03 Glenn Morris <rgm@gnu.org>
4769
4770 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
4771 Rename handler properties back from cl-- to cl-. (Bug#12788)
4772
4773 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
4774
4775 2012-11-03 Eli Zaretskii <eliz@gnu.org>
4776
4777 * term/pc-win.el: Don't load term/internal from here.
4778
4779 * loadup.el: Load term/internal from here.
4780
4781 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
4782
4783 * progmodes/python.el (inferior-python-mode): Fix hang in
4784 jit-lock (Bug#12645).
4785
4786 2012-11-03 Martin Rudalics <rudalics@gmx.at>
4787
4788 * window.el (switch-to-visible-buffer)
4789 (switch-to-buffer-preserve-window-point): Fix doc-strings.
4790
4791 2012-11-03 Glenn Morris <rgm@gnu.org>
4792
4793 * emacs-lisp/cl-lib.el (cl--random-time):
4794 Rename from cl-random-time. (Bug#12773)
4795 (cl--gensym-counter, cl--random-state): Update callers.
4796 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
4797
4798 2012-11-03 Chong Yidong <cyd@gnu.org>
4799
4800 * cus-start.el: Make cursor-type customizable (Bug#11633).
4801
4802 2012-11-02 Glenn Morris <rgm@gnu.org>
4803
4804 * filecache.el: No need to load find-lisp when compiling.
4805 (find-lisp-find-files): Autoload it.
4806 (file-cache-add-directory-recursively): Don't require find-lisp.
4807
4808 * image.el (image-type-from-file-name): Trivial simplification.
4809
4810 * emacs-lisp/bytecomp.el (byte-compile-eval):
4811 Decouple "noruntime" and "cl-functions" warnings.
4812
4813 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
4814
4815 * play/gomoku.el (gomoku-display-statistics): Update mode line
4816 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
4817
4818 2012-10-31 Martin Rudalics <rudalics@gmx.at>
4819
4820 * window.el (quit-restore-window): If the window has been
4821 created on an existing frame and ended up as the sole window on
4822 that frame, do not delete it (Bug#12764).
4823
4824 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
4825
4826 * progmodes/sh-script.el (sh--inside-noncommand-expression):
4827 Rename from sh--inside-arithmetic-expression, handle more cases
4828 (bug#11263).
4829
4830 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
4831 (sh-font-lock-open-heredoc): Use it (bug#12770).
4832
4833 2012-10-30 Glenn Morris <rgm@gnu.org>
4834
4835 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
4836
4837 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
4838
4839 2012-10-29 Chong Yidong <cyd@gnu.org>
4840
4841 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
4842 function key is stored in a keyboard macro (Bug#4894).
4843
4844 * thingatpt.el (number-at-point): Apply a thing-at-point property.
4845
4846 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
4847
4848 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
4849 header comments".
4850 (diff-unified->context, diff-context->unified)
4851 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
4852
4853 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
4854
4855 * files.el (find-alternate-file): Only ask one question (bug#12487).
4856
4857 2012-10-29 Chong Yidong <cyd@gnu.org>
4858
4859 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
4860 Suggested by Dan Nicolaescu (Bug#6326).
4861
4862 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
4863
4864 * startup.el (fancy-about-screen): Don't message (Bug#12680).
4865
4866 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
4867
4868 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
4869
4870 * face-remap.el (face-remap-add-relative): Handle the case where a
4871 face-remapping-alist entry is a cons cell (Bug#12762).
4872
4873 2012-10-29 Kevin Ryde <user42@zip.com.au>
4874
4875 * woman.el (woman-parse-numeric-value): Handle picas correctly
4876 (Bug#12639).
4877
4878 2012-10-29 Glenn Morris <rgm@gnu.org>
4879
4880 * emacs-lisp/cl.el (defsetf): Doc fix.
4881
4882 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
4883
4884 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
4885 syntax to the matching opener, if any (bug#12547).
4886 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
4887 matching open as a "case-(".
4888 (sh-smie-rc-grammar): Add a corresponding rule for it.
4889
4890 2012-10-28 Daniel Hackney <dan@haxney.org>
4891
4892 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
4893 "PKGNAME-autoloads.el" in case we created it.
4894
4895 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
4896
4897 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
4898 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
4899 (completion--twq-all): Disable too-strict assertions.
4900
4901 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
4902
4903 2012-10-27 Eli Zaretskii <eliz@gnu.org>
4904
4905 * profiler.el (profiler-report-make-entry-part): Fix help-echo
4906 text to match the real keybindings.
4907
4908 2012-10-27 Juri Linkov <juri@jurta.org>
4909
4910 * wdired.el (wdired-keep-marker-rename): New defcustom.
4911 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
4912 (Bug#11795)
4913
4914 * dired.el (dired-keep-marker-rename): Add reference to
4915 `wdired-keep-marker-rename' in the docstring.
4916 Add default character value ?R to display initially in
4917 Customization UI instead of ?@.
4918
4919 2012-10-27 Martin Rudalics <rudalics@gmx.at>
4920
4921 * window.el (display-buffer): In doc-string describe
4922 window-height and window-width alist entries.
4923
4924 * time.el (display-time-world): Restore fit-window-to-buffer
4925 behavior.
4926
4927 2012-10-27 Chong Yidong <cyd@gnu.org>
4928
4929 * subr.el (insert-buffer-substring-as-yank): Doc fix.
4930
4931 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
4932
4933 * minibuffer.el (completion-category-overrides): New completion
4934 category `bookmark' (bug#11131).
4935
4936 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
4937
4938 * emacs-lisp/advice.el (ad-assemble-advised-definition):
4939 Silence bogus compiler warnings for ad-do-it.
4940
4941 * bookmark.el (bookmark-completing-read): Set the completion category
4942 to `bookmark' (bug#11131).
4943
4944 2012-10-26 Bastien <bzg@altern.org>
4945 Stefan Monnier <monnier@iro.umontreal.ca>
4946
4947 * face-remap.el: Use lexical-binding.
4948 (text-scale-adjust): Improve docstring. Use itself for the temporary
4949 overlay-map bindings, so as to repeat the "Use..." message each time.
4950
4951 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
4952
4953 * emacs-lisp/macroexp.el (macroexp--expand-all):
4954 Obey byte-compile-warning-enabled-p (bug#12486).
4955
4956 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
4957 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
4958
4959 2012-10-26 Martin Rudalics <rudalics@gmx.at>
4960
4961 * mouse.el (mouse-drag-line): Move last form into preceding when
4962 clause (Bug#12731).
4963
4964 * help.el (resize-temp-buffer-window): Fix doc-string.
4965
4966 2012-10-25 David Engster <deng@randomsample.de>
4967
4968 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
4969 Remove. This feature is already integrated in imenu.
4970
4971 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
4972 always loaded. Require `speedbar' unconditionally.
4973
4974 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
4975
4976 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
4977
4978 * minibuffer.el (minibuffer-force-complete): Fix thinko.
4979
4980 * net/ldap.el (ldap-search-internal): The official ldif format starts
4981 with a "version: 1" header (bug#12724).
4982
4983 * emacs-lisp/package.el (package-installed-p): Warn if not ready
4984 (bug#12721).
4985
4986 2012-10-25 Glenn Morris <rgm@gnu.org>
4987
4988 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
4989
4990 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
4991
4992 * minibuffer.el (minibuffer-force-complete): Use one more marker
4993 for the temporary-overlay-map command (bug#12619).
4994
4995 2012-10-24 Chong Yidong <cyd@gnu.org>
4996
4997 * time.el (display-time-world-mode): Derive from special-mode.
4998 (display-time-world): Use display-buffer (Bug#12708).
4999 (display-time-world-mode-map): Variable deleted.
5000 (display-time-world-display): Wrap the final delete-char inside
5001 inhibit-read-only.
5002
5003 2012-10-24 Chong Yidong <cyd@gnu.org>
5004
5005 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
5006 Doc fix.
5007
5008 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
5009
5010 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5011
5012 * minibuffer.el (completion--all-sorted-completions-location): New var.
5013 (completion--cache-all-sorted-completions)
5014 (completion--flush-all-sorted-completions): Use it.
5015 (completion-in-region, completion-in-region--postch)
5016 (completion-at-point, completion-help-at-point): Use markers in
5017 completion-in-region--data (bug#12619).
5018
5019 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5020
5021 * progmodes/compile.el (compilation-start): Try to handle common
5022 quoting of `cd' argument (bug#12640).
5023
5024 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
5025 (bug#12671).
5026
5027 2012-10-23 Glenn Morris <rgm@gnu.org>
5028
5029 * progmodes/gud.el (gud-menu-map):
5030 Check gdb-active-process is bound. (Bug#12358)
5031
5032 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5033
5034 * repeat.el (repeat): Set real-this-command (bug#12232).
5035
5036 * htmlfontify.el (hfy-post-html-hook):
5037 * filesets.el (filesets-cache-fill-content-hook):
5038 * arc-mode.el (archive-extract-hook):
5039 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
5040 * net/rcirc.el (rcirc-sentinel-functions)
5041 (rcirc-receive-message-functions, rcirc-activity-functions)
5042 (rcirc-print-functions):
5043 * net/dbus.el (dbus-event-error-functions):
5044 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
5045 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
5046 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
5047 * term/sun.el (sun-raw-prefix-hooks):
5048 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
5049
5050 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
5051
5052 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
5053 Set `tramp-chunksize' to 1. This improves the performance.
5054 (tramp-smb-wait-for-output): Add timeout to
5055 `tramp-accept-process-output' calls.
5056
5057 2012-10-23 Chong Yidong <cyd@gnu.org>
5058
5059 * faces.el (font-list-limit): Define as an obsolete variable.
5060
5061 * startup.el (command-line):
5062 * cus-start.el: Don't refer to font-list-limit.
5063
5064 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
5065
5066 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5067
5068 * subr.el (internal-temp-output-buffer-show): Rename from
5069 temp-output-buffer-show, since previously compiled files expect this name.
5070
5071 2012-10-23 Glenn Morris <rgm@gnu.org>
5072
5073 * image.el (image-type-from-file-name): If multiple types match,
5074 return the first one that is supported. (Bug#9045)
5075
5076 2012-10-22 Glenn Morris <rgm@gnu.org>
5077
5078 * image.el (imagemagick-enabled-types): Doc fix.
5079
5080 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
5081
5082 * progmodes/which-func.el (which-func-current): The hash-table may have
5083 an explicit nil (bug#12338).
5084
5085 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
5086
5087 * electric.el (electric-pair-delete-selection-self-insert-function):
5088 Rename to electric-pair-will-use-region, return a boolean.
5089 (electric-pair-mode): Adjust accordingly. Don't require delsel.
5090
5091 * delsel.el (delete-selection-helper): Use a function instead of a hook.
5092 (delete-selection-pre-hook): Use use-region-p.
5093 (delete-selection-self-insert-function): Remove.
5094 (self-insert-command): Obey self-insert-uses-region-functions.
5095 (self-insert-iso): Revert to previous setting, since we don't actually
5096 know what that command does.
5097 (delete-selection-self-insert-hooks): Remove.
5098
5099 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
5100
5101 * delsel.el (delete-selection-helper): New function, extracted from
5102 delete-selection-pre-hook.
5103 (delete-selection-pre-hook): Use it.
5104 (delete-selection-self-insert-function): New function.
5105 (delete-selection-self-insert-hooks): New hook.
5106 (self-insert-command, self-insert-iso): Use it.
5107 * electric.el (electric-pair-syntax): New function, extracted from
5108 electric-pair-post-self-insert-function.
5109 (electric-pair-post-self-insert-function): Use it.
5110 (electric-pair-delete-selection-self-insert-function): New function.
5111 (electric-pair-mode): Require delsel and setup
5112 delete-selection-self-insert-hooks (bug#11520).
5113
5114 2012-10-20 Chong Yidong <cyd@gnu.org>
5115
5116 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
5117 no changes to show (Bug#12586).
5118
5119 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
5120 list explicitly (Bug#12571).
5121
5122 2012-10-20 Arne Jørgensen <arne@arnested.dk>
5123
5124 * progmodes/flymake.el (flymake-create-temp-inplace):
5125 Use file-truename.
5126
5127 2012-10-20 Eli Zaretskii <eliz@gnu.org>
5128
5129 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
5130
5131 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
5132
5133 * calc/calc-units.el (math-extract-units): Properly extract powers
5134 of units.
5135
5136 2012-10-20 Daniel Colascione <dancol@dancol.org>
5137
5138 * frame.el (make-frame): Set x-display-name as we used to in order
5139 to unbreak creating an X11 frame from an Emacs daemon started
5140 without a display.
5141
5142 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5143
5144 * minibuffer.el (minibuffer-force-complete): Make the next completion use
5145 the same completion-field (bug#12221).
5146
5147 2012-10-19 Martin Rudalics <rudalics@gmx.at>
5148
5149 * emacs-lisp/debug.el (debug): Record height of debugger window
5150 also when debugger will be back (Bug#8789).
5151
5152 2012-10-18 Chong Yidong <cyd@gnu.org>
5153
5154 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
5155 Convert to defcustom.
5156 (gdb-get-source-file): Don't bind pop-up-windows.
5157
5158 * progmodes/gud.el (gud-display-line): Don't specially re-use
5159 other frames for the gdb-mi case (Bug#12648).
5160
5161 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
5162
5163 * emacs-lisp/advice.el: Clean up commentary a bit.
5164 (ad-do-advised-functions, ad-with-originals): Use `declare'.
5165 (byte-code-function-p): Never redefine.
5166
5167 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
5168
5169 2012-10-18 Glenn Morris <rgm@gnu.org>
5170
5171 * dired.el (dired-sort-toggle): Some ls implementations only allow
5172 a single option string. (Bug#12666)
5173
5174 * minibuffer.el (completion-cycle-threshold): Doc fix.
5175
5176 2012-10-17 Kenichi Handa <handa@gnu.org>
5177
5178 * international/mule.el (set-keyboard-coding-system):
5179 Recover input meta mode when the new coding system doesn not use 8-bit.
5180 Supply TERMINAL arg to set-input-meta-mode.
5181
5182 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
5183
5184 * wdired.el (wdired-old-marks): New variable.
5185 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
5186 (wdired-do-renames): Move point with renamed file and don't lose
5187 mark status (Bug#11795).
5188
5189 2012-10-16 Juri Linkov <juri@jurta.org>
5190
5191 * replace.el (query-replace-help): Mention multi-buffer replacement
5192 keys in the Help message. (Bug#12655)
5193
5194 2012-10-15 Chong Yidong <cyd@gnu.org>
5195
5196 * emacs-lisp/byte-run.el (defsubst): Doc fix.
5197
5198 2012-10-14 Eli Zaretskii <eliz@gnu.org>
5199
5200 * window.el (display-buffer): Doc fix.
5201
5202 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5203 Adjust the msft regexp to the output of Studio 2010, and move msft
5204 before edg-1. See the discussion on emacs-devel,
5205 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
5206 for the details.
5207
5208 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
5209
5210 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
5211 (oset): Move uses of object-class-fast macro after its definition.
5212
5213 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
5214
5215 2012-10-13 Chong Yidong <cyd@gnu.org>
5216
5217 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
5218 enabled, re-enable it (Bug#11963).
5219
5220 2012-10-13 Martin Rudalics <rudalics@gmx.at>
5221
5222 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
5223 non-nil, restore window configuration (Bug#12623).
5224
5225 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
5226
5227 * help-fns.el (describe-variable, describe-function-1):
5228 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
5229
5230 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
5231
5232 2012-10-12 Glenn Morris <rgm@gnu.org>
5233
5234 * mail/rmailsum.el (rmail-header-summary):
5235 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
5236
5237 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
5238
5239 * progmodes/python.el (python-mode-map):
5240 Replace subtitute-key-definition with proper command remapping.
5241 (python-nav--up-list): Fix behavior for blocks on the same level.
5242
5243 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5244
5245 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
5246
5247 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
5248 changes to the format of load-history.
5249
5250 * international/mule-cmds.el (read-char-by-name): Move let-binding of
5251 completion-ignore-case in case that var is buffer-local (bug#12615).
5252
5253 2012-10-11 Kenichi Handa <handa@gnu.org>
5254
5255 * international/eucjp-ms.el: Re-generated.
5256
5257 2012-10-10 Kenichi Handa <handa@gnu.org>
5258
5259 * select.el (xselect--encode-string): If a coding is specified for
5260 selection, and that is compatible with COMPOUND_TEXT, use it.
5261
5262 2012-10-10 Martin Rudalics <rudalics@gmx.at>
5263
5264 * window.el (switch-to-buffer-preserve-window-point): New option.
5265 (switch-to-buffer):
5266 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
5267
5268 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
5269
5270 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
5271 Don't document nil as a useful value (bug#12583).
5272
5273 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
5274
5275 * net/tramp.el (tramp-debug-message):
5276 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
5277 (with-tramp-progress-reporter): Rename from
5278 `tramp-with-progress-reporter'.
5279 (with-tramp-file-property, with-tramp-connection-property):
5280 Move from tramp-cache.el, rename from `with-file-property' and
5281 `with-connection-property', respectively.
5282
5283 * net/tramp-cache.el: Remove `with-file-property' and
5284 `with-connection-property'.
5285
5286 * net/tramp.el:
5287 * net/tramp-gvfs.el:
5288 * net/tramp-sh.el:
5289 * net/tramp-smb.el: Adapt callees.
5290
5291 * net/trampver.el: Update release number.
5292
5293 2012-10-09 Glenn Morris <rgm@gnu.org>
5294
5295 * w32-fns.el (set-message-beep):
5296 * term/w32-win.el (set-message-beep): Update declarations.
5297
5298 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
5299
5300 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
5301 (mode-line-widen, mode-line-input-method-map)
5302 (mode-line-coding-system-map, mode-line-remote)
5303 (mode-line-unbury-buffer, mode-line-bury-buffer)
5304 (mode-line-next-buffer, mode-line-previous-buffer):
5305 Replace save-selected-window+select-window => with-selected-window.
5306
5307 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
5308 * progmodes/cc-vars.el (bq-process): Remove, unused.
5309
5310 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
5311
5312 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
5313
5314 Implemented `backward-up-list'-like navigation.
5315 * progmodes/python.el (python-nav-up-list)
5316 (python-nav-backward-up-list): New functions.
5317 (python-mode-map): Define substitute key for backward-up-list to
5318 python-nav-backward-up-list.
5319
5320 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5321
5322 * progmodes/python.el (python-fill-paragraph): Rename from
5323 python-fill-paragraph-function. Fixed fill-paragraph for
5324 decorators (Bug#12605).
5325
5326 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5327
5328 * progmodes/python.el (python-shell-output-filter): Handle extra
5329 carriage return in OSX (Bug#12409).
5330
5331 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5332
5333 Fix shell handling of unbalanced quotes and parens in output.
5334 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
5335 (python-syntax-propertize-function): Use it.
5336 (python-shell-output-syntax-table): New var.
5337 (inferior-python-mode): Prevent unbalanced parens/quotes from
5338 previous output mess with current input context.
5339
5340 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
5341
5342 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
5343 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
5344
5345 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
5346
5347 * ffap.el (ffap-replace-file-component): Support Tramp file name
5348 syntax, not only ange-ftp's one.
5349
5350 2012-10-08 Glenn Morris <rgm@gnu.org>
5351
5352 * cus-start.el (message-log-max): Set :version.
5353
5354 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
5355
5356 2012-10-08 Martin Rudalics <rudalics@gmx.at>
5357
5358 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
5359 the minibuffer window (Bug#10851).
5360
5361 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5362
5363 Enhancements on forward-sexp movement.
5364 * progmodes/python.el (python-nav-beginning-of-statement)
5365 (python-nav-end-of-statement): Return point-marker.
5366 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
5367 (python-info-current-symbol)
5368 (python-info-statement-starts-block-p): Rename from
5369 python-info-beginning-of-block-p.
5370 (python-info-statement-ends-block-p): Rename from
5371 python-info-end-of-block-p.
5372 (python-info-beginning-of-statement-p)
5373 (python-info-end-of-statement-p)
5374 (python-info-beginning-of-block-p, python-info-end-of-block-p):
5375 New functions.
5376
5377 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
5378
5379 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
5380 frame-selected-windows.
5381
5382 2012-10-08 Daniel Colascione <dancol@dancol.org>
5383
5384 * battery.el (battery-status-function): Check for
5385 w32-battery-status itself, not system-time windows-nt.
5386
5387 * frame.el: Require cl-lib.
5388 (display-format-alist): New variable mapping frame types to
5389 functions that initialize them.
5390 (window-system-for-display): New function: interprets
5391 display-format-alist.
5392 (make-frame-on-display): Remove existing display-selection logic
5393 and just forward to make-frame, which will now DTRT.
5394 (make-frame): Restructure to use window-system-for-display to
5395 figure out how to create a frame on a given display.
5396 (display-mouse-p): Look for frame-type w32, not a particular
5397 system-type.
5398
5399 * loadup.el: Load w32 lisp code when we have the w32 feature.
5400
5401 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
5402 system-type windows-nt.
5403
5404 * server.el (server-create-window-system-frame): Look for window
5405 type.
5406 (server-proces-filter): Only force a window system when windows-nt
5407 _and_ w32. Explain why.
5408
5409 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
5410 of window systems we configure for the mode.
5411
5412 * startup.el (command-line): Mark window system is initialized
5413 after we've done it.
5414
5415 * common-win.el (x-select-text): Look for w32, not windows-nt.
5416
5417 * ns-win.el: Require cl-lib. Add ourselves to
5418 display-format-alist.
5419 (ns-initialize-window-system): Assert we're not initialized twice.
5420
5421 * w32-win.el: Enable lexical binding; require cl-lib; add
5422 ourselves to display-format-alist.
5423 (w32-handle-dropped-file): Convert incoming dropped files from
5424 Windows paths to Cygwin ones before passing them on to the rest of
5425 Emacs.
5426 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
5427 (w32-initialize-window-system): Assert we're not initialized twice.
5428
5429 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
5430 (x-initialize-window-system): Assert we're not initialized twice.
5431
5432 * w32-common-fns.el: New File.
5433 (w32-version, w32-using-nt, w32-get-clipboard-data)
5434 (w32-set-clipboard-data, x-set-selection, x-get-selection)
5435 (w32-charset-info-alist, x-last-selected, text)
5436 (x-get-selection-value, x-selection-value): Move here.
5437
5438 * w32-fns.el: Require w32-common-fns.
5439 (w32-version, w32-using-nt, w32-get-clipboard-data)
5440 (w32-set-clipboard-data, x-set-selection, x-get-selection)
5441 (w32-charset-info-alist, x-last-selected, text)
5442 (x-get-selection-value, x-selection-value): Move to
5443 w32-common-fns.
5444
5445 * w32-vars.el:
5446 (w32-allow-system-shell, w32-system-shells): Define only in
5447 non-cygwin case.
5448
5449 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5450
5451 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
5452 (read-passwd): Remove a few more potential sources of leaks.
5453
5454 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5455
5456 * progmodes/python.el (inferior-python-mode)
5457 (python-shell-make-comint): Fix initialization of local
5458 variables copied from parent buffer.
5459
5460 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
5461
5462 * term/ns-win.el (ns-read-file-name): Update declaration to match
5463 nsfns.m.
5464 (ns-respond-to-change-font): Change fontsize separatly so we are sure
5465 it is set when font is acted upon.
5466
5467 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5468
5469 Enhancements to indentation.
5470 * progmodes/python.el (python-indent-context): Give priority to
5471 inside-string context. Make comments indentation markers.
5472 (python-indent-region): Do not mess with strings, unless it's the
5473 enclosing set of quotes.
5474
5475 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5476
5477 * window.el (internal--before-save-selected-window)
5478 (internal--after-save-selected-window): New functions extracted from
5479 save-selected-window. Make sure we return the `alist' we construct.
5480 (save-selected-window): Use them.
5481
5482 * textmodes/tex-mode.el (tex-recenter-output-buffer):
5483 Use with-selected-window.
5484
5485 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
5486 forms that define macros (bug#12593).
5487
5488 2012-10-07 Kenichi Handa <handa@gnu.org>
5489
5490 * international/mule-conf.el (compound-text-with-extensions):
5491 Add :mime-charset property as x-ctext.
5492
5493 2012-10-07 Stefan Merten <smerten@oekonux.de>
5494
5495 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
5496 (rst-indent-literal-normal, rst-indent-literal-minimized)
5497 (rst-indent-comment): Correct :version tag.
5498 (rst-official-cvs-rev): Correct version string.
5499
5500 2012-10-07 Glenn Morris <rgm@gnu.org>
5501
5502 * mail/rmailmm.el (rmail-mime-process-multipart):
5503 Do not confuse a multipart message with an epilogue
5504 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
5505
5506 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5507
5508 Fix shell output retrieval and comint-prompt-regexp init.
5509 * progmodes/python.el (inferior-python-mode):
5510 (python-shell-make-comint): Fix initialization of
5511 comint-prompt-regexp from copied file local variables.
5512 (python-shell-fetched-lines): Remove var.
5513 (python-shell-output-filter-in-progress): Rename from
5514 python-shell-fetch-lines-in-progress.
5515 (python-shell-output-filter-buffer): Rename from
5516 python-shell-fetch-lines-string.
5517 (python-shell-fetch-lines-filter): Delete function.
5518 (python-shell-output-filter): New function.
5519 (python-shell-send-string-no-output): Use them.
5520
5521 2012-10-07 Glenn Morris <rgm@gnu.org>
5522
5523 * hi-lock.el (hi-lock-process-phrase):
5524 Try to make it less fragile. (Bug#7161)
5525
5526 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
5527
5528 2012-10-06 Glenn Morris <rgm@gnu.org>
5529
5530 * ehelp.el (electric-help-mode): Use help-mode rather than
5531 non-existent mode `help'.
5532 (electric-help-map): Use button-buffer-map. (Bug#10917)
5533
5534 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
5535 (reftex-create-bibtex-footer): Fix custom types.
5536
5537 * progmodes/sh-script.el (sh-indent-after-continuation):
5538 Add explicit :group.
5539
5540 * textmodes/rst.el (rst-preferred-decorations)
5541 (rst-shift-basic-offset): Clarify obsolescence versions.
5542
5543 * profiler.el (profiler): Add missing group :version tag.
5544 * avoid.el (mouse-avoidance-banish-position):
5545 * proced.el (proced-renice-command):
5546 * calc/calc.el (calc-ensure-consistent-units):
5547 * calendar/icalendar.el (icalendar-import-format-uid):
5548 * net/tramp.el (tramp-save-ad-hoc-proxies):
5549 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5550 * progmodes/flymake.el (flymake-error-bitmap)
5551 (flymake-warning-bitmap, flymake-fringe-indicator-position):
5552 * progmodes/sh-script.el (sh-indent-after-continuation):
5553 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
5554 (verilog-before-save-font-hook, verilog-after-save-font-hook):
5555 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
5556 (vhdl-array-index-record-field-in-sensitivity-list)
5557 (vhdl-indent-comment-like-next-code-line):
5558 * textmodes/reftex-vars.el (reftex-ref-style-alist)
5559 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
5560 (reftex-cite-key-separator, reftex-create-bibtex-header)
5561 (reftex-create-bibtex-footer):
5562 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
5563 (rst-indent-literal-normal, rst-indent-literal-minimized)
5564 (rst-indent-comment): Add missing custom :version tags.
5565
5566 * calendar/timeclock.el (timeclock-modeline-display):
5567 Add missing obsolete alias for renamed user option.
5568
5569 * strokes.el (strokes-modeline-string):
5570 * emulation/crisp.el (crisp-mode-modeline-string):
5571 * eshell/esh-mode.el (eshell-status-in-modeline):
5572 Aliases to defcustoms must come before the defcustom.
5573
5574 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
5575 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
5576 (cal-tex-cursor-week-monday): Doc fixes.
5577 (cal-tex-cursor-week2-summary): Doc fix.
5578 Rename from cal-tex-cursor-week-at-a-glance.
5579
5580 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
5581 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
5582
5583 * calendar/calendar.el (calendar-mode-map):
5584 Add cal-tex-cursor-week2-summary.
5585
5586 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
5587
5588 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
5589
5590 * subr.el (read-passwd-map): New var.
5591 (read-passwd): Use `read-string' again.
5592 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
5593
5594 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
5595
5596 * register.el (append-to-register, prepend-to-register):
5597 Deactivate mark, as does `copy-to-register' (bug#12389).
5598
5599 2012-10-06 Chong Yidong <cyd@gnu.org>
5600
5601 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
5602
5603 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
5604
5605 * international/characters.el: Fix simple mistake ((car chars) ->
5606 elt), delete duplicated code.
5607
5608 2012-10-06 Glenn Morris <rgm@gnu.org>
5609
5610 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
5611
5612 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
5613
5614 * color.el (color-hsl-to-rgb): Fix incorrect results for
5615 small and large hue values. (Bug#12559)
5616
5617 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
5618
5619 Enhancements to docstring formatting when filling paragraphs.
5620 * progmodes/python.el (python-fill-docstring-style): Rename from
5621 python-fill-string-style. Added new style.
5622 (python-fill-string): Use new style. Better checks for
5623 docstrings.
5624
5625 2012-10-05 Glenn Morris <rgm@gnu.org>
5626
5627 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
5628
5629 * color.el (color-name-to-rgb, color-rgb-to-hex)
5630 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
5631 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
5632 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5633 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
5634
5635 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
5636
5637 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
5638
5639 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
5640 to get the correct size across symlinks.
5641
5642 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
5643
5644 2012-10-04 Juri Linkov <juri@jurta.org>
5645
5646 * replace.el (query-replace-interactive): Declare obsolete.
5647 (query-replace-read-from): Add the last incremental search string
5648 to the list of default values accessible via M-n.
5649 (map-query-replace-regexp): Use `read-regexp'.
5650 (query-replace, query-replace-regexp, query-replace-regexp-eval)
5651 (map-query-replace-regexp, replace-string, replace-regexp):
5652 Fix docstrings to replace mentions of `query-replace-interactive'
5653 with alternatives. (Bug#12526)
5654
5655 2012-10-04 Juri Linkov <juri@jurta.org>
5656
5657 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
5658 (dired-pop-to-buffer): Declare obsolete.
5659 (dired-mark-pop-up): Doc fix.
5660
5661 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
5662
5663 Allow user to set docstring style for fill-paragraph.
5664 * progmodes/python.el
5665 (python-fill-comment-function, python-fill-string-function)
5666 (python-fill-decorator-function, python-fill-paren-function):
5667 Remove :safe for defcustoms.
5668 (python-fill-string-style): New defcustom
5669 (python-fill-paragraph-function): Enhance context detection.
5670 (python-fill-string): Honor python-fill-string-style settings.
5671
5672 2012-10-04 Martin Rudalics <rudalics@gmx.at>
5673
5674 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
5675 after setting its buffer (Bug#10805).
5676
5677 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
5678
5679 Fix cornercase for string syntax.
5680 * progmodes/python.el (python-syntax-propertize-function):
5681 Simplify and enhance the regexp for unescaped quotes. Now it also
5682 matches quotes in weird situations like the single quote in
5683 "something\"'".
5684 (python-syntax-stringify): Simplify num-quotes detecting code.
5685
5686 2012-10-03 Glenn Morris <rgm@gnu.org>
5687
5688 * help-macro.el (three-step-help):
5689 Revert 2012-09-29 change. (Bug#12567)
5690
5691 2012-10-03 Martin Rudalics <rudalics@gmx.at>
5692
5693 * menu-bar.el (kill-this-buffer): Don't do anything when
5694 `menu-frame' is not alive or visible (Bug#8184).
5695
5696 * emacs-lisp/debug.el (debug): When quitting the debugger window
5697 restore current buffer (Bug#12502).
5698
5699 2012-10-02 Chong Yidong <cyd@gnu.org>
5700
5701 * progmodes/hideif.el (hif-lookup, hif-defined):
5702 Handle semantic-c-takeover-hideif.
5703
5704 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
5705
5706 Change sampling interval units from ms to ns.
5707 * profiler.el (profiler-sampling-interval): Change units
5708 from ms to ns, multiplying the default by 1000000 so that
5709 it remains 1 ms.
5710 (profiler-report-cpu-line-format): Give enough room for
5711 the maximum counters on 64-bit hosts.
5712 (profiler-report-render-calltree-1): Call them "CPU samples",
5713 not "Time (ms)", since they are not milliseconds now (and
5714 never really were).
5715
5716 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
5717
5718 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
5719 Fix querying BBDB for entries without a last name (Bug#11580).
5720
5721 2012-10-02 Chong Yidong <cyd@gnu.org>
5722
5723 * emacs-lisp/eieio.el: Restore Version header.
5724
5725 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
5726
5727 * vc/diff-mode.el (diff--auto-refine-data): New var.
5728 (diff-hunk): Use it to delay refinement.
5729 (diff-mode): Remove overlays when we turn off font-lock.
5730
5731 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
5732 (table-initialize-table-fixed-width-mode)
5733 (table-set-table-fixed-width-mode): Remove functions.
5734 (table-command-list): Move initialization into declaration.
5735 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
5736 (table-with-cache-buffer): Use `declare'.
5737 (table-span-cell): Simplify via CSE.
5738 (table-fixed-width-mode): Use define-minor-mode.
5739 (table-call-interactively, table-funcall, table-apply): Remove.
5740 (table-function): New function, to replace them.
5741
5742 * bookmark.el (bookmark-search-pattern): Remove var.
5743 (bookmark-read-search-input): Remove function.
5744 (bookmark-bmenu-search): Reimplement using a minibuffer.
5745
5746 * faces.el (modeline): Remove obsolete face name.
5747
5748 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
5749 and give a non-nil default value.
5750 (add-change-log-entry): Simplify accordingly.
5751
5752 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
5753
5754 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
5755 (vc-git-log-edit-toggle-amend): New function.
5756 (vc-git-log-edit-toggle-signoff): New function.
5757 (vc-git-log-edit-mode): New major mode.
5758 (vc-git-log-edit-mode-map): Keymap for it.
5759 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
5760
5761 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
5762 header names.
5763 (log-edit-toggle-header): New function.
5764 (log-edit-extract-headers): Accept function values in HEADERS alist.
5765
5766 2012-10-01 David Engster <deng@randomsample.de>
5767
5768 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
5769 from symbol property and change message to be more consistent with
5770 Emacs proper.
5771 (eieio-describe-generic): Add filename for each implementation.
5772 Fix indices for generic and normal methods.
5773 (eieio-method-def, eieio-class-def): New buttons.
5774 (eieio-help-find-method-definition)
5775 (eieio-help-find-class-definition): New functions.
5776 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
5777 class, constructor and method definitions.
5778
5779 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
5780 information in symbol property.
5781 (scoped-class): Remove.
5782 (eieio-slot-name-index, call-next-method): Check if it is bound.
5783
5784 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
5785
5786 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
5787 (eieio-custom-mode): New major mode.
5788 (eieio-customize-object): Use it.
5789
5790 2012-10-01 Eric Ludlam <zappo@gnu.org>
5791
5792 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
5793 specifying the expected class, and whether subclassing is allowed.
5794 (eieio-persistent-convert-list-to-object):
5795 (eieio-persistent-validate/fix-slot-value)
5796 (eieio-persistent-slot-type-is-class-p): New functions.
5797 (eieio-named::slot-missing): Doc fix.
5798
5799 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
5800 Stop using unused publd variable.
5801
5802 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
5803 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
5804 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
5805 (eieio-speedbar-handle-click): Do not specify a class for the
5806 method. Fixes method invocation order problems with EDE.
5807
5808 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
5809
5810 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
5811 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
5812
5813 2012-10-01 Karl Fogel <kfogel@red-bean.com>
5814
5815 * bookmark.el (bookmark-version-control): Give tags in the
5816 :type choices (Bug#12309), and improve doc string.
5817 (bookmark-write-file): Bind `print-circle' to `t' to allow
5818 circular custom bookmark types. (Bug#12503)
5819
5820 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
5821
5822 Revert the FOLLOW-SYMLINKS change for file-attributes.
5823 * files.el (remote-file-name-inhibit-cache, after-find-file):
5824 * time.el (display-time-file-nonempty-p): Undo last change.
5825
5826 * profiler.el (profiler-sampling-interval): Change default back to 1.
5827 See Stefan Monnier in
5828 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
5829
5830 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
5831
5832 Shell output catching a la gud-gdb.
5833 * progmodes/python.el (python-shell-fetch-lines-in-progress)
5834 (python-shell-fetch-lines-string, python-shell-fetched-lines):
5835 New Vars.
5836 (python-shell-fetch-lines-filter): New function.
5837 (python-shell-send-string-no-output): Use them.
5838
5839 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
5840
5841 * profiler.el (profiler-sampling-interval): Rename from
5842 profiler-sample-interval.
5843 (profiler-sampling-interval): Default to 10.
5844 (profiler-find-profile): New command (was profiler-find-log).
5845 (profiler-find-profile-other-window): New command.
5846 (profiler-find-profile-other-frame): New command.
5847 (profiler-profile): Introduce API-level data structure.
5848
5849 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
5850
5851 file-attributes has a new optional arg FOLLOW-SYMLINKS.
5852 * files.el (remote-file-name-inhibit-cache):
5853 * time.el (display-time-file-nonempty-p): Use it.
5854 * files.el (after-find-file): Don't chase links before calling
5855 file-exists-p, as file-exists-p already does the right thing.
5856
5857 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
5858
5859 Merge from standalone RefTeX repository.
5860
5861 The following ChangeLog entries are shortened versions of the
5862 original ones with file paths adapted. A not so strongly edited
5863 version of the original ChangeLog can be found in the commit log.
5864
5865 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
5866 (reftex-arg-cite): Use `reftex-cite-key-separator'.
5867 Correctly handle new value type returned by `reftex-citation'.
5868
5869 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
5870 that entries with whitespace at various places are found.
5871 Doc fix. Include entries that are cross-referenced from cited entries.
5872 Include @String definitions in the resulting bib file. Add header
5873 and footer defined in `reftex-create-bibtex-header' and
5874 `reftex-create-bibtex-footer'.
5875 (reftex-do-citation): Make it possible again to insert
5876 non-existent entries. Save match data when asking for optional
5877 arguments. Return all keys, not just the first one.
5878 (reftex-all-used-citation-keys): Fix regexp to correctly extract
5879 all citations in the same line.
5880 (reftex-parse-bibtex-entry): Accept additional optional argument
5881 `raw' and keep quotes or braces if it is non-nil. Match fields
5882 containing hyphens besides word constituents.
5883 (reftex-get-string-refs): New function.
5884 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
5885 and ask if it should be reread in case it did.
5886 (reftex-pop-to-bibtex-entry)
5887 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
5888 entries with spaces or tabs in front of arguments.
5889 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
5890 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
5891 Match entries containing numbers and symbol constituents.
5892 (reftex-do-citation, reftex-figure-out-cite-format):
5893 Use `reftex-cite-key-separator'.
5894
5895 * textmodes/reftex-dcr.el: Move provide statement to end of file.
5896 (reftex-mouse-view-crossref): Explain why point is set.
5897
5898 * textmodes/reftex-global.el: Whitespace changes.
5899
5900 * textmodes/reftex-index.el: Move provide statement to end of
5901 file.
5902 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
5903 (reftex-index-visit-phrases-buffer): Set marker when visiting
5904 buffer. This allows for returning from the phrases file to the
5905 file one was just editing instead of the file where the last
5906 phrases was added from.
5907 (reftex-index-phrases-syntax-table): New variable. Give ?\"
5908 punctuation syntax as it usually is not used as string quote in
5909 TeX-related modes and may occur unmatched. The change also
5910 prevents fontification of quoted content.
5911 (reftex-index-phrases-mode): Use it.
5912
5913 * textmodes/reftex-parse.el (reftex-parse-from-file):
5914 Move backward one char if a `\' was matched after a section macro.
5915 (reftex-parse-from-file): Use beginning of match instead of end as
5916 bound.
5917
5918 * textmodes/reftex-ref.el: Adapt creation of
5919 `reftex-<package>-<macro>' functions to new structure of
5920 `reftex-ref-style-alist'.
5921 (reftex-reference): Use `reftex-ref-style-list' function.
5922 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
5923 reference macro if `reftex-ref-macro-prompt' is non-nil.
5924 (reftex-reference): Pass refstyle to `reftex-format-special'.
5925 Determine reference macro by looking at
5926 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
5927 Use only one special format function.
5928 (reftex-varioref-vref, reftex-fancyref-fref)
5929 (reftex-fancyref-Fref): Remove definitions. The functions are now
5930 generated from `reftex-ref-style-alist'.
5931 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
5932 Remove.
5933 (reftex-format-special): New function.
5934
5935 * textmodes/reftex-sel.el
5936 (reftex-select-cycle-ref-style-internal): Adapt to new structure
5937 of `reftex-ref-style-alist'. Remove code for testing macro type.
5938 (reftex-select-toggle-varioref)
5939 (reftex-select-toggle-fancyref): Remove.
5940 (reftex-select-cycle-ref-style-internal)
5941 (reftex-select-cycle-ref-style-forward)
5942 (reftex-select-cycle-ref-style-backward): New functions.
5943 (reftex-select-label-map): Use `v' and `V' for general cycling
5944 through reference styles. Add `p' for switching between number
5945 and page reference types.
5946
5947 * textmodes/reftex-toc.el (reftex-re-enlarge):
5948 Call `enlarge-window' only if there is something to do because in Emacs
5949 the horizontal version throws an error even if the parameter is 0.
5950
5951 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
5952 (reftex-plug-into-AUCTeX): Doc fix.
5953 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
5954 string. Adapt to new name.
5955 (reftex-ref-style-alist): Change structure so that it is not
5956 possible to use multiple different package names within a style.
5957 Remove the symbols for symbols for macro type distinction.
5958 Add characters for macro selection.
5959 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
5960 (reftex-create-bibtex-footer): New variables.
5961 (reftex-format-ref-function): Mention third argument of special
5962 format function.
5963 (reftex-ref-style-alist, reftex-ref-style-default-list):
5964 New variables.
5965 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
5966 to new implementation. Mark as obsolete. Add compatibility code
5967 for honoring the variable values in case they are set.
5968 (reftex-cite-format-builtin, reftex-bibliography-commands):
5969 Add support for ConTeXt.
5970 (reftex-format-ref-function, reftex-format-cite-function):
5971 Fix custom type.
5972 (reftex-cite-key-separator): New variable.
5973
5974 * textmodes/reftex.el (reftex-syntax-table-for-bib)
5975 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
5976 `reftex-syntax-table' because parens have to retain their paren
5977 syntax in order for parsing of BibTeX entries like @book(...) to
5978 work.
5979 (reftex-in-comment): Do not error out if `comment-start-skip' is
5980 not set. Deal correctly with escaped comment characters.
5981 (reftex-tie-multifile-symbols): Add doc string.
5982 Initialize `reftex-ref-style-list'.
5983 (reftex-untie-multifile-symbols): Add doc string.
5984 (reftex-add-index-macros): Doc fix.
5985 (reftex-ref-style-activate, reftex-ref-style-toggle)
5986 (reftex-ref-style-list): New functions.
5987 (reftex-mode-menu): Use them. Adapt to new structure of
5988 `reftex-ref-style-alist'.
5989 (reftex-select-with-char): Kill the RefTeX Select buffer when
5990 done.
5991 (reftex-remove-if): New function.
5992 (reftex-erase-all-selection-and-index-buffers)
5993 (reftex-mode-menu): Reference styles are now computed from
5994 `reftex-ref-style-alist'. Fix typo.
5995 (reftex-report-bug): New function.
5996 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
5997 algorithms with O(n log n). Introduce optional argument SORT (not
5998 yet used).
5999
6000 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
6001
6002 Enhancements for triple-quote string syntax.
6003 * progmodes/python.el (python-syntax-propertize-function):
6004 Match both quote cases in one regexp.
6005 (python-syntax-stringify): Handle matches properly.
6006
6007 2012-09-30 Juri Linkov <juri@jurta.org>
6008
6009 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
6010 to nil around the call to `insert' to prevent
6011 directory time modification by lock_file. (Bug#2295)
6012 * tar-mode.el (tar-summarize-buffer): Idem.
6013
6014 2012-09-30 Juri Linkov <juri@jurta.org>
6015
6016 * facemenu.el (list-colors-sort): Add option "Luminance".
6017 (list-colors-sort-key): Implement it.
6018
6019 * vc/diff-mode.el (diff-refine-removed):
6020 * vc/ediff-init.el (ediff-fine-diff-A):
6021 * vc/smerge-mode.el (smerge-refined-removed):
6022 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
6023
6024 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
6025
6026 * term/ns-win.el (x-file-dialog): New function.
6027
6028 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
6029
6030 * ido.el (ido-max-directory-size): Default to nil; the current
6031 default is small for POSIX systems, and impractical on Windows 7
6032 now that lstat returns directory sizes for NTFS.
6033
6034 2012-09-30 Martin Rudalics <rudalics@gmx.at>
6035
6036 In buffer display functions handle window-height/window-width
6037 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
6038 * window.el (window--display-buffer): New argument ALIST.
6039 Obey window-height and window-width alist entries.
6040 (window--try-to-split-window): New argument ALIST.
6041 Bind window-combination-limit to t when the window's size shall be
6042 changed and window-combination-limit equals `window-size'.
6043 (display-buffer-in-atom-window)
6044 (display-buffer-in-major-side-window)
6045 (display-buffer-in-side-window, display-buffer-same-window)
6046 (display-buffer-reuse-window, display-buffer-pop-up-frame)
6047 (display-buffer-pop-up-window, display-buffer-below-selected)
6048 (display-buffer-at-bottom, display-buffer-in-previous-window)
6049 (display-buffer-use-some-window): Adjust all callers of
6050 window--display-buffer and window--try-to-split-window.
6051 (fit-frame-to-buffer): New option.
6052 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
6053 is non-nil.
6054 (display-buffer-in-major-side-window): Evaluate window-height /
6055 window-width alist entries.
6056
6057 * help.el (temp-buffer-resize-frames)
6058 (temp-buffer-resize-regexps): Remove options.
6059 (temp-buffer-resize-mode): Adjust doc-string.
6060 (resize-temp-buffer-window): Don't consult
6061 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
6062 temp-buffer-resize-frames.
6063
6064 * dired.el (dired-mark-pop-up):
6065 Call display-buffer-below-selected with a fit-window-to-buffer alist
6066 entry.
6067
6068 2012-09-30 Chong Yidong <cyd@gnu.org>
6069
6070 * server.el (server-host): Document the security implications.
6071 (server-auth-key): Doc fix.
6072
6073 * startup.el (initial-buffer-choice): Doc fix.
6074
6075 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
6076
6077 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
6078 restriction change.
6079
6080 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
6081
6082 * help-fns.el (help-fns--obsolete): Fix last change.
6083
6084 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6085
6086 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
6087 (minor-mode-map-alist): Remove redundant code.
6088
6089 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
6090 visited in a buffer.
6091 (cvs-insert-visited-file): New function.
6092 (find-file-hook): Use it.
6093
6094 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
6095
6096 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
6097 chose face.
6098 (log-edit-empty-buffer-p): Don't require a space after a header.
6099
6100 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
6101
6102 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
6103
6104 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
6105 a proper minor-mode.
6106
6107 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
6108
6109 2012-09-29 Glenn Morris <rgm@gnu.org>
6110
6111 * winner.el (winner-mode): Remove variable (let define-minor-mode
6112 handle it).
6113 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
6114 Doc fixes.
6115 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
6116 (winner-mode): Use define-minor-mode.
6117
6118 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
6119 the full definition in loaddefs, rather than duplicating it.
6120
6121 * help-macro.el (three-step-help): No need to autoload defcustom.
6122
6123 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
6124 (inferior-lisp-program, inferior-lisp-load-command)
6125 (inferior-lisp-prompt, inferior-lisp-mode-hook):
6126 No need to autoload defcustoms.
6127
6128 * hippie-exp.el (hippie-expand-try-functions-list)
6129 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
6130 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
6131 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
6132 (hippie-expand-only-buffers): No need to autoload defcustoms.
6133 * progmodes/vhdl-mode.el (vhdl-line-expand):
6134 Explicitly load hippie-exp, so it does not get autoloaded
6135 while hippie-expand-try-functions-list is let-bound.
6136
6137 2012-09-28 Glenn Morris <rgm@gnu.org>
6138
6139 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
6140
6141 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
6142 Only "cl.el" counts as cl these days.
6143
6144 2012-09-28 Juri Linkov <juri@jurta.org>
6145
6146 Display archive errors in the echo area instead of inserting
6147 to the file buffer.
6148
6149 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
6150 to STDERR-TEST that can be a regexp matching a successful output.
6151 Create a temporary file and redirect stderr to it. Search for
6152 STDERR-TEST in the stderr output and display it in the echo area
6153 if no match is found.
6154 (archive-extract-by-file): New function like
6155 `archive-extract-by-stdout' but extracting archives to files
6156 and looking for successful matches in stdout. Function body is
6157 mostly copied from `archive-rar-extract'.
6158 (archive-rar-extract): Use `archive-extract-by-file'.
6159 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
6160
6161 2012-09-28 Leo Liu <sdl.web@gmail.com>
6162
6163 * pcomplete.el (pcomplete-show-completions):
6164 Use minibuffer-message to make pcomplete usable in minibuffer.
6165
6166 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
6167
6168 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
6169
6170 * type-break.el: Use lexical-binding.
6171 (type-break-mode): Use define-minor-mode.
6172
6173 * emacs-lisp/pcase.el (pcase--mark-used): New.
6174 (pcase--u1): Use it (bug#12512).
6175
6176 * custom.el (load-theme): Set buffer-file-name so the load is recorded
6177 in load-history with the right file name.
6178
6179 2012-09-28 Tassilo Horn <tsdh@gnu.org>
6180
6181 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
6182 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
6183 (doc-view-get-bounding-box): Make bounding box slicing work for
6184 ODF and DVI documents.
6185
6186 2012-09-28 Glenn Morris <rgm@gnu.org>
6187
6188 * type-break.el (type-break-mode, type-break-interval)
6189 (type-break-good-rest-interval, type-break-keystroke-threshold):
6190 No need to autoload.
6191 (type-break-good-rest-interval, type-break-keystroke-threshold):
6192 Add :set-after.
6193
6194 2012-09-28 Chong Yidong <cyd@gnu.org>
6195
6196 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
6197 Add :version tag.
6198
6199 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6200
6201 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
6202
6203 2012-09-27 Glenn Morris <rgm@gnu.org>
6204
6205 * faces.el (x-display-name): Declare (for without-x builds).
6206
6207 * linum.el (linum-format): Don't autoload it. Improve :type.
6208
6209 * progmodes/tcl.el: Don't require outline when compiling.
6210 (outline-regexp, outline-level): Declare.
6211 * textmodes/sgml-mode.el: Don't require outline when compiling.
6212 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
6213
6214 * term.el (term-ansi-reset):
6215 Try setting term-ansi-face-already-done to nil. (Bug#11785)
6216
6217 * vc/vc.el (vc-next-action): Only gripe about committing read-only
6218 files for RCS and SCCS. (Bug#9781)
6219
6220 2012-09-27 Chong Yidong <cyd@gnu.org>
6221
6222 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
6223 change; value should be t.
6224
6225 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6226
6227 * image-mode.el: Use lexical-binding.
6228 (image-mode-winprops): Use t to stand for the window of
6229 a buffer that's not displayed.
6230 * doc-view.el (doc-view-new-window-function): Handle the new
6231 t in winprops.
6232 (doc-view-enlarge): Make it a real nop if the size is not changed.
6233 (doc-view-display): Handle the case where the buffer is not (yet?)
6234 displayed in any window.
6235 (doc-view-saved-settings): New var.
6236 (doc-view-mode): Use it.
6237 (doc-view-fallback-mode): Set it.
6238
6239 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
6240 Set lexical-binding.
6241 (minibuffer-eldef-shorten-default): New var.
6242 (minibuffer-default-in-prompt-regexps): Use it for new default.
6243 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
6244
6245 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
6246
6247 * international/uni-bidi.el:
6248 * international/uni-category.el:
6249 * international/uni-name.el:
6250 * international/uni-numeric.el: Regenerate.
6251
6252 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
6253 Stefan Monnier <monnier@iro.umontreal.ca>
6254
6255 * profiler.el: New file.
6256
6257 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
6258
6259 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
6260 (testcover-reinstrument): Simplify with CSE.
6261
6262 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
6263
6264 * window.el (temp-buffer-window-setup): Fix typo in docstring.
6265
6266 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
6267
6268 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
6269 (verilog-auto-input, verilog-auto-insert-lisp)
6270 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
6271 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
6272 (verilog-auto-unused, verilog-auto-wire)
6273 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
6274 newline. Reported by Andrew Jones.
6275 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
6276 Reported by Brad Dobbie.
6277 (verilog-batch-delete-trailing-whitespace):
6278 Create verilog-batch-delete-trailing-whitespace.
6279 Reported by Brad Dobbie.
6280 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
6281 parameters from another module. Reported by Dan Katz.
6282 (verilog-auto, verilog-auto-assign-modport)
6283 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
6284 AUTOINOUTMODPORT for UVM interface module shell generation.
6285 Reported by Brad Dobbie.
6286 (verilog-auto-inst-interfaced-ports): Make default nil, as more
6287 standard behavior.
6288 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
6289 Reported by Matt Martin.
6290
6291 2012-09-25 Martin Rudalics <rudalics@gmx.at>
6292
6293 * window.el (window--resize-child-windows): When resizing child
6294 windows proportionally, process them in reverse order to
6295 preserve the "when splitting a window the new one gets the odd
6296 line" behavior.
6297 (window--resize-root-window-vertically): When resizing the
6298 minibuffer window try to affect only windows at the bottom of the
6299 frame. (Bug#12419)
6300
6301 2012-09-25 Chong Yidong <cyd@gnu.org>
6302
6303 * subr.el (declare): Doc fix.
6304
6305 * help-fns.el (help-fns--obsolete): Handle macros properly.
6306
6307 2012-09-25 Chong Yidong <cyd@gnu.org>
6308
6309 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
6310 this function obsolete.
6311
6312 * calendar/cal-x.el (calendar-two-frame-setup)
6313 (calendar-only-one-frame-setup, calendar-one-frame-setup):
6314 * calendar/calendar.el (american-calendar, european-calendar)
6315 (calendar-for-loop):
6316 * comint.el (comint-dynamic-simple-complete)
6317 (comint-dynamic-complete-as-filename, comint-unquote-filename):
6318 * desktop.el (desktop-load-default):
6319 * dired-x.el (dired-omit-here-always)
6320 (dired-hack-local-variables, dired-default-directory):
6321 * emacs-lisp/derived.el (derived-mode-class):
6322 * emacs-lisp/timer.el (timer-set-time-with-usecs):
6323 * emacs-lock.el (toggle-emacs-lock):
6324 * epa.el (epa-display-verify-result):
6325 * epg.el (epg-sign-keys, epg-start-sign-keys)
6326 (epg-passphrase-callback-function):
6327 * eshell/esh-util.el (eshell-for):
6328 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
6329 (eshell-add-to-window-buffer-names):
6330 * files.el (locate-file-completion):
6331 * imenu.el (imenu-example--create-c-index)
6332 (imenu-example--create-lisp-index)
6333 (imenu-example--lisp-extract-index-name)
6334 (imenu-example--name-and-position):
6335 * international/mule-cmds.el (princ-list):
6336 * international/mule-diag.el (decode-codepage-char):
6337 * international/mule-util.el (detect-coding-with-priority):
6338 * iswitchb.el (iswitchb-read-buffer):
6339 * mail/mailalias.el (mail-complete):
6340 * mail/sendmail.el (mail-sent-via):
6341 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
6342 (mouse-major-mode-menu):
6343 * password-cache.el (password-read-and-add):
6344 * pcomplete.el (pcomplete-parse-comint-arguments):
6345 * progmodes/sh-script.el (sh-maybe-here-document):
6346 * replace.el (query-replace-regexp-eval):
6347 * savehist.el (savehist-load):
6348 * simple.el (choose-completion-delete-max-match):
6349 * term.el (term-dynamic-simple-complete):
6350 * vc/ediff-init.el (ediff-check-version):
6351 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
6352 * vc/vc.el (vc-diff-switches-list):
6353 * view.el (view-return-to-alist-update): Likewise.
6354
6355 * subr.el (eval-next-after-load, makehash, insert-string)
6356 (assoc-ignore-representation, assoc-ignore-case): Use declare to
6357 mark obsolete.
6358 (mode-line-inverse-video): Variable deleted.
6359
6360 * international/mule-util.el (string-to-sequence): Remove.
6361
6362 * calendar/calendar.el (calendar-version):
6363 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
6364 (icalendar-convert-diary-to-ical):
6365 * cus-edit.el (custom-mode):
6366 * ansi-color.el (ansi-color-unfontify-region):
6367 * international/latin1-disp.el (latin1-char-displayable-p):
6368 * progmodes/cwarn.el (turn-on-cwarn-mode):
6369 * progmodes/which-func.el (which-func-update-1):
6370 Use define-obsolete-function-alias.
6371
6372 * net/newst-backend.el (newsticker-cache-filename):
6373 * net/newst-treeview.el (newsticker-groups-filename):
6374 Fix incorrect obsolescence declaration.
6375
6376 * allout.el (allout-passphrase-hint-string): Likewise.
6377 (allout-init): Use a declare form to mark obsolete.
6378
6379 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
6380 this applies to functions.
6381
6382 * iswitchb.el (iswitchb-read-buffer): Move code of
6383 iswitchb-define-mode-map here, and delete that obsolete function.
6384
6385 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
6386 font-lock-reference-face.
6387
6388 2012-09-25 Glenn Morris <rgm@gnu.org>
6389
6390 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
6391 Doc fixes.
6392
6393 * eshell/em-term.el (eshell-term-name):
6394 Default to term-term-name. (Bug#12485)
6395
6396 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
6397
6398 * progmodes/python.el (python-shell-send-buffer): Better handling
6399 of "if __name__ == '__main__':" conditionals when sending the buffer.
6400
6401 2012-09-24 Glenn Morris <rgm@gnu.org>
6402
6403 * eshell/esh-cmd.el (eshell-find-alias-function):
6404 Tighten up file-name regexp. (Bug#12499)
6405
6406 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
6407
6408 Enhancements for triple-quote string syntax.
6409 * progmodes/python.el (python-quote-syntax): Remove.
6410 (python-syntax-propertize-function): New value.
6411 (python-syntax-count-quotes, python-syntax-stringify):
6412 New functions.
6413
6414 2012-09-24 Chong Yidong <cyd@gnu.org>
6415
6416 * mail/supercite.el (sc-version): Remove obsolete function.
6417 (sc-describe): Don't mark as obsolete, since it is bound.
6418 (sc-submit-bug-report): Remove.
6419
6420 * vc/log-edit.el (cvs-changelog-full-paragraphs)
6421 (cvs-commit-buffer-require-final-newline): Remove.
6422 (log-edit-require-final-newline)
6423 (log-edit-changelog-full-paragraphs): Default to t.
6424
6425 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
6426 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
6427 * vc/vc.el (vc-checkout-carefully): Likewise.
6428
6429 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
6430 (emerge-version): Remove.
6431
6432 * progmodes/compile.el (compile-internal): Remove.
6433 (compilation-parse-errors-function): Fix typo.
6434
6435 * international/mule.el (set-char-table-default): Remove.
6436 (set-coding-priority, make-coding-system, generic-char-p)
6437 (charset-list, charset-bytes, charset-id): Use declare to mark
6438 functions as obsolete.
6439
6440 * vc/pcvs-defs.el (cvs-buffer-name-alist)
6441 (cvs-invert-ignore-marks): Remove references to obsolete vars.
6442 * vc/vc-hooks.el (vc-default-registered): Don't use
6443 vc-master-templates.
6444
6445 * font-lock.el (font-lock-reference-face):
6446 Use define-obsolete-variable-alias.
6447
6448 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
6449 * calendar/calendar.el (calendar-font-lock-keywords):
6450 * calendar/diary-lib.el (diary-font-lock-keywords)
6451 (diary-fancy-font-lock-keywords):
6452 * textmodes/reftex-sel.el (reftex-insert-docstruct):
6453 * textmodes/reftex-index.el (reftex-insert-index):
6454 * textmodes/reftex-cite.el (reftex-format-bib-entry):
6455 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
6456 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
6457 * progmodes/prolog.el (prolog-font-lock-keywords):
6458 * progmodes/idlwave.el (idlwave-idl-keywords):
6459 * progmodes/ada-mode.el (ada-font-lock-keywords):
6460 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
6461
6462 2012-09-24 Glenn Morris <rgm@gnu.org>
6463
6464 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
6465
6466 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
6467
6468 * progmodes/python.el (python-indent-line): More consistent cursor
6469 movement behavior.
6470
6471 2012-09-23 Stefan Merten <smerten@oekonux.de>
6472
6473 * textmodes/rst.el: Fix compiler warning.
6474
6475 2012-09-23 Roland Winkler <winkler@gnu.org>
6476
6477 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
6478 Transcribe also LaTeX hyphenation.
6479 (bibtex-reformat): Bug fix. Do not quote twice the elements of
6480 bibtex-reformat-previous-options.
6481
6482 2012-09-23 Roland Winkler <winkler@gnu.org>
6483
6484 * proced.el (proced-renice-command): New variable.
6485 (proced-marked-processes): New function.
6486 (proced-with-processes-buffer): New macro.
6487 (proced-send-signal): Use them.
6488 (proced-renice): New command bound to r.
6489
6490 2012-09-23 Roland Winkler <winkler@gnu.org>
6491
6492 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
6493 ibuffer-saved-filter-groups has one element, shortcut the call of
6494 completing-read. (Bug#12331)
6495
6496 2012-09-23 Chong Yidong <cyd@gnu.org>
6497
6498 * bindings.el (mode-line-toggle-read-only):
6499 * bs.el (bs-toggle-readonly):
6500 * buff-menu.el (Buffer-menu-toggle-read-only):
6501 * dired.el (dired-toggle-read-only):
6502 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
6503
6504 2012-09-23 Chong Yidong <cyd@gnu.org>
6505
6506 * image.el (image-type-available-p): Adapt to init-image-library
6507 argument changes.
6508
6509 2012-09-22 Juri Linkov <juri@jurta.org>
6510
6511 * dired.el (dired-mode-map): Add [remap read-only-mode] for
6512 `dired-toggle-read-only'. (Bug#12462)
6513
6514 2012-09-22 Martin Rudalics <rudalics@gmx.at>
6515
6516 * subr.el (temp-output-buffer-show): New function.
6517 (with-output-to-temp-buffer): Call temp-output-buffer-show
6518 instead of internal-temp-output-buffer-show.
6519
6520 2012-09-22 Chong Yidong <cyd@gnu.org>
6521
6522 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
6523 (Bug#12462).
6524
6525 * repeat.el (repeat): Doc fix (Bug#12348).
6526
6527 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
6528 (Bug#10909).
6529
6530 * simple.el (shell-command-on-region): Doc fix.
6531 (read-only-mode): Doc fix.
6532
6533 2012-09-22 Eli Zaretskii <eliz@gnu.org>
6534
6535 * emacs-lisp/timer.el (run-with-idle-timer)
6536 (timer-activate-when-idle): Warn against reinvoking an idle timer
6537 from within its own timer action. (Bug#12447)
6538
6539 2012-09-22 Martin Rudalics <rudalics@gmx.at>
6540
6541 * cus-start.el (window-combination-limit): Add new optional
6542 values.
6543 * window.el (temp-buffer-window-show)
6544 (window--try-to-split-window): Handle new values of
6545 window-combination-limit (Bug#1806).
6546 (split-window): Test window-combination-limit for t instead of
6547 non-nil.
6548 (display-buffer-at-bottom): New buffer display action function.
6549 * help.el (temp-buffer-resize-regexps): New option.
6550 (temp-buffer-resize-mode): Rewrite doc-string.
6551 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
6552 Don't resize reused window. Suggested by Glenn Morris.
6553
6554 2012-09-22 Stefan Merten <smerten@oekonux.de>
6555
6556 * textmodes/rst.el: Revamp section title faces.
6557 (rst-official-version)
6558 (rst-package-emacs-version-alist): Sync with official version
6559 V1.4.0.
6560 (rst-faces-defaults, rst-set-level-default)
6561 (rst-level-face-max, rst-level-face-base-color)
6562 (rst-level-face-base-light, rst-level-face-format-light)
6563 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
6564 (rst-adornment-faces-alist): Match new setup.
6565 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
6566 (rst-level-5, rst-level-6): New faces.
6567
6568 2012-09-22 Chong Yidong <cyd@gnu.org>
6569
6570 * simple.el (undo): Handle indirect buffers (Bug#8207).
6571
6572 2012-09-21 Leo Liu <sdl.web@gmail.com>
6573
6574 IDO: Disable match re-ordering for buffer switching.
6575 * ido.el (ido-buffer-disable-smart-matches): New variable.
6576 (ido-set-matches-1): Use it. (Bug#2042)
6577
6578 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
6579
6580 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
6581 Fix 2011-05-17 change. (Bug#12418)
6582
6583 2012-09-21 Leo Liu <sdl.web@gmail.com>
6584
6585 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
6586
6587 2012-09-21 Glenn Morris <rgm@gnu.org>
6588
6589 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
6590 Be more robust about locating simple.el.
6591
6592 2012-09-21 Glenn Morris <rgm@gnu.org>
6593
6594 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
6595
6596 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
6597
6598 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
6599
6600 2012-09-20 Juri Linkov <juri@jurta.org>
6601
6602 * replace.el (query-replace-read-from): Use `read-regexp' instead
6603 of `read-from-minibuffer' when `regexp-flag' is non-nil.
6604 (occur-read-primary-args): Use `read-regexp' instead of
6605 `read-string'.
6606 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
6607 `read-from-minibuffer'.
6608 * isearch.el (isearch-occur): Use `read-regexp' instead of
6609 `read-string'.
6610 * dired.el (dired-read-regexp): Use `read-regexp' instead of
6611 `read-from-minibuffer'.
6612 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
6613 of `read-string'. (Bug#7567)
6614
6615 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
6616 and allow accepting a list of strings prepended to a list of
6617 standard default values. Doc fix. (Bug#12321)
6618
6619 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
6620
6621 * replace.el (read-regexp): Don't add ": " when PROMPT already
6622 ends with a colon and space. (Bug#12321)
6623
6624 2012-09-20 Tassilo Horn <tsdh@gnu.org>
6625
6626 * doc-view.el (doc-view-display): Better fix for the cl-assertion
6627 error.
6628
6629 2012-09-20 Stefan Merten <smerten@oekonux.de>
6630
6631 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
6632 Fixes feature request bug#11711.
6633 (rst-mode): Create `imenu-create-index-function'.
6634 (rst-get-stripped-line): Delete after refactoring.
6635 (rst-section-tree, rst-section-tree-rec)
6636 (rst-section-tree-point): Refactor and document properly.
6637 (rst-imenu-find-adornments-for-position)
6638 (rst-imenu-convert-cell, rst-imenu-create-index):
6639 New function.
6640
6641 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
6642
6643 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
6644 (macroexp--expand-all): Use it.
6645 (macroexp--funcall-and-return): Remove by folding it into its sole
6646 caller (macroexp--warn-and-return).
6647 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
6648 Use macroexp--obsolete-warning.
6649
6650 * calc/calc.el: Fix last change by removing the whole chunk, since it
6651 was only needed back when Calc was not bundled.
6652
6653 2012-09-20 Martin Rudalics <rudalics@gmx.at>
6654
6655 * emacs-lisp/debug.el (debug): Restore assignment to
6656 debugger-old-buffer removed on 2012-09-08.
6657
6658 2012-09-20 Juri Linkov <juri@jurta.org>
6659
6660 * dired-aux.el (dired-diff): Remove (require 'diff) since
6661 `diff-latest-backup-file' is now autoloaded.
6662
6663 2012-09-20 Chong Yidong <cyd@gnu.org>
6664
6665 * vc/diff.el (diff-latest-backup-file): Autoload.
6666
6667 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
6668
6669 * calc/calc.el: Remove redundant autoload shape check.
6670 (sel-mode): Don't defvar.
6671 (calc-get-stack-element): Add `sel-mode' arg instead.
6672 (calc-top, calc-top-list): Pass it this additional argument.
6673 * calc/calc-store.el (calc-store-map):
6674 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
6675 (calc-map-equation, calc-outer-product, calc-inner-product):
6676 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
6677
6678 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
6679
6680 2012-09-19 Juri Linkov <juri@jurta.org>
6681
6682 * dired-aux.el (dired-diff): Add (require 'diff) because
6683 `diff-latest-backup-file' is not autoloaded.
6684 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
6685 of `dired-get-filename' to t to not report error when there is
6686 no default file on the current line.
6687
6688 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
6689
6690 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
6691 macroexp--eval-if-compile.
6692 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
6693 (macroexp--expand-all): Use them (bug#12371).
6694
6695 * doc-view.el (doc-view-guess-paper-size)
6696 (doc-view-scale-bounding-box): Fix unbound `caddr'.
6697
6698 2012-09-19 Tassilo Horn <tsdh@gnu.org>
6699
6700 New feature: set optimal slice from BoundingBox information.
6701 * doc-view.el (doc-view-mode-map): Add keybinding.
6702 (doc-view-menu): Add menu entry.
6703 (doc-view-set-slice): Adapt docstring.
6704 (doc-view-get-bounding-box, doc-view-guess-paper-size)
6705 (doc-view-scale-bounding-box)
6706 (doc-view-set-slice-from-bounding-box): New functions.
6707 (doc-view-paper-sizes): New defvar.
6708
6709 2012-09-19 Glenn Morris <rgm@gnu.org>
6710
6711 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
6712 (byte-compile-log-warning): Autoload. (Bug#12371)
6713
6714 * calendar/calendar.el (calendar-american-month-header)
6715 (calendar-european-month-header, calendar-iso-month-header)
6716 (calendar-month-header): New options.
6717 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
6718 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
6719
6720 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
6721
6722 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
6723
6724 2012-09-18 Juri Linkov <juri@jurta.org>
6725
6726 * dired-aux.el (dired-diff): Restore original functionality of
6727 getting the default value, but keep new feature of using the
6728 latest existing backup file (`diff-latest-backup-file').
6729
6730 2012-09-18 Juri Linkov <juri@jurta.org>
6731
6732 * dired.el (dired-mark): If the region is active in Transient Mark
6733 mode, mark all files in the active region. Doc fix.
6734 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
6735 Doc fix. (Bug#10624)
6736
6737 2012-09-18 Juri Linkov <juri@jurta.org>
6738
6739 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
6740 attributes for M-n are pulled from the file at point.
6741 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
6742 Suggested by Drew Adams. (Bug#10624)
6743
6744 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
6745
6746 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
6747 whitespace after "end".
6748 (ruby-do-end-to-brace): Collapse block to one line if it fits
6749 within fill-column.
6750
6751 2012-09-18 Martin Rudalics <rudalics@gmx.at>
6752
6753 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
6754 value.
6755 (debug): Don't remove debugger window when debugger is expected
6756 to be back.
6757
6758 2012-09-18 Chong Yidong <cyd@gnu.org>
6759
6760 * custom.el (defface): Doc fix.
6761
6762 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
6763
6764 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
6765
6766 * progmodes/compile.el (compilation-start): Use compilation-always-kill
6767 to initialize query-on-exit; then test that instead (bug#12288).
6768
6769 2012-09-17 Stefan Merten <smerten@oekonux.de>
6770
6771 * textmodes/rst.el: Add support for `testcover'.
6772 (rst-defcustom-testcover, rst-testcover-add-compose)
6773 (rst-testcover-add-1value): New functions.
6774 (rst-portable-mark-active-p): Replace by `use-region-p'.
6775 (rst-update-section, rst-classify-adornment)
6776 (rst-find-title-line): Mark `1value' forms.
6777 (rst-classify-adornment): Remove superfluous form.
6778 (rst-update-section, rst-get-adornments-around)
6779 (rst-adornment-complete-p, rst-get-next-adornment)
6780 (rst-adjust, rst-promote-region)
6781 (rst-display-adornments-hierarchy, rst-straighten-adornments)
6782 (rst-find-pfx-in-region, rst-section-tree-rec)
6783 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
6784 (rst-toc-node, rst-toc, rst-forward-section)
6785 (rst-iterate-leftmost-paragraphs)
6786 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
6787 (rst-bullet-list-region)
6788 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
6789 (rst-compile-find-conf, rst-compile)
6790 (rst-repeat-last-character): Fix style.
6791
6792 2012-09-17 Chong Yidong <cyd@gnu.org>
6793
6794 * comint.el (comint--complete-file-name-data): Don't add a space
6795 if the status is `sole'; that adds a gratuitous space in the
6796 completion-cycling case (Bug#12092).
6797
6798 * pcomplete.el (pcomplete-completions-at-point): Likewise.
6799
6800 2012-09-17 Richard Stallman <rms@gnu.org>
6801
6802 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
6803 only in the mime-shown mode, not in raw mode.
6804 (rmail-mime): Toggle off mime by displaying the message without
6805 mime processing. (Bug#12305)
6806
6807 * mail/rmail.el (rmail-retry-failure):
6808 Turn off mime processing first. (Bug#12037)
6809
6810 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
6811
6812 2012-09-17 Chong Yidong <cyd@gnu.org>
6813
6814 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
6815 (shell-dynamic-complete-functions): Convert to defcustom.
6816 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
6817
6818 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
6819 * comint.el (comint-prompt-read-only):
6820 * custom.el (defcustom):
6821 * hi-lock.el (hi-lock-mode):
6822 * ibuffer.el (ibuffer-formats):
6823 * ielm.el (ielm-prompt-read-only):
6824 * novice.el (disable-command):
6825 * saveplace.el (toggle-save-place):
6826 * speedbar.el (speedbar-supported-extension-expressions):
6827 * startup.el (auto-save-list-file-prefix, init-file-user)
6828 (after-init-hook, inhibit-startup-echo-area-message):
6829 * strokes.el (strokes-help):
6830 * time-stamp.el (time-stamp):
6831 * calendar/calendar.el (calendar, diary-file):
6832 * calendar/diary-lib.el (diary-mail-entries, diary)
6833 (diary-list-entries-hook):
6834 * calendar/holidays.el (holidays, calendar-holidays):
6835 * calendar/lunar.el (lunar-phases):
6836 * calendar/solar.el (sunrise-sunset):
6837 * emulation/edt.el (edt-load-keys):
6838 * emulation/viper.el (viper-mode):
6839 * eshell/em-alias.el (eshell-command-aliases-list):
6840 * eshell/esh-util.el (eshell-convert-numeric-arguments):
6841 * international/ogonek.el (ogonek-information):
6842 * net/tramp-cmds.el (tramp-bug):
6843 * net/quickurl.el (quickurl-reread-hook-postfix):
6844 * play/decipher.el (decipher-font-lock-keywords):
6845 * progmodes/cc-styles.el (c-set-style):
6846 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
6847 * progmodes/inf-lisp.el (inferior-lisp-prompt):
6848 * progmodes/octave-mod.el (octave-mode):
6849 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
6850 * progmodes/verilog-mode.el (verilog-read-defines):
6851 * textmodes/two-column.el (2C-mode): Likewise.
6852
6853 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
6854
6855 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
6856 that holds many addresses.
6857
6858 2012-09-16 Chong Yidong <cyd@gnu.org>
6859
6860 * align.el (align-areas): Call the indication function with
6861 positions instead of markers for arguments (Bug#12343).
6862
6863 * files.el (parse-colon-path): Use split-string (Bug#12351).
6864
6865 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
6866 (display-buffer-function): Mark as obsolete.
6867
6868 * progmodes/compile.el (compilation-parse-errors): Accept list
6869 values similar to font-lock-keywords (Bug#12136).
6870 Suggested by Oleksandr Manzyuk.
6871 (compilation-error-regexp-alist): Doc fix.
6872
6873 2012-09-15 Glenn Morris <rgm@gnu.org>
6874
6875 * version.el (emacs-bzr-version-bzr): New function.
6876 (emacs-bzr-get-version): Add optional EXTERNAL argument.
6877
6878 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
6879 checkouts, check the parent dirstate matches the branch.
6880 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
6881 empty string.
6882
6883 * version.el (emacs-bzr-version): Doc fix.
6884 (emacs-bzr-version-dirstate): New function.
6885 (emacs-bzr-get-version): For lightweight checkouts, if the parent
6886 is local try and check that it matches the branch. If not, just
6887 use dirstate information. (Bug#12441)
6888
6889 2012-09-14 Juri Linkov <juri@jurta.org>
6890
6891 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
6892 (Bug#12399)
6893
6894 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
6895
6896 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
6897
6898 * emacs-lisp/edebug.el: Miscellaneous cleanup.
6899 Remove obsolete byte-compiler hack that tried to silence some warnings.
6900 (edebug-submit-bug-report): Remove.
6901 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
6902 Remove aliases, use the un-prefixed name instead.
6903 (edebug-pop-to-buffer): Consider other frames.
6904 (edebug-original-read):: Make it more obvious that it's always defined.
6905 (edebug--make-form-data-entry, edebug--form-data-name)
6906 (edebug--form-data-begin, edebug--form-data-end): Rename from the
6907 single-dashed name, and implement with cl-defstruct.
6908 (edebug-set-form-data-entry): Use the standard accessors.
6909 (edebug-make-top-form-data-entry): Use push.
6910 (edebug-no-match): Drop useless `funcall'.
6911 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
6912 to functions.
6913 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
6914 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
6915 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
6916 (easy-menu-define, with-custom-print): Remove redundant specs.
6917 (edebug-outside-overriding-local-map)
6918 (edebug-outside-overriding-terminal-local-map): Remove, unused.
6919 (edebug--display): Bind unread-command-events directly to nil rather
6920 than binding it to unread-command-events and later setting it to nil.
6921 (edebug--display): Kill edebug-eval-buffer here...
6922 (edebug--recursive-edit): ...rather than here.
6923 Bind standard-output and standard-input.
6924 (edebug-eval): Check cl-macroexpand-all is fboundp.
6925 (edebug-temp-display-freq-count): Fix last change.
6926
6927 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
6928 * subr.el (noreturn, 1value): Add `debug' spec.
6929 * emacs-lisp/advice.el: Require cl-lib.
6930 (ad-copy-tree): Remove, use copy-tree instead.
6931 (ad-dolist): Remove use dolist or cl-dolist instead.
6932 (ad-do-return): Remove, use cl-return instead.
6933 (defadvice): Add `debug' spec.
6934
6935 2012-09-13 Juri Linkov <juri@jurta.org>
6936
6937 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
6938 (Bug#12399)
6939
6940 2012-09-13 Glenn Morris <rgm@gnu.org>
6941
6942 * calc/calc.el (math-compose-expr):
6943 * calc/calc-ext.el (math-compose-expr):
6944 * progmodes/cc-defs.el (cl-macroexpand-all):
6945 * progmodes/cc-langs.el (delete-duplicates, mapcan)
6946 (cl-macroexpand-all): Update declarations.
6947
6948 * vc/vc.el: No need to require ediff.
6949 (ediff-load-version-control): Declare.
6950 (ediff-vc-internal): Fix declaration.
6951 (vc-version-ediff): Require ediff.
6952
6953 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6954
6955 Use a more backwards-compatible timer format (Bug#12430).
6956 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
6957 being right after USECS, as that better supports old code that
6958 inadvisedly looked directly at the timer vector.
6959
6960 2012-09-13 Kenichi Handa <handa@gnu.org>
6961
6962 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
6963 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
6964 `coding-priority' property of these language environment.
6965
6966 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6967
6968 Fix glitches caused by addition of psec to timers (Bug#12430).
6969 * image.el (image-animate-timer):
6970 * time.el (display-time-world-timer):
6971 Use timer--function and timer--args rather than raw access to
6972 timer vector.
6973
6974 2012-09-13 Glenn Morris <rgm@gnu.org>
6975
6976 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
6977 If not compiling a file, try using load-file-name.
6978
6979 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
6980
6981 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
6982 Fix last change.
6983 (edebug-update-eval-list): Use `push'.
6984
6985 * emacs-lisp/edebug.el: Use lexical-binding.
6986 Remove the "edebug-" prefix from non-dynamically-scoped variables.
6987 Mark unused args with underscore.
6988 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
6989 (edebug-form-data): Use defvar-local.
6990 (edebug-make-before-and-after-form, edebug-make-after-form):
6991 Use backquote.
6992 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
6993 Not dynamically scoped any more.
6994 (edebug--enter-trace): Add arguments `function' and `args'.
6995 Rename from edebug-enter-trace.
6996 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
6997 (edebug--update-coverage): Add `after-index' and `value' args.
6998 Rename from edebug-update-coverage.
6999 (edebug-slow-after): Call it accordingly.
7000 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
7001 edebug-recursive-edit.
7002 (edebug--display): Call it accordingly. Add args `value',
7003 `offset-index', and `arg-mode'. Rename from edebug-display.
7004 (edebug-debugger, edebug): Call it accordingly.
7005 (edebug-eval-display-list): Use dolist.
7006
7007 2012-09-12 Juri Linkov <juri@jurta.org>
7008
7009 * info.el (Info-search): Don't check for isearch-mode and
7010 isearch-regexp before let-binding search-spaces-regexp to
7011 Info-search-whitespace-regexp.
7012 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
7013 search-whitespace-regexp if isearch-lax-whitespace or
7014 isearch-regexp-lax-whitespace is non-nil.
7015 (Info-mode): Don't set local variable search-whitespace-regexp.
7016 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
7017
7018 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7019
7020 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
7021 (debugger-env-macro): Remove support for unread-command-char.
7022
7023 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
7024 the temporary map re-appearing on emulation-mode-map-alists.
7025
7026 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
7027 since 22.1.
7028
7029 * ehelp.el (with-electric-help): Accept functions in
7030 electric-help-form-to-execute.
7031 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
7032 And replace unread-command-char -> unread-command-events.
7033
7034 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
7035
7036 Sync with Tramp 2.2.6.
7037
7038 * net/tramp.el (tramp-accept-process-output): Don't use
7039 JUST-THIS-ONE in the XEmacs case.
7040
7041 * net/trampver.el: Update release number.
7042
7043 2012-09-12 Martin Rudalics <rudalics@gmx.at>
7044
7045 * emacs-lisp/debug.el (debugger-previous-window-height):
7046 New variable.
7047 (debug): When debugger-jumping-flag is non-nil try to restore
7048 height of debugger window. (Bug#8789)
7049
7050 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7051
7052 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
7053 overriding-local-map and pre/post-command-hook here.
7054 (edebug-recursive-edit): Do it here instead (bug#12345).
7055 (edebug-outside-unread-command-char): Remove all uses of
7056 unread-command-char.
7057
7058 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
7059 inhibit-debugger is bound instead.
7060
7061 2012-09-11 Bastien Guerry <bzg@gnu.org>
7062
7063 * subr.el (set-temporary-overlay-map): Add a docstring.
7064 (Bug#12346)
7065
7066 2012-09-11 Bastien Guerry <bzg@gnu.org>
7067
7068 * minibuffer.el (completion-table-subvert): Fix docstring.
7069 (Bug#12347)
7070
7071 2012-09-11 Bastien Guerry <bzg@gnu.org>
7072
7073 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
7074
7075 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
7076
7077 * progmodes/sql.el: Version 3.1
7078 (sql-db2-escape-newlines): New variable.
7079 (sql-escape-newlines-filter): Use it.
7080
7081 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
7082
7083 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
7084
7085 2012-09-10 Dan Nicolaescu <dann@gnu.org>
7086
7087 * vc/diff-mode.el (diff-mode-menu):
7088 Bind diff-remove-trailing-whitespace.
7089
7090 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
7091
7092 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
7093 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
7094 (emacs-lisp-byte-code-mode): New functions.
7095 (eval-sexp-add-defvars): Don't skip defvars in column >0.
7096 (eval-defun-2): Remove bogus interactive spec.
7097 (lisp-indent-line): Remove redundant whole-exp code, now done in
7098 indent-according-to-mode.
7099 (save-match-data): Remove redundant indent data.
7100
7101 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
7102 Use `declare'.
7103
7104 2012-09-09 Juri Linkov <juri@jurta.org>
7105
7106 * replace.el (replace-regexp-lax-whitespace): New defcustom.
7107 (replace-lax-whitespace, query-replace-regexp)
7108 (query-replace-regexp-eval, replace-regexp): Doc fix.
7109 (perform-replace, replace-highlight): Let-bind
7110 isearch-lax-whitespace to replace-lax-whitespace and
7111 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
7112
7113 * isearch.el (isearch-query-replace): Let-bind
7114 replace-lax-whitespace to isearch-lax-whitespace and
7115 replace-regexp-lax-whitespace to
7116 isearch-regexp-lax-whitespace. (Bug#10885)
7117
7118 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
7119
7120 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
7121
7122 2012-09-09 Alan Mackenzie <acm@muc.de>
7123
7124 * progmodes/cc-engine.el (c-state-cache-init):
7125 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
7126 (c-record-parse-state-state):
7127 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
7128
7129 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
7130
7131 * register.el (register-separator): Rename from
7132 separator-register. All uses changed. Doc fix.
7133 (register): Fix version.
7134
7135 2012-09-09 Chong Yidong <cyd@gnu.org>
7136
7137 * replace.el (query-replace-map): Bind four new symbols for
7138 requesting window scrolling.
7139
7140 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
7141 query-replace-map (Bug#8948).
7142
7143 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
7144
7145 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
7146 since they are now in query-replace-map.
7147
7148 * window.el (scroll-other-window-down): Make the arg optional.
7149
7150 2012-09-09 Chong Yidong <cyd@gnu.org>
7151
7152 * files.el (hack-local-variables-confirm): Use quit-window to kill
7153 the *Local Variables* buffer.
7154
7155 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
7156
7157 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
7158 not just expect to be at its beginning. Adjust callees.
7159 Succeed when do-end block has no space before the pipe character.
7160 (ruby-brace-to-do-end): When the original block is one-liner,
7161 convert to multiline. Reindent the result.
7162
7163 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
7164
7165 * register.el (register): New group.
7166 (separator-register): New user option.
7167 (increment-register): Route it to `append-to-register', if
7168 register contains text. Implication is that `C-x r +' can now be
7169 used for appending to a text register (bug#12217).
7170 (append-to-register, prepend-to-register): Add separator based on
7171 `separator-register'.
7172
7173 2012-09-08 Alan Mackenzie <acm@muc.de>
7174
7175 AWK Mode: make auto-newline work when there's "==" in the pattern.
7176 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
7177 correctly.
7178 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
7179 Test more rigorously for "=" token.
7180
7181 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
7182
7183 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
7184 Only fail when reached LIMIT.
7185
7186 2012-09-08 Chong Yidong <cyd@gnu.org>
7187
7188 * dired.el (dired-mode-map): Don't bind M-=.
7189
7190 * dired-aux.el (dired-diff): Use backup file as default.
7191
7192 2012-09-08 Drew Adams <drew.adams@oracle.com>
7193
7194 * subr.el (add-to-history): Fix delete usage (Bug#12314).
7195
7196 2012-09-08 Chong Yidong <cyd@gnu.org>
7197
7198 * subr.el (syntax-after, syntax-class): Doc fix.
7199
7200 2012-09-08 Martin Rudalics <rudalics@gmx.at>
7201
7202 * window.el (display-buffer-in-previous-window): New buffer
7203 display action function.
7204
7205 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
7206 (debugger-previous-window): New variable.
7207 (debug): Rewrite using display-buffer-in-previous-window,
7208 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
7209
7210 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
7211
7212 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
7213
7214 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
7215
7216 * progmodes/python.el (python-shell-send-string):
7217 When default-directory is remote, create temp file on remote
7218 filesystem.
7219 (python-shell-send-file): When file is remote, pass local view of
7220 file paths to remote Python interpreter. (Bug#12340)
7221
7222 2012-09-07 Chong Yidong <cyd@gnu.org>
7223
7224 * window.el (switch-to-buffer): Doc fix (Bug#12181).
7225
7226 * files.el (after-find-file): Don't fail on a read-only buffer if
7227 require-final-newline is `visit' or `visit-save' (Bug#11156).
7228
7229 * subr.el (read-char-choice): Allow quitting via ESC ESC.
7230
7231 * userlock.el (ask-user-about-supersession-threat):
7232 Use read-char-choice (Bug#12093).
7233
7234 2012-09-07 Chong Yidong <cyd@gnu.org>
7235
7236 * subr.el (buffer-narrowed-p): New function.
7237
7238 * ses.el (ses-widen):
7239 * simple.el (count-words--buffer-message):
7240 * net/browse-url.el (browse-url-of-buffer): Use it.
7241
7242 * simple.el (count-words-region): Don't signal an error if there
7243 is a non-nil prefix arg and the mark is not set.
7244
7245 * help.el (describe-key-briefly): Allow the message to be seen
7246 when invoked from the minibuffer (Bug#7014).
7247
7248 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
7249
7250 * progmodes/ruby-mode.el (ruby-end-of-defun)
7251 (ruby-beginning-of-defun): Simplify, allow indentation before
7252 block beginning and end keywords.
7253 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
7254 (ruby-end-of-defun): Expect that the point is at the beginning of
7255 the defun.
7256
7257 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
7258
7259 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
7260 (bug#12367).
7261 (cl--make-usage-args): Strip _ from argument names.
7262
7263 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7264
7265 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
7266 obsolete alias speedbar-key-map.
7267 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
7268 (vhdl-index-menu-init): Don't use obsolete variable
7269 font-lock-maximum-size.
7270
7271 2012-09-06 Chong Yidong <cyd@gnu.org>
7272
7273 * frame.el (window-system-version): Mark as obsolete.
7274
7275 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
7276 of obsolete variable speedbar-key-map.
7277
7278 2012-09-06 Juri Linkov <juri@jurta.org>
7279
7280 * replace.el (replace-lax-whitespace): New defcustom.
7281 (query-replace, query-replace-regexp, query-replace-regexp-eval)
7282 (replace-string, replace-regexp): Mention it in docstrings.
7283 (perform-replace, replace-highlight): Let-bind
7284 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
7285 to the values of replace-lax-whitespace and regexp-flag.
7286 Don't let-bind search-whitespace-regexp. (Bug#10885)
7287
7288 * isearch.el (isearch-query-replace): Let-bind
7289 replace-lax-whitespace instead of let-binding
7290 replace-search-function and replace-re-search-function.
7291 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
7292 and isearch-regexp-lax-whitespace to lazy-highlight variables.
7293 (isearch-toggle-symbol): Set isearch-regexp to nil
7294 in isearch-word mode (like in isearch-toggle-word).
7295
7296 2012-09-06 Juri Linkov <juri@jurta.org>
7297
7298 * replace.el (replace-search-function)
7299 (replace-re-search-function): Set default values to nil.
7300 (perform-replace): Let-bind isearch-related variables based on
7301 replace-related values, call `isearch-search-fun' and let-bind
7302 the result to `search-function'. Remove code that sets
7303 `search-function' and `search-string' separately for
7304 `delimited-flag'.
7305 (replace-highlight): Add new argument `delimited-flag' and
7306 rename other arguments to the names used in `perform-replace'.
7307 Let-bind `isearch-word' to the argument `delimited-flag'.
7308 (Bug#10885, bug#10887)
7309
7310 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
7311
7312 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
7313 ruby-beginning-of-indent, simplify, allow all keywords to have
7314 indentation before them.
7315 (ruby-beginning-of-indent): Adjust for above. Search until the
7316 found point is not inside a string or comment.
7317 (ruby-font-lock-keywords): Allow symbols to start with "@"
7318 character, give them higher priority than variables.
7319 (ruby-syntax-propertize-function)
7320 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
7321 matchers. Expression expansions are not comments when inside a
7322 string, and there comment syntax status is irrelevant.
7323 (ruby-match-expression-expansion): New function. Check that
7324 expression expansion is inside a string, and it's not escaped.
7325 (ruby-font-lock-keywords): Use it.
7326
7327 2012-09-05 Martin Rudalics <rudalics@gmx.at>
7328
7329 * help.el (temp-buffer-max-height): New default value.
7330 (temp-buffer-resize-frames): New option.
7331 (resize-temp-buffer-window): Optionally resize frame.
7332
7333 * window.el (fit-frame-to-buffer-bottom-margin): New option.
7334 (fit-frame-to-buffer): New function.
7335
7336 2012-09-05 Glenn Morris <rgm@gnu.org>
7337
7338 * emulation/cua-rect.el (cua--init-rectangles):
7339 * textmodes/picture.el (picture-mode-map):
7340 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
7341 like forward-char and backward-char. (Bug#12317)
7342
7343 2012-09-05 Leo Liu <sdl.web@gmail.com>
7344
7345 * progmodes/flymake.el (flymake-warning-re): New variable.
7346 (flymake-parse-line): Use it.
7347
7348 2012-09-05 Glenn Morris <rgm@gnu.org>
7349
7350 * calendar/holidays.el (holiday-christian-holidays):
7351 Rename an entry. (Bug#12289)
7352
7353 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
7354
7355 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
7356 (bug#12222).
7357
7358 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
7359
7360 * loadup.el: Load macroexp. Remove hack.
7361 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
7362 (macroexp--expand-all): Use it to get better warnings.
7363 (macroexp--backtrace, macroexp--trim-backtrace-frame)
7364 (internal-macroexpand-for-load): New functions.
7365 (macroexp--pending-eager-loads): New var.
7366 (emacs-startup-hook): New hack to replace one in loadup.el.
7367 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
7368 (cl--compiler-macro-cXXr): Move to top, before they can be used.
7369 (cl-psetf): Simplify.
7370 (cl-defstruct): Add indent rule.
7371
7372 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
7373
7374 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
7375 over `user-mail-address' for the SMTP MAIL FROM envelope.
7376 (smtpmail-via-smtp): Ditto.
7377
7378 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
7379
7380 * progmodes/ruby-mode.el: Clean up keybindings.
7381 (ruby-mode-map): Don't bind ruby-electric-brace,
7382 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
7383 backward-kill-word, reindent-then-newline-and-indent.
7384 (ruby-mark-defun): Remove.
7385 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
7386 (ruby-mode): Set local beginning-of-defun-function and
7387 end-of-defun-function values.
7388
7389 2012-09-03 Martin Rudalics <rudalics@gmx.at>
7390
7391 * window.el (temp-buffer-window-setup-hook)
7392 (temp-buffer-window-show-hook): New hooks.
7393 (temp-buffer-window-setup, temp-buffer-window-show)
7394 (with-temp-buffer-window): New functions.
7395 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
7396 (special-display-popup-frame): Make sure the window used shows BUFFER.
7397
7398 * help.el (temp-buffer-resize-mode): Fix doc-string.
7399 (resize-temp-buffer-window): New optional argument WINDOW.
7400
7401 * files.el (recover-file, save-buffers-kill-emacs):
7402 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
7403
7404 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
7405
7406 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
7407 remote definition of `default-directory', ensure we can connect.
7408
7409 2012-09-02 Juri Linkov <juri@jurta.org>
7410
7411 Toggle whitespace matching mode with M-s SPC.
7412 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
7413
7414 * isearch.el (search-whitespace-regexp): Doc fix.
7415 Remove cons cell customization.
7416 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
7417 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
7418 New variables.
7419 (isearch-forward, isearch-forward-regexp): Doc fix.
7420 (isearch-toggle-lax-whitespace): New command.
7421 (search-forward-lax-whitespace, search-backward-lax-whitespace)
7422 (re-search-forward-lax-whitespace)
7423 (re-search-backward-lax-whitespace): New functions.
7424 (isearch-whitespace-regexp): Remove function.
7425 (isearch-query-replace): Let-bind replace-search-function and
7426 replace-re-search-function.
7427 (isearch-occur): Let-bind search-spaces-regexp according to the
7428 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
7429 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
7430 condition for C-q SPC.
7431 (isearch-search-fun-default): Use new functions mentioned above.
7432 (isearch-search-forward, isearch-search-backward): Remove functions.
7433 (isearch-search): Don't let-bind search-spaces-regexp.
7434 (isearch-lazy-highlight-space-regexp): Remove variable.
7435 (isearch-lazy-highlight-lax-whitespace)
7436 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
7437 (isearch-lazy-highlight-new-loop): Use them.
7438 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
7439
7440 2012-09-02 Chong Yidong <cyd@gnu.org>
7441
7442 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
7443
7444 2012-09-02 Glenn Morris <rgm@gnu.org>
7445
7446 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
7447
7448 2012-09-01 Glenn Morris <rgm@gnu.org>
7449
7450 * term.el: Tidy up menu definitions.
7451 (term-mode-map): Use easymenu for In/Out, Complete menus.
7452 (term-pager-break-map): Initialize in the defvar.
7453 (term-terminal-menu, term-signals-menu): Define with easymenu.
7454 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
7455 (term-pager-menu): New, extracted from term-process-pager.
7456 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
7457 (term-update-mode-line): Propertize line/char and page items.
7458 (term-process-pager): Move keymap initialization elsewhere.
7459
7460 2012-09-01 Martin Rudalics <rudalics@gmx.at>
7461
7462 * window.el (switch-to-prev-buffer): Handle additional values of
7463 BURY-OR-KILL argument. Don't switch in minibuffer window.
7464 (switch-to-next-buffer): Don't switch in minibuffer window.
7465 (quit-restore-window): New function based on quit-window.
7466 Handle additional values of former KILL argument.
7467 (quit-window): Call quit-restore-window with appropriate
7468 interpretation of KILL argument.
7469 (display-buffer-below-selected): New buffer display action
7470 function.
7471
7472 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
7473
7474 * minibuffer.el (completion-at-point-functions): Complete docstring
7475 (bug#12254).
7476
7477 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
7478
7479 Better seed support for (random).
7480 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
7481 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
7482 * play/mpuz.el, play/tetris.el, play/zone.el:
7483 * calc/calc-comb.el (math-init-random-base):
7484 * play/blackbox.el (bb-init-board):
7485 * play/life.el (life):
7486 * server.el (server-use-tcp):
7487 * type-break.el (type-break):
7488 Remove unnecessary call to (random t).
7489 * net/sasl.el (sasl-unique-id-function):
7490 Change (random t) to (random), now that the latter is more random.
7491 * play/life.el (life-initialized): Remove no-longer-needed var.
7492
7493 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
7494
7495 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
7496 Consider frame's buffer predicate when choosing the buffer.
7497 (Bug#12081)
7498
7499 2012-08-30 Richard Stallman <rms@gnu.org>
7500
7501 * simple.el (special-mode-map): Delete binding for `z'.
7502
7503 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
7504
7505 * progmodes/compile.el (compilation-always-kill): Doc fix.
7506
7507 2012-08-30 Chong Yidong <cyd@gnu.org>
7508
7509 * window.el (display-buffer-reuse-frames): Make the obsolescence
7510 message more informative.
7511
7512 2012-08-30 Glenn Morris <rgm@gnu.org>
7513
7514 * paren.el (show-paren-delay):
7515 Add a :set function. Doc fix. (Bug#12297)
7516
7517 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
7518
7519 * progmodes/compile.el (compilation-always-kill): New var.
7520 (compilation-start): Use it.
7521
7522 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
7523
7524 * simple.el (read-only-mode): Move from files.el for bootstrapping.
7525 * files.el (read-only-mode): Move to simple.el.
7526
7527 * files.el (read-only-mode): New minor mode.
7528 (toggle-read-only): Use it and mark obsolete.
7529 (find-file--read-only):
7530 * vc/vc.el (vc-next-action, vc-checkout):
7531 * vc/vc-cvs.el (vc-cvs-checkout):
7532 * obsolete/vc-mcvs.el (vc-mcvs-update):
7533 * ffap.el (ffap--toggle-read-only): Update callers.
7534
7535 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
7536
7537 * eshell/esh-ext.el (eshell-external-command): Do not examine
7538 remote shell scripts.
7539 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
7540
7541 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
7542 "/usr/local/sbin".
7543
7544 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7545
7546 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
7547
7548 2012-08-28 Leo Liu <sdl.web@gmail.com>
7549
7550 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
7551 completion-at-point. (Bug#12220)
7552
7553 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
7554
7555 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
7556
7557 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7558
7559 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
7560 be buffer-local; add delete-trailing-whitespace (bug#12259).
7561
7562 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
7563
7564 * progmodes/hideif.el (hif-compress-define-list):
7565 Fix typo. (Bug#11951)
7566
7567 2012-08-28 Dan Nicolaescu <dann@gnu.org>
7568
7569 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
7570 buffer local setting.
7571
7572 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
7573 rcirc-encode-coding-system.
7574
7575 2012-08-28 Leo Liu <sdl.web@gmail.com>
7576
7577 * net/rcirc.el (rcirc-split-message): New function.
7578 (rcirc-send-message): Use it. (Bug#12051)
7579
7580 2012-08-28 Juri Linkov <juri@jurta.org>
7581
7582 * info.el (Info-fontify-node): Hide empty lines at the end of
7583 the node. (Bug#12272)
7584
7585 2012-08-27 Drew Adams <drew.adams@oracle.com>
7586
7587 * dired.el (dired-pop-to-buffer): Make window start at beginning
7588 of buffer (Bug#12281).
7589
7590 2012-08-26 Chong Yidong <cyd@gnu.org>
7591
7592 * window.el (special-display-regexps, special-display-frame-alist)
7593 (special-display-buffer-names, special-display-function)
7594 (display-buffer-reuse-frames): Mark as obsolete.
7595
7596 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
7597
7598 * help.el (help-print-return-message): Don't treat
7599 display-buffer-reuse-frames specially.
7600
7601 2012-08-26 Chong Yidong <cyd@gnu.org>
7602
7603 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
7604 New variable, replacing gdb-frame-parameters.
7605 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
7606 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
7607 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
7608 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
7609 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
7610 the functions directly with gdb-display-buffer-other-frame-action.
7611 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
7612 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
7613 (gdb-display-stack-buffer, gdb-display-locals-buffer)
7614 (gdb-display-registers-buffer): Define directly.
7615 (def-gdb-display-buffer): Macro deleted.
7616 (gdb-display-buffer): Remove second and third args, callers don't
7617 use them. Defer to the default display-buffer behavior, apart
7618 from making windows dedicated.
7619 (gdb-setup-windows): Don't call display-buffer unnecessarily.
7620
7621 * progmodes/gud.el (gud-display-line): Just use display-buffer.
7622
7623 * window.el (display-buffer-pop-up-frame): Handle a
7624 pop-up-frame-parameters alist entry.
7625 (display-buffer): Document it.
7626
7627 2012-08-26 Chong Yidong <cyd@gnu.org>
7628
7629 * isearch.el (search-whitespace-regexp): Make string and nil
7630 values apply to both ordinary and regexp search. Allow a cons
7631 cell value to distinguish between the two.
7632 (isearch-whitespace-regexp, isearch-search-forward)
7633 (isearch-search-backward): New functions.
7634 (isearch-occur, isearch-search-fun-default, isearch-search)
7635 (isearch-lazy-highlight-new-loop): Use them.
7636 (isearch-forward, isearch-forward-regexp): Doc fix.
7637
7638 2012-08-26 Chong Yidong <cyd@gnu.org>
7639
7640 * faces.el (help-argument-name): Always inherit from italic
7641 (Bug#12213).
7642
7643 2012-08-25 Martin Rudalics <rudalics@gmx.at>
7644
7645 * window.el (window--even-window-heights): Even heights when
7646 WINDOW and the selected window form a vertical combination.
7647 (display-buffer-use-some-window): Provide that window used gets
7648 sized back by quit-window. (Bug#11880) and (Bug#12091)
7649
7650 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
7651
7652 Fix file time stamp problem with bzr and CVS (Bug#12001).
7653 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
7654 in the file's time stamp, since the version control system loses
7655 that information.
7656
7657 2012-08-22 Juri Linkov <juri@jurta.org>
7658
7659 * info.el (Info-fontify-node): Hide the suffix of the
7660 Info file name in the header line. (Bug#12187)
7661
7662 2012-08-22 Glenn Morris <rgm@gnu.org>
7663
7664 * calendar/cal-tex.el (cal-tex-weekly-common):
7665 Restore leading blank page.
7666
7667 2012-08-22 Le Wang <l26wang@gmail.com>
7668
7669 * misc.el (forward-to-word, backward-to-word): Activate or extend
7670 the region under `shift-select-mode'. (Bug#12231)
7671
7672 2012-08-22 Bastien Guerry <bzg@gnu.org>
7673
7674 * progmodes/executable.el (executable-prefix): Set to "#!" instead
7675 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
7676 gives details on why the space is never needed.
7677
7678 2012-08-22 Martin Rudalics <rudalics@gmx.at>
7679
7680 * window.el (walk-window-tree, window-with-parameter):
7681 New optional argument MINIBUF to control whether these functions
7682 should run on the minibuffer window.
7683 (window-at-side-list): Don't operate on minibuffer window.
7684 (window-in-direction): Simplify and rewrite doc-string.
7685 (window--size-ignore): Rename to window--size-ignore-p.
7686 Update callers.
7687 (display-buffer-in-atom-window, window--major-non-side-window)
7688 (window--major-side-window, display-buffer-in-major-side-window)
7689 (delete-side-window, display-buffer-in-side-window):
7690 New functions.
7691 (window--side-check, window-deletable-p, delete-window)
7692 (delete-other-windows, split-window): Handle side windows and
7693 atomic windows appropriately.
7694 (window--display-buffer): Call display-buffer-record-window also
7695 when the window buffer did not change.
7696
7697 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
7698
7699 * help-fns.el (help-fns--key-bindings):
7700 Abbreviate non-symbol remap targets. (Bug#12174)
7701
7702 2012-08-22 Martin Rudalics <rudalics@gmx.at>
7703
7704 * dired.el (dired-mark-remembered): Don't clobber point.
7705 (Bug#11795)
7706
7707 2012-08-22 Glenn Morris <rgm@gnu.org>
7708
7709 * progmodes/bug-reference.el (bug-reference): New custom group.
7710 (bug-reference-bug-regexp): Make it a defcustom.
7711
7712 2012-08-22 Daiki Ueno <ueno@unixuser.org>
7713
7714 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
7715 (js-paren-indent-offset, js-square-indent-offset)
7716 (js-curly-indent-offset): Add :safe (Bug#12257).
7717
7718 2012-08-22 Edward O'Connor <hober0@gmail.com>
7719
7720 * json.el (json-key-format): Add error properties.
7721 (json-encode-key): New function.
7722 (json-encode-hash-table, json-encode-alist, json-encode-plist):
7723 Use json-encode-key.
7724
7725 2012-08-22 Glenn Morris <rgm@gnu.org>
7726
7727 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
7728 (cal-tex-leftday, cal-tex-rightday): Remove functions.
7729 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
7730 Update for above change.
7731
7732 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
7733
7734 * cus-face.el (custom-face-attributes): Fix customize type for the
7735 :underline attribute. (Bug#11805)
7736
7737 2012-08-21 Martin Rudalics <rudalics@gmx.at>
7738
7739 * window.el (window-point-1, set-window-point-1): Remove.
7740 (window-in-direction, record-window-buffer)
7741 (set-window-buffer-start-and-point, split-window-below)
7742 (window--state-get-1, display-buffer-record-window):
7743 Replace calls to window-point-1 and set-window-point-1 by calls to
7744 window-point and set-window-point respectively.
7745
7746 2012-08-21 Glenn Morris <rgm@gnu.org>
7747
7748 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
7749 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
7750 Use it.
7751
7752 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
7753 (cal-tex-shortday): New function.
7754 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
7755 (cal-tex-cursor-filofax-daily): Use the above.
7756
7757 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
7758 New functions.
7759 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
7760 (cal-tex-cursor-filofax-week): Use them.
7761
7762 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
7763 New constants.
7764 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
7765 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
7766
7767 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
7768 (cal-tex-end-document): Don't rely on buffer name.
7769
7770 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
7771 Use cal-tex-vspace.
7772 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
7773 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
7774 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
7775 Use cal-tex-arg.
7776
7777 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
7778 (cal-tex-cursor-week, cal-tex-cursor-week2)
7779 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
7780 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
7781 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
7782 (cal-tex-insert-preamble, cal-tex-b-document)
7783 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
7784 Improve cal-tex-cmd usage.
7785
7786 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
7787 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
7788 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
7789 (cal-tex-weekly-paper): New function.
7790 (cal-tex-cursor-week, cal-tex-cursor-week2)
7791 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
7792 (cal-tex-cursor-day): Use it.
7793
7794 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
7795 (cal-tex-cursor-filofax-week): Remove leading blank page.
7796
7797 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
7798 Add autoload cookie. For now at least, don't use color, since
7799 no other cal-tex function does.
7800
7801 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
7802 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
7803 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
7804
7805 2012-08-21 Juri Linkov <juri@jurta.org>
7806
7807 * info.el (Info-file-attributes): New variable.
7808 (info-insert-file-contents): Add file attributes to
7809 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
7810 `Info-toc-nodes' when previous modtime of the Info file is less
7811 than new modtime.
7812 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
7813 of info.el. (Bug#12230)
7814
7815 2012-08-20 Glenn Morris <rgm@gnu.org>
7816
7817 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
7818 * calendar/holidays.el (calendar-holiday-list):
7819 Report errors with display-warning rather than beep'n'sleep.
7820
7821 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
7822
7823 * net/tramp.el (tramp-accept-process-output): Accept only output
7824 from PROC. Otherwise, process filters and sentinels might be
7825 confused. (Bug#12145)
7826
7827 2012-08-20 Chong Yidong <cyd@gnu.org>
7828
7829 * descr-text.el (describe-text-properties-1): Use overlays-in to
7830 report on empty overlays (Bug#3322).
7831
7832 2012-08-20 Glenn Morris <rgm@gnu.org>
7833
7834 * mail/rmailout.el (rmail-output-read-file-name):
7835 Trap and report errors in rmail-output-file-alist elements.
7836
7837 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
7838 since most non-font-lock faces are not also variables).
7839
7840 2012-08-20 Edward Reingold <reingold@iit.edu>
7841
7842 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
7843 New function. (Bug12160)
7844
7845 2012-08-19 Glenn Morris <rgm@gnu.org>
7846
7847 * mail/rmailout.el (rmail-output-read-file-name):
7848 Fix previous change (when the alist is nil or does not match).
7849
7850 2012-08-19 Chong Yidong <cyd@gnu.org>
7851
7852 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
7853 (Bug#12228).
7854
7855 2012-08-18 Chong Yidong <cyd@gnu.org>
7856
7857 * simple.el (yank-handled-properties): New defcustom.
7858 (yank-excluded-properties): Add font-lock-face and category.
7859 (yank): Doc fix.
7860
7861 * subr.el (remove-yank-excluded-properties):
7862 Obey yank-handled-properties. The special handling of font-lock-face
7863 and category is now done this way, instead of being hard-coded.
7864 (insert-for-yank-1): Remove font-lock-face handling.
7865 (yank-handle-font-lock-face-property)
7866 (yank-handle-category-property): New function.
7867
7868 2012-08-17 Glenn Morris <rgm@gnu.org>
7869
7870 * mail/rmailout.el (rmail-output-read-file-name):
7871 Check rmail-output-file-alist against the full message body
7872 in the correct rmail buffer. (Bug#12214)
7873
7874 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
7875
7876 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
7877 Eliminate superfluous prompt. (Bug#12203)
7878
7879 2012-08-17 Chong Yidong <cyd@gnu.org>
7880
7881 * mouse.el (mouse-appearance-menu): If x-select-font returns a
7882 font spec, set the font directly (Bug#3228).
7883
7884 2012-08-17 Martin Rudalics <rudalics@gmx.at>
7885
7886 * window.el (delete-window): Fix last fix.
7887
7888 2012-08-16 Martin Rudalics <rudalics@gmx.at>
7889
7890 * window.el (window-valid-p): Move to window.c.
7891 (window-child, window-child-count, window-last-child)
7892 (window-normalize-window, window-combined-p)
7893 (window-combinations, window-atom-root, window-min-size)
7894 (window-sizable, window-sizable-p, window-size-fixed-p)
7895 (window-min-delta, window-max-delta, window--resizable)
7896 (window--resizable-p, window-resizable, window-total-size)
7897 (window-full-height-p, window-full-width-p, window-body-size)
7898 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
7899 (minimize-window, window-deletable-p, delete-window)
7900 (delete-other-windows, set-window-buffer-start-and-point)
7901 (next-buffer, previous-buffer, split-window, balance-windows-2)
7902 (set-window-text-height, window-buffer-height)
7903 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
7904 (truncated-partial-width-window-p): Minor code adjustments.
7905 In doc-strings state whether the argument window has to denote a
7906 live, valid or any window.
7907
7908 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
7909
7910 * progmodes/subword.el (subword-forward-function)
7911 (subword-backward-function, subword-forward-regexp)
7912 (subword-backward-regexp): New variables.
7913 (subword-forward, subword-forward-internal, subword-backward-internal):
7914 Use new variables, eg so that different "word" definitions
7915 can be easily used. (Bug#11411)
7916
7917 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7918
7919 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
7920 for composite selectors.
7921 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
7922 operation just because we can't find a previous revision.
7923
7924 2012-08-15 Chong Yidong <cyd@gnu.org>
7925
7926 * frame.el (set-frame-font): Accept font objects.
7927
7928 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7929
7930 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
7931
7932 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
7933
7934 * man.el (Man-overstrike-face, Man-underline-face)
7935 (Man-reverse-face): Remove variables.
7936 (Man-overstrike, Man-underline, Man-reverse): New faces.
7937 (Man-fontify-manpage): Use them instead of the variables.
7938 (Man-cleanup-manpage): Comment change.
7939 (Man-ansi-color-map): New variable.
7940 (Man-fontify-manpage): Use it.
7941 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
7942
7943 Implement ANSI SGR parameters 22-27 (bug#12146).
7944 * ansi-color.el (ansi-colors): Doc fix.
7945 (ansi-color-context, ansi-color-context-region): Doc fix.
7946 (ansi-color--find-face): New function.
7947 (ansi-color-apply, ansi-color-apply-on-region): Use it.
7948 Rename the local variable `face' to `codes' since it is now a list of
7949 ansi codes. Doc fix.
7950 (ansi-color-get-face): Remove.
7951 (ansi-color-parse-sequence): New function, derived from
7952 ansi-color-get-face.
7953 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
7954 codes 22-27.
7955
7956 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
7957
7958 * subr.el (read-passwd): Allow use from a minibuffer.
7959
7960 2012-08-14 Eli Zaretskii <eliz@gnu.org>
7961
7962 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
7963 inside comments and strings as identifiers.
7964
7965 * progmodes/gud.el (gud-tooltip-print-command): Quote the
7966 expression to evaluate. This allows to evaluate expressions with
7967 embedded whitespace.
7968 (gud-tooltip-tips): Add a blank before the newline in the
7969 message-box text, for the benefit of message-box emulation on
7970 MS-Windows.
7971
7972 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
7973 messages from GDB, pop them up in a tooltip to give feedback to
7974 user.
7975 (gdb-tooltip-print-1): Quote the expression to evaluate.
7976 This allows to evaluate expressions with embedded whitespace.
7977 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
7978 if the TTY name is nil or empty (which happens when communicating
7979 with the inferior via pipes, e.g. on MS-Windows).
7980 (gdb-internals): If GDB sends a "&\n" empty debugging message,
7981 don't send that to the GUD buffer.
7982
7983 2012-08-14 Glenn Morris <rgm@gnu.org>
7984
7985 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
7986 Optimize away setq-default with no args, as for setq. (Bug#12195)
7987
7988 2012-08-14 Chong Yidong <cyd@gnu.org>
7989
7990 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
7991
7992 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
7993 (Bug#12085).
7994
7995 2012-08-14 Glenn Morris <rgm@gnu.org>
7996
7997 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
7998
7999 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
8000
8001 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
8002 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
8003 Use cached shell name.
8004
8005 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
8006
8007 * progmodes/python.el (python-shell-send-string):
8008 (python-shell-send-setup-code): Do not use `format' with `message'.
8009
8010 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
8011
8012 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
8013 (ruby-percent-literal-beg-re): New constant.
8014 (ruby-syntax-general-delimiters-goto-beg): Rename to
8015 `ruby-syntax-enclosing-percent-literal', improve literal type check.
8016 (ruby-syntax-propertize-general-delimiters): Rename to
8017 `ruby-syntax-propertize-percent-literal', it's a shorter and more
8018 popular term. Adjust comments everywhere.
8019 (ruby-syntax-propertize-percent-literal): Only propertize when not
8020 inside a simple string or comment. When the literal is unclosed,
8021 leave the text after it unpropertized.
8022 (ruby-syntax-methods-before-regexp): New constant.
8023 (ruby-syntax-propertize-function): Use it to recognize regexps.
8024 Don't look at the text after regexp, just use the whitelist.
8025
8026 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
8027
8028 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
8029 non-nil always load the compiled file if it exists. (Bug#12197)
8030
8031 2012-08-14 Chong Yidong <cyd@gnu.org>
8032
8033 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
8034 (hi-lock-set-pattern): When deciding whether to use font lock or
8035 overlays, look at font-lock-mode instead of font-lock-fontified
8036 (Bug#12168).
8037 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
8038 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
8039
8040 2012-08-14 Daiki Ueno <ueno@unixuser.org>
8041
8042 * subr.el (internal--after-with-selected-window): Fix typo
8043 (Bug#12193).
8044
8045 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
8046
8047 Use `completion-table-dynamic' for completion functions.
8048 * progmodes/python.el
8049 (python-shell-completion--do-completion-at-point)
8050 (python-shell-completion--get-completions):
8051 Remove functions.
8052 (python-shell-completion-complete-at-point): New function.
8053 (python-completion-complete-at-point): Use it.
8054
8055 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
8056
8057 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
8058 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
8059
8060 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
8061
8062 * subr.el (function-get): Refine `autoload' arg so it can also
8063 autoload functions for gv.el (bug#12191).
8064 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
8065 autoloads macros.
8066
8067 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
8068 Prefer pcase-let over destructuring-bind.
8069 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
8070 Also, remove whitespace as we go, rather than after accumulating the
8071 various places.
8072
8073 * subr.el (internal--before-with-selected-window)
8074 (internal--after-with-selected-window): Fix typo seleted->selected.
8075 (with-selected-window): Adjust callers.
8076 Reported by Dmitry Gutov <dgutov@yandex.ru>.
8077
8078 2012-08-13 Bastien Guerry <bzg@gnu.org>
8079
8080 * window.el (special-display-popup-frame): Minor docstring
8081 enhancement. (Bug#12172)
8082
8083 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
8084
8085 * tar-mode.el (tar-header-data-end): Only ignore size for files of
8086 type 1-6.
8087 (tar-header-block-summarize, tar-get-descriptor): Handle pax
8088 extended headers.
8089
8090 * files.el (hack-local-variables-filter): Remove useless eval.
8091
8092 2012-08-13 Martin Rudalics <rudalics@gmx.at>
8093
8094 * subr.el (with-selected-window): Fix last change.
8095
8096 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8097
8098 * subr.el (internal--before-with-seleted-window)
8099 (internal--after-with-seleted-window): New functions.
8100 (with-selected-window): Use them, to replace dependency on
8101 tty-top-frame.
8102
8103 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
8104
8105 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
8106 binding for `newline'.
8107 (ruby-move-to-block): When moving backward, stop at block opening,
8108 not indentation.
8109 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
8110 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
8111 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
8112 `ruby-toggle-block'.
8113
8114 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8115
8116 * ibuffer.el (ibuffer-do-toggle-read-only):
8117 * dired.el (dired-toggle-read-only):
8118 * buff-menu.el (Buffer-menu-toggle-read-only):
8119 * bindings.el (mode-line-toggle-read-only):
8120 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
8121
8122 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
8123
8124 * descr-text.el (describe-char): Put the overlays over the
8125 "displayed as" character.
8126
8127 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
8128
8129 * calc/calc-units.el (math-default-units-table): Give an
8130 initial value.
8131 (math-put-default-units): Add options to put composite units and
8132 unit systems in the default units table.
8133 (calc-convert-units): Send composite units to
8134 `math-put-default-units' when appropriate.
8135
8136 2012-08-11 Glenn Morris <rgm@gnu.org>
8137
8138 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
8139
8140 * tutorial.el (help-with-tutorial):
8141 * emacs-lisp/copyright.el (copyright-update-directory):
8142 * emacs-lisp/autoload.el (autoload-find-generated-file)
8143 (autoload-find-file): Disable local eval: (for insurance).
8144
8145 * files.el (hack-local-variables-filter): If an eval: form is not
8146 known to be safe, and enable-local-variables is :safe, then ignore
8147 the form totally, as is done for non-eval forms. (Bug#12155)
8148 This is CVE-2012-3479.
8149
8150 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8151
8152 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
8153 (rx-form): Simplify.
8154
8155 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
8156
8157 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
8158 ?, _, and : are symbol constituents, ! is not (but kinda should be).
8159 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
8160 (ruby-syntax-propertize-function): Adjust for changes in
8161 `ruby-syntax-propertize-heredoc'.
8162
8163 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
8164
8165 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
8166 binding (use `M-;' instead).
8167 (ruby-singleton-class-p): New function.
8168 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
8169
8170 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8171
8172 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
8173
8174 2012-08-10 Chong Yidong <cyd@gnu.org>
8175
8176 * progmodes/python.el (python-shell-get-process-name): Don't mess
8177 with same-window-buffer-names.
8178
8179 * eshell/eshell.el (eshell-add-to-window-buffer-names)
8180 (eshell-remove-from-window-buffer-names): Make obsolete.
8181 (eshell-buffer-name, eshell-unload-hook): Don't use them.
8182 (eshell): Just use pop-to-buffer-same-window instead.
8183
8184 2012-08-10 Chong Yidong <cyd@gnu.org>
8185
8186 * bindings.el: Bind M-= back to count-words-region.
8187
8188 * simple.el (count-words-region): Accept a prefix arg for acting
8189 on the entire buffer.
8190 (count-words--buffer-message): New helper function.
8191
8192 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8193
8194 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
8195 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
8196 (event-start, event-end): Use posn-at-point to return a more
8197 informative posn.
8198 (posnp): New function.
8199 * mouse.el (popup-menu-normalize-position): Use it.
8200
8201 2012-08-10 Masatake YAMATO <yamato@redhat.com>
8202
8203 * mouse.el (popup-menu-normalize-position): New function.
8204 (popup-menu): Use `popup-menu-normalize-position' to normalize
8205 the form for POSITION argument.
8206
8207 * term/x-win.el (x-menu-bar-open):
8208 Use the value returend from (posn-at-point) as position
8209 passed to `popup-menu'.
8210
8211 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
8212
8213 * calc/calccomp.el (math-compose-expr): Add extra argument
8214 indicating that parentheses should be put around products in
8215 denominators. Give multiplication precedence over division during
8216 composition.
8217
8218 2012-08-09 Chong Yidong <cyd@gnu.org>
8219
8220 * man.el (Man-switches, Man-sed-command, Man-awk-command)
8221 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
8222 (Man-untabify-command, manual-program): Convert to defcustom
8223 (Bug#10429).
8224
8225 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
8226
8227 * descr-text.el (describe-char): Don't insert extra newlines
8228 (Bug#10127).
8229
8230 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
8231 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
8232
8233 * align.el (align-region): Delete temporary markers (Bug#10047).
8234 Plus some code cleanups.
8235
8236 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
8237
8238 * progmodes/python.el (python-pdbtrack-tracked-buffer)
8239 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
8240 (python-shell-internal-last-output): Use make-local-variable
8241 instead of make-variable-buffer-local.
8242
8243 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
8244
8245 * progmodes/python.el: Enhancements to forward-sexp.
8246 (python-nav-forward-sexp): Rename from
8247 python-nav-forward-sexp-function.
8248 (python-nav--forward-sexp, python-nav--backward-sexp):
8249 New functions.
8250
8251 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
8252
8253 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
8254 modes and simplification modes.
8255
8256 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
8257
8258 * delsel.el (delete-selection-pre-hook): Don't propagate the
8259 file-supersession signals (bug#12161).
8260
8261 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8262
8263 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
8264 (cl-map-extents): Add compatibility aliases (bug#12135).
8265
8266 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
8267
8268 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
8269 tests by `ignore-error'.
8270 (tramp-find-shell): Open also a new shell, when cache is already
8271 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
8272
8273 2012-08-08 Juri Linkov <juri@jurta.org>
8274
8275 * bookmark.el: Add `defaults' property to the bookmark record.
8276 (bookmark-current-buffer): Doc fix.
8277 (bookmark-make-record): Add `defaults' property with default values
8278 to the bookmark record.
8279 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
8280 with `bookmark-insert-current-bookmark'.
8281 (bookmark-set): Get `defaults' property from the bookmark record
8282 and use it in `read-from-minibuffer'.
8283 (bookmark-insert-current-bookmark): Remove function.
8284
8285 * info.el (Info-bookmark-make-record): Add `defaults' property
8286 with values of canonical Info node name, the current Info file
8287 name and the current Info node name. (Bug#12107)
8288
8289 2012-08-08 Juri Linkov <juri@jurta.org>
8290
8291 * files.el (basic-save-buffer): Use `buffer-name' as the default
8292 of `read-file-name' when buffer is not visiting a file (bug#12128).
8293
8294 2012-08-08 Juri Linkov <juri@jurta.org>
8295
8296 * info.el (Info-isearch-search): Doc fix.
8297 (Info-search): Change search-failed message from "initial node" to
8298 "end of node" (bug#12078).
8299 (Info-isearch-search): Change `isearch-string-state' to
8300 `isearch--state-string'.
8301
8302 2012-08-08 Glenn Morris <rgm@gnu.org>
8303
8304 * language/persian.el: Remove file.
8305 * language/misc-lang.el: Move unique part of persian.el here.
8306 * loadup.el: Remove language/persian.
8307
8308 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
8309
8310 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
8311
8312 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
8313
8314 * progmodes/python.el: Fix defsubst warning.
8315 (python-syntax-context) Rename from python-info-ppss-context.
8316 (python-syntax-context-type): Rename from
8317 python-info-ppss-context-type.
8318 (python-syntax-comment-or-string-p): Rename from
8319 python-info-ppss-comment-or-string-p.
8320
8321 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
8322
8323 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
8324
8325 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
8326
8327 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
8328 a defcustom that is quoted with backquote.
8329
8330 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
8331 Fix handling of interactive spec when the body uses return.
8332 (math-do-arg-check, math-define-function-body): Use backquote forms.
8333 * calc/calc-ext.el (math-defcache): Likewise.
8334 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
8335 * allout.el (allout-new-exposure): Likewise.
8336 * calc/calcalg2.el (math-tracing-integral): Likewise.
8337 * info.el (Info-last-menu-item): Likewise.
8338 * emulation/vip.el (vip-loop): Likewise.
8339 * textmodes/artist.el (artist-funcall): Likewise.
8340 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
8341 Construct menu-item directly.
8342
8343 * progmodes/autoconf.el (font-lock-syntactic-keywords):
8344 Don't declare.
8345
8346 2012-08-07 Chong Yidong <cyd@gnu.org>
8347
8348 * simple.el (deactivate-mark): Preserve text properties when
8349 saving the primary selection (Bug#8384).
8350
8351 2012-08-07 Kevin Ryde <user42@zip.com.au>
8352
8353 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
8354 (woman-parse-numeric-value): On a bad .IP line, issue a warning
8355 and continue processing (Bug#12110).
8356
8357 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
8358
8359 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
8360 syntax-propertize-function (bug#10095).
8361
8362 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
8363
8364 * help-fns.el (help-fns--key-bindings, help-fns--signature)
8365 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
8366 describe-function-1.
8367 (describe-function-1): Use them. Move compiler macro after sig.
8368 (help-fns--compiler-macro): Use function-get. Assume we're already in
8369 standard-output. Adjust layout to new call order.
8370
8371 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
8372 re-binding a symbol that has a symbol-macro (bug#12119).
8373
8374 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
8375
8376 * language/persian.el: New file. (Bug#11812)
8377 * loadup.el: Add language/persian.el.
8378
8379 2012-08-06 Chong Yidong <cyd@gnu.org>
8380
8381 * window.el (window--maybe-raise-frame): New function.
8382 (window--display-buffer): Split off from here.
8383 (display-buffer-reuse-window, display-buffer-pop-up-frame)
8384 (display-buffer-pop-up-window, display-buffer-use-some-window):
8385 Obey an inhibit-switch-frame action alist entry.
8386 (display-buffer): Update doc.
8387
8388 * replace.el (occur-after-change-function): Avoid losing focus by
8389 using the inhibit-switch-frame display parameter (Bug#12139).
8390
8391 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
8392
8393 Make internal shell process buffer names start with space.
8394 * progmodes/python.el (python-shell-make-comint): Add optional
8395 argument INTERNAL.
8396 (run-python-internal): Use it.
8397 (python-shell-internal-get-or-create-process): Check for new
8398 internal buffer names.
8399
8400 2012-08-06 Glenn Morris <rgm@gnu.org>
8401
8402 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
8403 Do less getting and setting of environment variables.
8404
8405 2012-08-05 Chong Yidong <cyd@gnu.org>
8406
8407 * proced.el (proced): Add substitution string to docstring to
8408 trigger autoloading of the proced library on C-h f (Bug#1768).
8409
8410 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
8411 Don't show defvars which have no second argument (Bug#8638).
8412
8413 * imenu.el (imenu-generic-expression): Move documentation here
8414 from imenu--generic-function.
8415 (imenu--generic-function): Refer to imenu-generic-expression.
8416
8417 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
8418
8419 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
8420 indentation declaration.
8421 (viper-loop): Add indentation declaration (Bug#7025).
8422
8423 2012-08-05 Chong Yidong <cyd@gnu.org>
8424
8425 * help-fns.el (describe-variable): Add hyperlink for
8426 directory-local variables files. Improve buffer-local and
8427 permanent-local reporting; suggested by MON KEY (Bug#6644).
8428
8429 * help-mode.el (help-dir-local-var-def): New button type.
8430
8431 * files.el (kill-buffer-hook): Provide a defvar.
8432
8433 2012-08-05 Glenn Morris <rgm@gnu.org>
8434
8435 * eshell/esh-ext.el (eshell/addpath):
8436 Also update eshell-path-env. (Bug#12013)
8437
8438 2012-08-05 Chong Yidong <cyd@gnu.org>
8439
8440 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
8441
8442 * fringe.el (fringe-styles): Add docstring.
8443 (fringe--check-mode): New function.
8444 (set-fringe-mode, set-fringe-style): Use it.
8445 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
8446
8447 * files.el (set-auto-mode): Fix invalid setq call.
8448
8449 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
8450
8451 * isearch.el: Misc simplification; use defstruct.
8452 (isearch-mode-map): Dense maps now work like sparse ones.
8453 (isearch--state): New defstruct.
8454 (isearch-string-state, isearch-message-state, isearch-point-state)
8455 (isearch-success-state, isearch-forward-state)
8456 (isearch-other-end-state, isearch-word-state, isearch-error-state)
8457 (isearch-wrapped-state, isearch-barrier-state)
8458 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
8459 replaced by defstruct's accessors.
8460 (isearch--set-state): Rename from isearch-top-state and change
8461 calling convention.
8462 (isearch-push-state): Use new isearch--get-state.
8463 (isearch-toggle-word): Disable regexp when enabling word.
8464 (isearch-message-prefix): Remove unused arg _c-q-hack.
8465 (isearch-message-suffix): Remove unused arg _ellipsis.
8466
8467 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
8468
8469 * simple.el (list-processes--refresh): For a server use :host or
8470 :local as the address.
8471 (list-processes): Doc fix.
8472
8473 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
8474
8475 * lisp/mpc.el: Support password in host argument.
8476 (mpc--proc-connect): Parse and use new password element.
8477 Set mpc-proc variable instead of returning process.
8478 (mpc-proc): Adjust accordingly.
8479
8480 2012-08-03 Eli Zaretskii <eliz@gnu.org>
8481
8482 * whitespace.el (whitespace-display-mappings): Use Unicode
8483 codepoints, instead of emacs-mule codepoints. See
8484 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
8485 for the details.
8486
8487 * files.el (file-truename): Don't skip symlink-chasing part on
8488 windows-nt. Incorporate the resolution of 8+3 short aliases on
8489 Windows into the loop that recursively chases symlinks.
8490 Compare directory and its parent case-insensitively on MS-Windows and
8491 MS-DOS.
8492
8493 2012-08-03 Chong Yidong <cyd@gnu.org>
8494
8495 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
8496
8497 * sort.el (sort-regexp-fields): Doc fix.
8498
8499 2012-08-03 Tassilo Horn <tsdh@gnu.org>
8500
8501 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
8502 labels regex position point at the expected place.
8503
8504 2012-08-03 MON KEY <monkey@sandpframing.com>
8505
8506 * net/imap.el (imap-interactive-login, imap-authenticate)
8507 (imap-mailbox-lsub, imap-mailbox-list)
8508 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
8509 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
8510 (imap-parse-response): Doc fix.
8511
8512 2012-08-03 João Távora <joaotavora@gmail.com>
8513
8514 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
8515 if sexp scanning does not move point (Bug#5734).
8516
8517 2012-08-02 Tassilo Horn <tsdh@gnu.org>
8518
8519 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
8520 Add listings, minted, and ctable packages.
8521 (reftex-label-alist-builtin): Move listings, minted, and ctable
8522 entries before LaTeX.
8523 (reftex-label-alist): Docfix.
8524
8525 2012-08-02 Bastien Guerry <bzg@gnu.org>
8526
8527 * replace.el (occur): Fix docstring (bug#12122).
8528
8529 2012-08-02 Glenn Morris <rgm@gnu.org>
8530
8531 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
8532
8533 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8534
8535 Obsolete alias inactivate-current-input-method-function (Bug#10150).
8536 * international/mule-cmds.el: Create
8537 inactivate-current-input-method-function as an obsolete alias for
8538 deactivate-current-input-method-function. See Katsumi Yamaoka in
8539 <http://bugs.gnu.org/10150#46>.
8540
8541 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
8542
8543 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
8544 of nested `if's.
8545
8546 2012-08-01 Glenn Morris <rgm@gnu.org>
8547
8548 * progmodes/autoconf.el (autoconf-definition-regexp):
8549 Add AH_TEMPLATE, adjust submatch numbering.
8550 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
8551 (autoconf-current-defun-function): Update for above change.
8552 (autoconf-current-defun-function): First skip to end of current word.
8553
8554 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
8555
8556 * calendar/cal-html.el (cal-html-insert-agenda-days):
8557 Fix typo. (Bug#12018)
8558
8559 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
8560
8561 Shell processes: enhancements to startup and CEDET compatibility.
8562 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
8563 (python-shell-make-comint): accept-process-output at startup.
8564 (run-python-internal): Set inferior-python-mode-hook to nil.
8565 (python-shell-internal-get-or-create-process): call sit-for.
8566 (python-preoutput-result): Add obsolete alias.
8567 (python-shell-internal-send-string): Use it.
8568 (python-shell-send-setup-code): Remove call to
8569 accept-process-output.
8570
8571 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
8572
8573 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
8574 (Bug#12108)
8575
8576 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
8577
8578 * calc-mode.el (calc-basic-simplification-mode): Rename from
8579 `calc-limited-simplification-mode'.
8580 (calc-alg-simplification-mode): New function.
8581 (calc-set-simplify-mode): Adjust message.
8582
8583 * calc.el (calc-set-mode-line): Adjust mode line display for
8584 basic simplification mode.
8585
8586 * calc-help.el (calc-m-prefix-help): Update help message.
8587
8588 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
8589 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
8590
8591 2012-07-31 Bastien Guerry <bzg@gnu.org>
8592
8593 * man.el (man): Fix comment. (bug#12101)
8594
8595 2012-07-31 Martin Rudalics <rudalics@gmx.at>
8596
8597 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
8598 Don't return a non-nil value when no suitable buffer was found.
8599
8600 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
8601
8602 * progmodes/python.el (run-python-internal): Disable font lock for
8603 internal shells.
8604
8605 2012-07-30 Stefan Merten <smerten@oekonux.de>
8606
8607 * textmodes/rst.el: Silence `checkdoc-ispell'.
8608 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
8609 (rst-official-version, rst-official-cvs-rev)
8610 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
8611 (rst-mode-map): New key binding.
8612
8613 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8614
8615 Update .PHONY listings in makefiles.
8616 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
8617 autoloads, update-subdirs, updates, bzr-update, update-authors,
8618 compile-onefile, compile-calc, backup-compiled-files,
8619 compile-after-backup, compile-one-process, mh-autoloads,
8620 bootstrap-clean, distclean, maintainer-clean.
8621
8622 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
8623
8624 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
8625 (calc-set-mode-line): Don't display "AlgSimp ".
8626
8627 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
8628 (calc-lim-simplify-mode): New function.
8629 (calc-set-simplify-mode): Default to 'alg.
8630 (calc-default-simplify-mode): Make algebraic simplifications
8631 the default.
8632
8633 * calc/calc-ext.el (calc-init-extensions): Remove binding for
8634 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
8635
8636 * calc/calc-help.el (calc-m-prefix-help): Change messages to
8637 indicate new simplification modes.
8638
8639 * calc/README: Mention new default simplification mode.
8640
8641 * calc/calc.el (math-normalize-error): New variable.
8642 (math-normalize): Set `math-normalize-error' to t
8643 when there's an error.
8644
8645 * calc/calc-alg.el (math-simplify): Don't simplify when
8646 `math-normalize' returns an error.
8647
8648 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8649
8650 * international/mule-cmds.el (set-locale-environment): Revert last
8651 change, since display-graphic-p returns nil when this function is
8652 called during startup. Instead...
8653
8654 * term/w32console.el (terminal-init-w32console): ...setup the
8655 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
8656
8657 2012-07-29 Juri Linkov <juri@jurta.org>
8658
8659 * simple.el (goto-line): Don't display default line number in the
8660 prompt because it should be displayed by `read-number' (bug#9952).
8661 Add the current line number to the defaults of `goto-line' to
8662 allow its easier modification by users with `M-n' (bug#9201).
8663
8664 * subr.el (read-number): Support multiple default values like in
8665 other minibuffer reading functions. Replace `read' with
8666 `string-to-number' for consistency with `number-to-string'.
8667
8668 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8669
8670 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
8671 * emulation/viper-init.el (viper-deactivate-input-method-action):
8672 Rename from viper-inactivate-input-method-action.
8673 (viper-deactivate-input-method):
8674 Rename from viper-inactivate-input-method.
8675 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
8676 * international/mule-cmds.el (deactivate-input-method):
8677 Rename from inactivate-input-method.
8678 Also run input-method-deactivate-hook.
8679 (deactivate-current-input-method-function):
8680 Rename from inactivate-current-input-method-function.
8681 (input-method-deactivate-hook): New hook.
8682 (input-method-inactivate-hook): Mark obsolete.
8683 (inactivate-input-method): Mark obsolete.
8684
8685 * international/quail.el (quail-activate):
8686 Also run quail-deactivate-hook.
8687 (quail-deactivate): Rename from quail-inactivate.
8688 * international/robin.el (robin-activate):
8689 Also run robin-deactivate-hook.
8690 (robin-deactivate): Rename from robin-inactivate.
8691
8692 2012-07-29 Chong Yidong <cyd@gnu.org>
8693
8694 * simple.el (indicate-copied-region): New function.
8695 (kill-ring-save): Split off from here.
8696
8697 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
8698 (kill-rectangle): Set deactivate-mark to t on read-only error.
8699
8700 * register.el (copy-to-register, copy-rectangle-to-register):
8701 Deactivate the mark, and use indicate-copied-region (Bug#10056).
8702 (append-to-register, prepend-to-register): Call indicate-copied-region.
8703
8704 2012-07-29 Juri Linkov <juri@jurta.org>
8705
8706 * simple.el (async-shell-command-buffer): New defcustom.
8707 (shell-command): Use it. (Bug#4719)
8708
8709 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8710
8711 * international/mule-cmds.el (set-locale-environment): In a
8712 console session on MS-Windows, set up keyboard and terminal
8713 encoding from the OEM codepage, not the ANSI codepage.
8714 (Bug#12055)
8715
8716 2012-07-28 Chong Yidong <cyd@gnu.org>
8717
8718 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
8719 gdb-get-location.
8720
8721 2012-07-28 Leo Liu <sdl.web@gmail.com>
8722
8723 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
8724 the alist (bug#12029).
8725
8726 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8727
8728 * makefile.w32-in (custom-deps, finder-data, updates, compile)
8729 (compile-always, compile-first)
8730 ($(lisp)/calendar/cal-loaddefs.el)
8731 ($(lisp)/calendar/diary-loaddefs.el)
8732 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
8733 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
8734 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
8735 instead of on update-subdirs.
8736 (bootstrap-clean): Delete $(lisp)/subdirs.el.
8737
8738 2012-07-28 Chong Yidong <cyd@gnu.org>
8739
8740 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
8741 directory if vc-deduce-backend returns nil (Bug#7350).
8742
8743 * simple.el (delete-trailing-lines): New option.
8744 (delete-trailing-whitespace): Obey it (Bug#11879).
8745
8746 2012-07-28 David Engster <deng@randomsample.de>
8747
8748 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
8749 Explanation of new 'symbol-qnames feature in doc-strings.
8750 (xml-maybe-do-ns): Return expanded names as plain symbols if
8751 'symbol-qnames was provided in XML-NS argument (Bug#11916).
8752 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
8753
8754 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
8755
8756 Consistent completion in inferior python with emacs -nw.
8757 * progmodes/python.el (inferior-python-mode): replace "<tab>"
8758 binding in inferior-python-mode-map with "\t".
8759 (python-shell-completion-complete-at-point)
8760 (python-completion-complete-at-point): Remove interactive spec.
8761
8762 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
8763
8764 * calc/calccomp.el (math-compose-expr): Undo previous change.
8765
8766 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
8767
8768 * progmodes/python.el (python-mode-map): Add keybinding for
8769 run-python.
8770 (python-shell-make-comint): Fix pop-to-buffer call.
8771 (run-python): Autoload. New arg SHOW.
8772 (python-shell-get-or-create-process): Do not pop python process
8773 buffer.
8774
8775 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
8776
8777 * notifications.el (notifications-on-action-signal)
8778 (notifications-on-closed-signal): Use also the bus address for the map.
8779 (notifications-notify, notifications-close-notification)
8780 (notifications-get-capabilities): Add optional argument BUS.
8781
8782 2012-07-27 Tassilo Horn <tsdh@gnu.org>
8783
8784 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
8785 Add support for the lstlisting and minted environments, and for the
8786 ctable macro.
8787 * textmodes/reftex.el (reftex-compile-variables): Also recognize
8788 labels written in keyvals syntax.
8789
8790 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
8791
8792 * calc/calccomp.el (math-compose-expr): Use parentheses when
8793 there is a product in the denominator of a fraction.
8794
8795 2012-07-26 Eli Zaretskii <eliz@gnu.org>
8796
8797 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
8798 ($(lisp)/calendar/diary-loaddefs.el)
8799 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
8800 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
8801 Fixes failures in parallel bootstrap because subdirs.el is being
8802 rewritten while the autoload files are built at the same time,
8803 which needs to load subdirs.el.
8804
8805 2012-07-26 Martin Rudalics <rudalics@gmx.at>
8806
8807 * mouse.el (popup-menu): Fix doc-string and re-indent code.
8808 (mouse-drag-line): Don't exit tracking when a switch-frame or
8809 switch-window event occurs (Bug#12006).
8810
8811 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8812
8813 * mouse.el (popup-menu): Fix last change.
8814
8815 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8816
8817 Autoload from Lisp with more care. Follow aliases when looking for
8818 function properties.
8819 * subr.el (autoloadp): New function.
8820 (symbol-file): Use it.
8821 (function-get): New function.
8822 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
8823 autoload-do-load.
8824 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
8825 (lisp-indent-function):
8826 * emacs-lisp/gv.el (gv-get):
8827 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
8828 * emacs-lisp/byte-opt.el (byte-optimize-form):
8829 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
8830 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
8831 Use function-get.
8832 * emacs-lisp/cl.el: Don't propagate function properties any more.
8833
8834 * speedbar.el (speedbar-add-localized-speedbar-support):
8835 * emacs-lisp/disass.el (disassemble-internal):
8836 * desktop.el (desktop-load-file):
8837 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
8838 (describe-function-1):
8839 * emacs-lisp/find-func.el (find-function-noselect):
8840 * emacs-lisp/elp.el (elp-instrument-function):
8841 * emacs-lisp/advice.el (ad-has-proper-definition):
8842 * apropos.el (apropos-safe-documentation, apropos-macrop):
8843 * emacs-lisp/debug.el (debug-on-entry):
8844 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
8845 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
8846 * calc/calc.el (name): Use autoloadp & autoload-do-load.
8847
8848 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
8849
8850 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
8851 function, not an obsolete variable (Bug#12046).
8852
8853 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
8854
8855 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
8856
8857 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
8858
8859 * emacs-lisp/pp.el (pp-display-expression): Select old selected
8860 window only if it is still live (Bug#12034).
8861
8862 2012-07-25 Martin Rudalics <rudalics@gmx.at>
8863
8864 * subr.el (redirect-frame-focus): Add advertised calling
8865 convention (Bug#12030).
8866
8867 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
8868
8869 Prefer typical American spelling for "acknowledgment".
8870 * vc/add-log.el (change-log-acknowledgment): Rename from
8871 change-log-acknowledgement, with an alias for the old name.
8872
8873 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
8874
8875 * calc-alg.el (math-simplify-divide): Don't cross multiply
8876 in an equation when the lhs is a variable.
8877
8878 2012-07-24 Julien Danjou <julien@danjou.info>
8879
8880 * net/netrc.el (netrc-find-service-number, netrc-store-data):
8881 Remove, unused.
8882
8883 2012-07-23 Eli Zaretskii <eliz@gnu.org>
8884
8885 * startup.el (command-line): Don't display an empty user name in
8886 the error message about non-existent home directory, when
8887 init-file-user was set to an empty string. See
8888 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
8889 for the details and context.
8890
8891 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
8892
8893 * ses.el (ses-cell-formula-aset): New macro.
8894 (ses-cell-references-aset): New macro.
8895 (ses-cell-p): New function.
8896 (ses-rename-cell): Do no longer rely on complex operations like
8897 ses-cell-set-formula or ses-set-cell to change the cell and handle
8898 the undo at the same time, but rather use lower level new macros
8899 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
8900 the undo directly. Refresh the mode line.
8901
8902 2012-07-21 Leo Liu <sdl.web@gmail.com>
8903
8904 * progmodes/cc-cmds.el (c-defun-name):
8905 Use match-string-no-properties instead for consistency.
8906
8907 2012-07-20 Leo Liu <sdl.web@gmail.com>
8908
8909 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
8910 (Bug#7879)
8911
8912 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
8913
8914 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
8915
8916 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
8917 * progmodes/bug-reference.el, misearch.el: Provide themselves
8918 (bug#11915).
8919
8920 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
8921 of narrowed buffer (bug#11966).
8922
8923 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
8924
8925 * ses.el (ses-rename-cell): Set new name also in reference list of
8926 cells of which the renamed cell depends.
8927
8928 2012-07-20 Masatake YAMATO <yamato@redhat.com>
8929
8930 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
8931 to check whether menu-bar is shown or not. If not shown,
8932 show the menu-bar as a popup menu instead of using tmm.
8933 * mouse.el (popup-menu): Accept `point' as `position' argument.
8934
8935 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
8936
8937 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
8938 up inside string symbol literal (bug#11923).
8939
8940 2012-07-20 Eli Zaretskii <eliz@gnu.org>
8941
8942 * startup.el (fancy-startup-text): Read the whole tutorial, not
8943 just its first 256 bytes. Prevents gibberish in display of the
8944 tutorial title.
8945
8946 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8947
8948 Drop idle buffer compaction due to an absence of the
8949 proved efficiency.
8950 * compact.el: Remove.
8951
8952 2012-07-19 Sam Steingold <sds@gnu.org>
8953
8954 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
8955 vc-bzr-pull & vc-bzr-merge-branch.
8956 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
8957 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
8958 for consistency with compilation-error-regexp-alist.
8959 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
8960 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
8961 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
8962 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
8963
8964 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8965
8966 * emacs-lisp/chart.el: Use lexical-binding.
8967 (chart-emacs-storage): Don't hardcode the list of entries.
8968
8969 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8970
8971 Next round of tweaks caused by Fgarbage_collect changes.
8972 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
8973
8974 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8975
8976 Compact buffers when idle.
8977 * compact.el: New file.
8978
8979 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8980
8981 * subr.el (eventp): Presume that if it looks vaguely like an event,
8982 it's an event (bug#10190).
8983
8984 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
8985
8986 Enhancements to ppss related code (thanks Stefan).
8987 * progmodes/python.el (python-indent-context)
8988 (python-indent-calculate-indentation, python-indent-dedent-line)
8989 (python-indent-electric-colon, python-nav-forward-block)
8990 (python-mode-abbrev-table)
8991 (python-info-assignment-continuation-line-p): Simplify checks
8992 for ppss context.
8993 (python-info-continuation-line-p): Cleanup.
8994 (python-info-ppss-context): Do not catch 'quote.
8995 (python-info-ppss-context-type)
8996 (python-info-ppss-comment-or-string-p): Simplify.
8997
8998 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
8999
9000 * progmodes/python.el: Enhancements to eldoc support.
9001 (python-info-current-symbol): New function.
9002 (python-eldoc-at-point): Use python-info-current-symbol.
9003 (python-info-current-defun): Fix cornercase on first defun scan.
9004 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
9005 and signal error when no inferior python process is available.
9006
9007 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
9008
9009 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
9010 assume it's always t.
9011 (vc-git-registered): Remove caching, the function is only called
9012 once.
9013 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
9014
9015 2012-07-18 Chong Yidong <cyd@gnu.org>
9016
9017 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
9018
9019 * simple.el (count-words): Report on narrowing (Bug#9959).
9020
9021 * bindings.el: Bind M-= to count-words.
9022
9023 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
9024
9025 2012-07-18 Masatake YAMATO <yamato@redhat.com>
9026
9027 * progmodes/sh-script.el (sh-imenu-generic-expression):
9028 Capture a function with `function' keyword and without parentheses
9029 like "function FOO" (bug#11856).
9030
9031 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
9032
9033 * window.el (split-window-sensibly): Make WINDOW argument
9034 optional.
9035
9036 2012-07-18 Chong Yidong <cyd@gnu.org>
9037
9038 * subr.el (keyboard-translate): Doc fix (Bug#7261).
9039
9040 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
9041 and make C-x 8 RET exit isearch (Bug#11439).
9042
9043 * international/iso-transl.el: Move isearch-mode-map key
9044 definitions to isearch.el.
9045
9046 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9047
9048 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
9049 (eieio-defclass): Use gv-define-setter when possible.
9050
9051 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9052
9053 Reflect recent changes in Fgarbage_collect.
9054 * emacs-lisp/chart.el (chart-emacs-storage): Change to
9055 reflect new format of data returned by Fgarbage_collect.
9056
9057 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9058
9059 New utility functions + python-info-ppss-context fix (Bug#11910).
9060 * progmodes/python.el (python-info-beginning-of-block-statement-p)
9061 (python-info-ppss-comment-or-string-p): New functions.
9062 (python-info-ppss-context): Small fix for string check.
9063
9064 2012-07-17 Juri Linkov <juri@jurta.org>
9065
9066 * dired-aux.el (dired-do-async-shell-command): Doc fix.
9067 (dired-do-async-shell-command): Don't add `*' at the end of the
9068 command (Bug#11815).
9069 (dired-do-shell-command): Doc fix.
9070 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
9071 Join the individual commands using either "&" or ";" as the
9072 separator depending on the values of these trailing characters.
9073 At the end re-add the trailing "&". (Bug#10598)
9074
9075 * simple.el (async-shell-command): Sync the interactive spec with
9076 `shell-command'. Doc fix.
9077 (shell-command): Doc fix.
9078
9079 2012-07-17 Juri Linkov <juri@jurta.org>
9080
9081 * descr-text.el (describe-char): Fix format args. (Bug#10129)
9082
9083 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9084
9085 Final renames and doc fixes for movement commands (bug#11899).
9086 * progmodes/python.el (python-nav-beginning-of-statement):
9087 Rename from python-nav-statement-start.
9088 (python-nav-end-of-statement): Rename from
9089 python-nav-statement-end.
9090 (python-nav-beginning-of-block): Rename from
9091 python-nav-block-start.
9092 (python-nav-end-of-block): Rename from python-nav-block-end.
9093
9094 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9095
9096 * progmodes/python.el (python-shell-send-string-no-output):
9097 Allow accept-process-output to quit, keeping shell process ready for
9098 future interactions (Bug#11868).
9099
9100 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
9101
9102 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
9103
9104 * emacs-lisp/elint.el (elint-find-args-in-code):
9105 Use help-function-arglist, so as to handle lexical byte-code.
9106
9107 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
9108 change (bug#11826).
9109
9110 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
9111
9112 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
9113 Avoid spuriously marking the buffer as modified because of c-is-sws.
9114
9115 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
9116 as not-a-comment (bug#11946).
9117
9118 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
9119 for uninterned vars.
9120
9121 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
9122 Use read-event since we don't really want to read chars but bytes.
9123
9124 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
9125 $$..$$ but also $..$ using regexps (bug#11953).
9126 Use tex-verbatim for \url and \path.
9127 (tex-font-lock-keywords): Define as defconst like the others.
9128 (tex-common-initialization): Don't use font-lock-syntax-table any more.
9129
9130 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
9131
9132 * international/mule-cmds.el (ucs-insert): Make it an obsolete
9133 alias for insert-char.
9134
9135 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
9136
9137 * progmodes/python.el: Simplified imenu implementation.
9138 (python-nav-jump-to-defun): Remove command.
9139 (python-mode-map): Use `imenu' instead.
9140 (python-nav-list-defun-positions-cache)
9141 (python-imenu-include-defun-type, python-imenu-make-tree)
9142 (python-imenu-subtree-root-label, python-imenu-index-alist):
9143 Remove vars.
9144 (python-nav-list-defun-positions, python-nav-read-defun)
9145 (python-imenu-tree-assoc, python-imenu-make-element-tree)
9146 (python-imenu-make-tree, python-imenu-create-index):
9147 Remove functions.
9148 (python-mode): Update to interact with imenu by setting
9149 `imenu-extract-index-name-function' only.
9150
9151 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
9152
9153 * progmodes/python.el: Enhancements to navigation commands.
9154 (python-nav-backward-sentence)
9155 (python-nav-forward-sentence): Remove.
9156 (python-nav-backward-statement, python-nav-forward-statement)
9157 (python-nav-statement-start, python-nav-statement-end)
9158 (python-nav-backward-block, python-nav-forward-block)
9159 (python-nav-block-start, python-nav-block-end)
9160 (python-nav-forward-sexp-function)
9161 (python-info-current-line-comment-p)
9162 (python-info-current-line-empty-p): New functions.
9163 (python-indent-context): Use `python-nav-statement-start'.
9164
9165 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
9166
9167 * eshell/em-ls.el (eshell/ls): Use `apply'.
9168
9169 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
9170 multi-hops, instead of Tramp internals.
9171
9172 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
9173
9174 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
9175 when F1 and F2 are located on different hosts.
9176
9177 2012-07-14 Chong Yidong <cyd@gnu.org>
9178
9179 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
9180 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
9181 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
9182 (xterm-mouse--read-event-sequence-1000)
9183 (xterm-mouse--read-event-sequence-1006): New functions. For old
9184 mouse protocol, handle M-mouse-X events correctly.
9185 (xterm-mouse-event): New arg specifying mouse protocol.
9186 (turn-on-xterm-mouse-tracking-on-terminal)
9187 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
9188 sequence to toggle extended coordinates on newer XTerms.
9189 This appears to be harmless on terminals which do not support this.
9190
9191 2012-07-14 Leo Liu <sdl.web@gmail.com>
9192
9193 Add fringe bitmap indicators for flymake. (Bug#11253)
9194 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
9195 (flymake-make-overlay): New arg BITMAP.
9196 (flymake-error-bitmap, flymake-warning-bitmap)
9197 (flymake-fringe-indicator-position): New user variables.
9198
9199 * fringe.el: New bitmap exclamation-mark.
9200
9201 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
9202
9203 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
9204 also (Bug#7879).
9205
9206 2012-07-14 Chong Yidong <cyd@gnu.org>
9207
9208 * electric.el (electric-pair-post-self-insert-function): Fix pair
9209 insertion in empty-region case (Bug#11520).
9210
9211 2012-07-14 Chong Yidong <cyd@gnu.org>
9212
9213 * bindings.el: Consolidate ctl-x-r-map bindings.
9214 Bind copy-rectangle-as-kill to C-x r w.
9215
9216 * rect.el, register.el: Move bindings to bindings.el.
9217
9218 2012-07-14 Reuben Thomas <rrt@sc3d.org>
9219
9220 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
9221
9222 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
9223
9224 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
9225
9226 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
9227
9228 * bindings.el (top): Use `mapc' instead of `mapcar'.
9229
9230 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
9231
9232 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
9233
9234 * progmodes/sql.el (sql-comint): Suppress the check for program on
9235 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
9236 (Bug#11908)
9237
9238 2012-07-13 Chong Yidong <cyd@gnu.org>
9239
9240 * bindings.el: Assign a non-nil permanent-local property to
9241 per-buffer variables which lack a default value (Bug#11930).
9242
9243 * help-fns.el (describe-variable): In the "automatically becomes
9244 local" notice, take note of permanent-local variables.
9245
9246 2012-07-13 Chong Yidong <cyd@gnu.org>
9247
9248 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
9249 to allow printing the message when called from Lisp.
9250
9251 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9252 Remove toggle-read-only.
9253
9254 * bs.el (bs-toggle-readonly):
9255 * buff-menu.el (Buffer-menu-toggle-read-only):
9256 Remove with-no-warnings around toggle-read-only.
9257
9258 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
9259 Remove with-no-warnings around toggle-read-only.
9260 (ffap-read-only, ffap-read-only-other-window)
9261 (ffap-read-only-other-frame): Callers changed.
9262
9263 * help-mode.el: Don't require view package.
9264 (help-mode-finish): Set buffer-read-only instead of calling
9265 toggle-read-only.
9266
9267 * bindings.el (mode-line-toggle-read-only):
9268 * dired.el (dired-toggle-read-only):
9269 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
9270 with non-nil second arg.
9271
9272 * emacs-lisp/eieio-custom.el (eieio-customize-object):
9273 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
9274 directly.
9275
9276 2012-07-12 Eli Zaretskii <eliz@gnu.org>
9277
9278 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
9279 not incf.
9280
9281 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
9282
9283 More CL cleanups and reduction of use of cl.el.
9284 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
9285 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
9286 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
9287 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
9288 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
9289 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
9290 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
9291 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
9292 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
9293 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
9294 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
9295 * eshell/em-cmpl.el, eshell/em-banner.el:
9296 * calendar/parse-time.el: Use cl-lib.
9297 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
9298 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
9299 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
9300 * term/ns-win.el, term.el, shell.el, ps-samp.el:
9301 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
9302 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
9303 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
9304 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
9305 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
9306 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
9307 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
9308 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
9309 `lambda' rather than with `quote'.
9310 (eshell-do-opt): Adjust accordingly.
9311 (eshell-process-option): Simplify.
9312 * eshell/esh-var.el:
9313 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
9314 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
9315 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
9316 to `pcase--dontcare'.
9317 * emacs-lisp/cl.el (labels): Mark obsolete.
9318 (cl--letf, letf): Move to cl-lib.
9319 (cl--letf*, letf*): Remove.
9320 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
9321 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
9322 (cl-progv): Rewrite.
9323 (cl--letf, cl-letf): Move from cl.el.
9324 (cl-letf*): New macro.
9325 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
9326
9327 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
9328
9329 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
9330
9331 2012-07-11 Chong Yidong <cyd@gnu.org>
9332
9333 * vc/log-edit.el (log-edit-vc-backend): New variable.
9334 (log-edit): Doc fix.
9335
9336 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
9337 argument of log-edit to set up all local variables.
9338 (vc-start-logentry): New optional arg specifying VC backend.
9339
9340 * vc/vc.el (vc-checkin): Use it.
9341 (vc-deduce-fileset): Handle Log Edit buffers.
9342 (vc-diff): Make first argument optional too.
9343
9344 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
9345
9346 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
9347
9348 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
9349 command, just in case. The function is not needed anymore.
9350 (eshell-external-command): Do not call `eshell-remote-command'.
9351
9352 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
9353
9354 Reduce use of (require 'cl).
9355 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
9356 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
9357 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
9358 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
9359 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
9360 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
9361 * battery.el, avoid.el, abbrev.el: Use cl-lib.
9362 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
9363 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
9364 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
9365 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
9366 * calculator.el, autorevert.el, apropos.el: Don't require CL.
9367 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
9368 (byte-compile-unfold-bcf, byte-compile-check-variable):
9369 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
9370 (byte-compile-nilconstp):
9371 * emacs-lisp/autoload.el (make-autoload): Use pcase.
9372 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
9373
9374 * emacs-lisp/gv.el (cond): Make it a valid place.
9375 (if): Simplify slightly.
9376
9377 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
9378 (pcase--self-quoting-p): New function.
9379 (pcase--u1): Use it.
9380
9381 2012-07-10 Glenn Morris <rgm@gnu.org>
9382
9383 * emacs-lisp/authors.el (authors-fixed-entries):
9384 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
9385
9386 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
9387
9388 Rename configure.in to configure.ac (Bug#11603).
9389 * emacs-lisp/authors.el (authors-canonical-file-name):
9390 * progmodes/autoconf.el (autoconf-mode):
9391 Prefer configure.ac to configure.in.
9392
9393 2012-07-08 Chong Yidong <cyd@gnu.org>
9394
9395 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
9396 Implement the mouse-1-click-follows-link handling properly.
9397
9398 * info.el (Info-link-keymap): Use follow-link mechanism for
9399 header-line links (Bug#374).
9400
9401 * simple.el (deactivate-mark): Do not set the primary selection
9402 if another program has acquired it (Bug#11772).
9403
9404 2012-07-07 Kevin Ryde <user42@zip.com.au>
9405
9406 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
9407 (woman-decode-region): Replace escaped-escapes without destroying
9408 bold or underline (Bug#11552).
9409 (woman2-process-escapes): Handle nofill regions (Bug#11591).
9410
9411 2012-07-07 Chong Yidong <cyd@gnu.org>
9412
9413 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
9414 (interprogram-cut-function, interprogram-paste-function):
9415 Mention that we typically mean the clipboard.
9416
9417 2012-07-06 Glenn Morris <rgm@gnu.org>
9418
9419 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
9420
9421 * files.el (toggle-read-only): Restrict message to interactive use.
9422
9423 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
9424
9425 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
9426
9427 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
9428
9429 2012-07-06 Glenn Morris <rgm@gnu.org>
9430
9431 * Makefile.in (compile-one-process): Rename from "recompile".
9432
9433 * Makefile.in (bzr-update): "compile" is the same as "recompile
9434 autoloads", but parallelizable, so use that instead.
9435
9436 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
9437
9438 * window.el (quit-window): Always restore window height when
9439 it's saved in quit-restore parameter (Bug#11810).
9440
9441 2012-07-06 Glenn Morris <rgm@gnu.org>
9442
9443 * simple.el (kill-whole-line): Doc tweak.
9444
9445 2012-07-06 Eli Zaretskii <eliz@gnu.org>
9446
9447 * files.el (file-relative-name): Compare file names
9448 case-insensitively if on MS-Windows or MS-DOS, or if
9449 read-file-name-completion-ignore-case is non-nil. Don't use
9450 case-fold-search for this purpose. (Bug#11827)
9451
9452 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9453
9454 * calendar/cal-dst.el (calendar-current-time-zone):
9455 Return calendar-current-time-zone-cache if non-nil.
9456
9457 2012-07-17 Masatake YAMATO <yamato@redhat.com>
9458 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
9459
9460 * calendar/cal-dst.el (calendar-current-time-zone):
9461 Return calendar-current-time-zone-cache if non-nil.
9462
9463 2012-07-06 Glenn Morris <rgm@gnu.org>
9464
9465 * Makefile.in (cvs-update): Remove old alias.
9466
9467 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
9468
9469 Sync with Tramp 2.2.6-pre.
9470
9471 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
9472 compatible declaration.
9473
9474 * net/tramp-cmds.el (tramp-append-tramp-buffers):
9475 Protect `list-load-path-shadows' call.
9476
9477 * net/tramp-compat.el (top): Require packages, which aren't
9478 autoloaded anymore for XEmacs. Protect call of
9479 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
9480 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
9481 it hurts at least for SXEmacs.
9482 (tramp-compat-temporary-file-directory): In XEmacs, there is no
9483 standard-value for `temporary-file-directory'.
9484
9485 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
9486 Redirect stderr to /dev/null.
9487 (tramp-sh-handle-write-region): uid and gid can be floats.
9488 Reported by Russell Sim <russell.sim@gmail.com>.
9489 (tramp-sh-handle-vc-registered): Hide errors.
9490 (tramp-vc-file-name-handler): Use dummy results for `process-file'
9491 and `start-file-process'.
9492 (tramp-maybe-open-connection): Check also whether `non-essential'
9493 is bound.
9494
9495 2012-07-04 Chong Yidong <cyd@gnu.org>
9496
9497 * xml.el (xml--parse-buffer): Use xml-syntax-table.
9498 (xml-parse-tag): Likewise, and avoid changing entity tables.
9499 (xml-syntax-table): Define from scratch, making sure not to give
9500 x2000 and other Unicode spaces whitespace syntax, since those are
9501 not spaces in XML.
9502 (xml-parse-fragment): Delete unused function.
9503 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
9504 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
9505 (xml-entity-ref, xml-pe-reference-re)
9506 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
9507 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
9508 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
9509 (xml-entity-value-re): Use syntax references in regexps where
9510 possible; no need to define inside a let-binding.
9511 (xml-parse-dtd): Use xml-pe-reference-re.
9512 (xml-entity-or-char-ref-re): New defconst.
9513 (xml-parse-string, xml-substitute-special): Use it.
9514
9515 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9516
9517 * files.el (locate-dominating-file): Allow `name' to be a predicate.
9518 (find-file--read-only): New function.
9519 (find-file-read-only, find-file-read-only-other-window)
9520 (find-file-read-only-other-frame): Use it.
9521 (insert-file-contents-literally): Don't `fset'.
9522 (get-free-disk-space): Use locate-dominating-file.
9523
9524 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
9525 function is already compiled.
9526
9527 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
9528
9529 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
9530
9531 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
9532 files on the same host.
9533
9534 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
9535
9536 * help-fns.el (describe-function-1): Only call
9537 help-fns--autoloaded-p when we have a file name. (Bug#11848)
9538
9539 2012-07-03 Chong Yidong <cyd@gnu.org>
9540
9541 * xml.el: Protect parser against XML bombs.
9542 (xml-entity-expansion-limit): New variable.
9543 (xml-parse-string, xml-substitute-special): Use it.
9544 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
9545
9546 2012-07-03 Glenn Morris <rgm@gnu.org>
9547
9548 * progmodes/bug-reference.el (bug-reference-bug-regexp):
9549 Allow linking to specific messages in debbugs reports (eg 123#5).
9550
9551 2012-07-02 Chong Yidong <cyd@gnu.org>
9552
9553 * xml.el: Fix entity and character reference expansion, allowing
9554 them to expand into markup as per XML spec.
9555 (xml-default-ns): New variable.
9556 (xml-entity-alist): Use XML spec definitions for lt and amp.
9557 (xml-parse-region): Make first two arguments optional.
9558 Discard text properties.
9559 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
9560 All callers changed.
9561 (xml-parse-tag): Call xml-parse-tag-1. For backward
9562 compatibility, this function should not modify buffer contents.
9563 (xml-parse-tag-1): Fix opening-tag regexp.
9564 (xml-parse-string): Rewrite, handling entity and character
9565 references properly.
9566 (xml--entity-replacement-text): Signal an error if a parameter
9567 entity is undefined.
9568
9569 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
9570
9571 * comint.el (comint-output-filter): Filter out repeated prompts.
9572
9573 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
9574 and file-name-absolute-p.
9575 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
9576 internal calls.
9577
9578 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
9579
9580 Spelling fixes.
9581 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
9582 Rename from byte-compile--refiy-function. All uses changed.
9583
9584 2012-07-01 Chong Yidong <cyd@gnu.org>
9585
9586 * xml.el (xml--parse-buffer): New function. Move most of
9587 xml-parse-region here.
9588 (xml-parse-region): Copy region into a temporary buffer, since
9589 parameter entity substitution requires changing buffer contents.
9590 Use xml--parse-buffer.
9591 (xml-parse-file): Use xml--parse-buffer.
9592 (xml-parse-dtd): Make parameter entity substitution work right.
9593 Use proper regexps for ELEMENT declarations (Bug#7172).
9594
9595 2012-06-30 Glenn Morris <rgm@gnu.org>
9596
9597 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
9598
9599 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
9600 Remove outdated and unnecessary dbus declarations.
9601
9602 2012-06-30 Eli Zaretskii <eliz@gnu.org>
9603
9604 * emacs-lisp/timer.el (timer-until): Subtract results of
9605 float-time, instead of taking float-time of the result of
9606 time-subtract, since float-time signals an error for negative time
9607 arguments.
9608
9609 2012-06-30 Chong Yidong <cyd@gnu.org>
9610
9611 * xml.el (xml-*-re): Convert defvars into defconsts, and
9612 eval-and-compile them so eval-and-compile works on derivatives.
9613 (xml--entity-replacement-text): Use eval-and-comple.
9614
9615 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
9616
9617 * vc/vc-git.el (vc-git-registered): Use cache property
9618 `git-registered'.
9619 (vc-git-mode-line-string): Call `vc-working-revision' instead of
9620 `vc-git-working-revision' in order to benefit from the cache.
9621 (vc-git-root): Use cache property `git-root'. (Bug#11757)
9622
9623 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
9624
9625 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
9626 removed (likely outside Emacs). (Bug#11757)
9627
9628 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
9629
9630 * emacs-lisp/cl-lib.el: Require macroexp.
9631
9632 2012-06-30 Chong Yidong <cyd@gnu.org>
9633
9634 * xml.el: Implement XML parameter entities.
9635 (xml-parameter-entity-alist): New variable.
9636 (xml-parse-region, xml-parse-fragment): Preserve previous values
9637 of xml-entity-alist and xml-parameter-entity-alist, so that
9638 repeated calls on different documents do not change them.
9639 (xml-parse-tag): Fix doctype regexp.
9640 (xml--entity-replacement-text): New function.
9641 (xml-parse-dtd): Use it. Don't handle system entities; doing that
9642 properly requires url retrieval which is unimplemented.
9643 (xml-escape-string): Doc fix.
9644
9645 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
9646
9647 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
9648
9649 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
9650
9651 * fringe.el (fringe-mode): Doc fix.
9652
9653 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
9654
9655 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
9656 is non-nil.
9657 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
9658 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
9659
9660 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
9661
9662 * calendar/cal-dst.el (calendar-current-time-zone):
9663 Return calendar-current-time-zone-cache if non-nil.
9664
9665 2012-06-29 Masatake YAMATO <yamato@redhat.com>
9666
9667 * progmodes/which-func.el (which-func-format):
9668 Add mouse-face. (Bug#11698)
9669
9670 2012-06-29 Leo Liu <sdl.web@gmail.com>
9671
9672 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
9673
9674 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
9675
9676 * minibuffer.el (minibuffer-confirm-exit-commands):
9677 Add completion-at-point (bug#11725).
9678
9679 2012-06-29 Glenn Morris <rgm@gnu.org>
9680
9681 * progmodes/f90.el (f90-font-lock-keywords-2):
9682 Add some preprocessor elements. (Bug#10499)
9683
9684 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
9685
9686 * progmodes/cperl-mode.el (cperl-update-syntaxification):
9687 Use syntax-propertize (bug#11739).
9688
9689 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
9690
9691 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
9692
9693 2012-06-28 Julien Danjou <julien@danjou.info>
9694
9695 * term.el (term-handle-colors-array): Use a set of new faces to
9696 color the terminal. Also uses :inverse-video property.
9697 (term-default-fg-color): Set to nil by default, deprecate in favor
9698 of `term-face'.
9699 (term-default-bg-color): Set to nil by default, deprecate in favor
9700 of `term-face'.
9701 (term-current-face): Use `term-face' by default.
9702 (term-bold-attribute): Variable deleted.
9703
9704 2012-06-28 Glenn Morris <rgm@gnu.org>
9705
9706 * simple.el (completion-list-mode-finish):
9707 Don't use toggle-read-only. (Since completion-list-mode has
9708 a special mode-class, it wasn't doing anything extra anyway.)
9709
9710 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
9711
9712 Make inlining of other-mode interpreted functions work (bug#11799).
9713 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
9714 (byte-compile): Use it to fix compilation of lexical-binding closures.
9715 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
9716 function, if needed.
9717
9718 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
9719
9720 * help-mode.el (help-make-xrefs): Don't just withstand
9721 cyclic-variable-indirection but any error in documentation-property.
9722
9723 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
9724 memory use.
9725 * bindings.el (bindings--define-key): New function.
9726 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
9727 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
9728 * bindings.el: Use it to purecopy define-key bindings.
9729
9730 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
9731
9732 * emacs-lisp/cl.el (flet): Mark obsolete.
9733 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
9734 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
9735 * progmodes/js.el (js-c-fill-paragraph):
9736 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
9737 (ebrowse-switch-member-buffer-to-derived-class):
9738 * play/5x5.el (5x5-solver): Use cl-flet.
9739
9740 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
9741 (cl--symbol-function): New macro.
9742 (cl--letf, cl--letf*): Use it.
9743
9744 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
9745 Strip "toggle-" if any.
9746
9747 2012-06-27 Glenn Morris <rgm@gnu.org>
9748
9749 * info.el (Info-default-directory-list): Move here from paths.el.
9750 * paths.el: Remove file, which is now empty.
9751 * loadup.el: No longer load "paths".
9752
9753 * custom.el (custom-initialize-delay): Doc fix.
9754
9755 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
9756 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
9757 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
9758 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
9759 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
9760 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
9761 * eshell/eshell.el (eshell-defgroup): Remove alias.
9762
9763 2012-06-27 Chong Yidong <cyd@gnu.org>
9764
9765 * help.el (help-enable-auto-load): New variable.
9766
9767 * help-fns.el (help-fns--autoloaded-p): New function.
9768 (describe-function-1): Refer to a function as "autoloaded" if it
9769 was autoloaded at any time in the past. Perform autoloading if
9770 help-enable-auto-load is non-nil.
9771
9772 2012-06-26 Eli Zaretskii <eliz@gnu.org>
9773
9774 * makefile.w32-in (compile, compile-always): Depend on
9775 update-subdirs, not on subdirs.el. Otherwise, several different
9776 sub-targets of 'bootstrap' running in parallel could
9777 simultaneously write to subdirs.el, producing a garbled file.
9778
9779 2012-06-26 Sam Steingold <sds@gnu.org>
9780
9781 * files.el (file-name-base): New convenience function.
9782 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
9783 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
9784 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
9785 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
9786 * textmodes/ispell.el, textmodes/reftex-ref.el:
9787 * textmodes/tex-mode.el: Use it.
9788 Did not touch cedet and org because they are maintained elsewhere.
9789
9790 2012-06-26 Martin Rudalics <rudalics@gmx.at>
9791
9792 * calendar/calendar.el (calendar-exit): Don't try to delete or
9793 iconify last frame. See:
9794 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
9795
9796 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
9797
9798 * server.el (server-process-filter): Remember dir in the
9799 process's `server-client-directory' properties.
9800
9801 2012-06-24 Chong Yidong <cyd@gnu.org>
9802
9803 * xml.el (xml-parse-tag): Correctly handle comment embedded in
9804 non-tag text.
9805
9806 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
9807
9808 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
9809
9810 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
9811
9812 * help-fns.el (describe-variable): Don't croak when doc is not found.
9813 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
9814 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
9815 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
9816 * emacs-lisp/smie.el (smie-next-sexp): CSE.
9817 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
9818 ((lambda ..) ..).
9819 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
9820
9821 2012-06-23 Chong Yidong <cyd@gnu.org>
9822
9823 * info.el (Info-mouse-follow-link): Accept symbol values of
9824 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
9825 (Info-fontify-node): Use Info-link-keymap for all navigation
9826 buttons, with link-args property to perform the desired action.
9827 (Info-link-keymap): Doc fix.
9828 (Info-next-link-keymap, Info-prev-link-keymap)
9829 (Info-up-link-keymap): Delete now-unused keymaps.
9830
9831 2012-06-23 Chong Yidong <cyd@gnu.org>
9832
9833 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
9834
9835 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
9836 system abbrevs.
9837
9838 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
9839
9840 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
9841
9842 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
9843 (bug#11719).
9844
9845 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
9846 the requote function doesn't work properly (bug#11714).
9847
9848 2012-06-23 Glenn Morris <rgm@gnu.org>
9849
9850 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
9851
9852 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
9853
9854 Further GV/CL cleanups.
9855 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
9856 gv-expander.
9857 (gv--defun-declaration): New function.
9858 (defun-declarations-alist): Use it.
9859 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
9860 (gv-place): Autoload.
9861 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
9862 original definition of dotimes and dolist.
9863 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
9864 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
9865 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
9866 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
9867 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
9868 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
9869 to the function's definition.
9870 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
9871 * window.el:
9872 * files.el:
9873 * faces.el:
9874 * env.el: Don't use CL.
9875
9876 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
9877
9878 Support higher-resolution time stamps (Bug#9000).
9879
9880 * calendar/time-date.el (with-decoded-time-value): New arg
9881 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
9882 (encode-time-value): New optional arg PICO. New type 3.
9883 (time-to-seconds) [!float-time]: Support the new picoseconds
9884 component if it's used.
9885 (seconds-to-time, time-subtract, time-add):
9886 Support ps-resolution time stamps as well.
9887
9888 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
9889 (timerp): Timer vectors now have length 9, not 8.
9890 (timer--time): Support new-style (4-part) time stamps.
9891 (timer-next-integral-multiple-of-time): Time stamps now have
9892 picosecond resolution, so take a bit more care about rounding.
9893 (timer-relative-time, timer-inc-time): New optional arg psecs.
9894 (timer-set-time-with-usecs): Set psecs to 0.
9895 (timer--activate): Check psecs component, too.
9896
9897 * proced.el (proced-time-lessp): Support ps-resolution stamps.
9898
9899 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
9900
9901 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
9902 Move the non-essential binding to the post/pre-command-hook where it is
9903 more obviously correct.
9904
9905 * subr.el (read-passwd): Don't use a history at all.
9906 * savehist.el (savehist-save): Remove password saved accidentally
9907 because of the above bug.
9908
9909 2012-06-22 Bastien Guerry <bzg@gnu.org>
9910
9911 * files.el (toggle-read-only): Display a message telling whether
9912 the buffer is read-only or not (bug#11726).
9913
9914 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
9915
9916 * emacs-lisp/gv.el: New file.
9917 * subr.el (push, pop): Extend to generalized variables.
9918 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
9919 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
9920 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
9921 gv-define-simple-setter, and gv-define-expander.
9922 Remove setf-methods defined in gv. Rename cl-setf -> setf.
9923 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
9924 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
9925 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
9926 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
9927 gv-letplace.
9928 (cl-defstruct): Don't define setf-method any more.
9929 * emacs-lisp/cl.el (flet): Don't autoload.
9930 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
9931 (define-setf-expander, defsetf, define-modify-macro)
9932 (cl-struct-setf-expander): Move from cl-lib.el.
9933 * emacs-lisp/syntax.el:
9934 * emacs-lisp/ewoc.el:
9935 * emacs-lisp/smie.el:
9936 * emacs-lisp/cconv.el:
9937 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
9938 (timer--time): Use gv-define-simple-setter.
9939 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
9940 to avoid coding-system problems in subr.el. Adjust all users.
9941 (macroexp--maxsize, macroexp-small-p): New functions.
9942 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
9943 * scroll-bar.el (scroll-bar-mode):
9944 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
9945 (normal-erase-is-backspace-mode): Don't use the `eq' place.
9946 * winner.el (winner-configuration, winner-make-point-alist)
9947 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
9948 * files.el (locate-file-completion-table): Avoid list*.
9949
9950 2012-06-22 Chong Yidong <cyd@gnu.org>
9951
9952 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
9953 (dired-create-files): Doc fix (Bug#11329).
9954 (dired-do-copy): Doc fix (Bug#11334).
9955 (dired-mark-read-string): Doc fix (Bug#11553).
9956
9957 * dired.el (dired-recursive-copies, dired-recursive-deletes):
9958 Doc fix (Bug#11326).
9959 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
9960 (dired-dwim-target): Doc fix.
9961
9962 * wdired.el (wdired-mode): Doc fix.
9963
9964 2012-06-22 Glenn Morris <rgm@gnu.org>
9965
9966 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
9967 (pcmpl-rpm-cache-stamp-file): New constant.
9968 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
9969 (pcmpl-rpm-packages): Optionally cache list of packages.
9970
9971 * pcmpl-rpm.el (pcmpl-rpm): New group.
9972 (pcmpl-rpm-query-options): New option.
9973 (pcmpl-rpm-packages): No need to inline it.
9974 Use pcmpl-rpm-query-options.
9975
9976 * calendar/calendar.el (calendar-in-read-only-buffer):
9977 Avoid some needless mode changes.
9978
9979 2012-06-21 Chong Yidong <cyd@gnu.org>
9980
9981 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
9982 (desktop-path): Remove . from the default value (Bug#10977).
9983 (desktop-read): Use user-emacs-directory if desktop-path is nil.
9984
9985 2012-06-20 Chong Yidong <cyd@gnu.org>
9986
9987 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
9988
9989 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
9990
9991 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
9992 (bug#11201).
9993
9994 2012-06-20 Chong Yidong <cyd@gnu.org>
9995
9996 * term.el (term-window-width): Handle the case of a missing right
9997 fringe (Bug#8837).
9998 (term-check-size): Use window-text-height (Bug#5445).
9999 (term-mode): Use define-derived-mode. Minor cleanups.
10000 Set font-lock-defaults (Bug#7692).
10001 (term-move-columns, term-insert-char, term-emulate-terminal)
10002 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
10003
10004 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
10005
10006 * net/ange-ftp.el (ange-ftp-get-passwd):
10007 Bind `enable-recursive-minibuffers'.
10008 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
10009
10010 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
10011
10012 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
10013
10014 2012-06-19 Glenn Morris <rgm@gnu.org>
10015
10016 * progmodes/python.el (python-mode): Derive from prog-mode.
10017
10018 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
10019
10020 * emulation/edt.el (edt-default-menu-bar-update-buffers)
10021 (edt-user-menu-bar-update-buffers): New functions.
10022 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
10023
10024 2012-06-19 Chong Yidong <cyd@gnu.org>
10025
10026 * subr.el (with-selected-window): Preserve the selected window's
10027 terminal's top-frame (Bug#4702).
10028
10029 * window.el (save-selected-window): Likewise.
10030
10031 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10032
10033 * progmodes/python.el (python-rx-constituents): Move backquote.
10034 (python-skeleton-define, python-define-auxiliary-skeleton):
10035 Use `declare'.
10036
10037 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
10038
10039 * minibuffer.el (read-file-name-default): Revert the patch from
10040 2012-06-17.
10041
10042 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10043
10044 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
10045 (pcase--u1, pcase--q1): Don't use apply-partially.
10046
10047 2012-06-18 Glenn Morris <rgm@gnu.org>
10048
10049 * progmodes/python.el (python-proc, python-buffer)
10050 (python-send-receive, python-send-string): Fix obsolete versions.
10051
10052 2012-06-18 Martin Rudalics <rudalics@gmx.at>
10053
10054 * window.el (special-display-p): Completely remove stringp
10055 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
10056
10057 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
10058
10059 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
10060
10061 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
10062
10063 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
10064 * net/tramp-sh.el (tramp-maybe-open-connection):
10065 Throw if `non-essential' is non-nil.
10066
10067 2012-06-17 Martin Rudalics <rudalics@gmx.at>
10068
10069 * window.el (special-display-p): Signal an error if BUFFER-NAME
10070 is not a string (Bug#11713).
10071
10072 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
10073
10074 * progmodes/python.el (python-info-beginning-of-backslash):
10075 Rename from python-info-beginning-of-backlash, as a spelling fix.
10076
10077 2012-06-17 Chong Yidong <cyd@gnu.org>
10078
10079 * term.el (term-emulate-terminal): If term-check-size is called,
10080 move point to the process mark without resetting point (Bug#4635).
10081
10082 2012-06-17 Glenn Morris <rgm@gnu.org>
10083
10084 * international/mule-cmds.el (mule-menu-keymap)
10085 (set-language-environment, set-locale-environment): Doc tweaks.
10086
10087 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
10088
10089 * cus-face.el (custom-face-attributes): Add wave-style underline
10090 attribute.
10091 * faces.el (set-face-attribute): Update docstring to describe
10092 wave-style underline attribute.
10093
10094 2012-06-16 Chong Yidong <cyd@gnu.org>
10095
10096 * term/xterm.el (terminal-init-xterm): Discard input before
10097 querying background mode (Bug#10959).
10098
10099 2012-06-16 Stefan Merten <smerten@oekonux.de>
10100
10101 * textmodes/rst.el: Added and corrected some comments.
10102 (rst-re-alist-def): Improve symbol syntax.
10103 (rst-mode-syntax-table): Correct syntax entries.
10104 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
10105 (rst-official-version, rst-official-cvs-rev): Update version
10106 information.
10107
10108 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
10109
10110 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
10111 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
10112
10113 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
10114
10115 * progmodes/python.el: New python.el merge.
10116 (python-guess-indent): Obsolete var.
10117 (python-indent-guess-indent-offset): New defcustom.
10118 (python-indent): Obsolete var.
10119 (python-indent-offset): New defcustom.
10120 (python-python-command, python-jython-command): Delete var.
10121 (python-shell-interpreter): New defcustom.
10122 (python-pdbtrack-do-tracking-p): Delete var.
10123 (python-pdbtrack-activate): New defcustom.
10124 (python-use-skeletons): Obsolete var.
10125 (python-skeleton-autoinsert): New defcustom.
10126 (inferior-python-filter-regexp, python-continuation-offset)
10127 (python-honour-comment-indentation, python-indent-string-contents)
10128 (python-jython-packages, python-mode-hook)
10129 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
10130 (python-shell-prompt-alist)
10131 (python-source-modes): Delete defcustoms.
10132 (python-check-buffer-name, python-eldoc-setup-code)
10133 (python-eldoc-string-code, python-ffap-setup-code)
10134 (python-ffap-string-code, python-fill-comment-function)
10135 (python-fill-decorator-function, python-fill-paren-function)
10136 (python-fill-string-function, python-imenu-include-defun-type)
10137 (python-imenu-make-tree, python-imenu-subtree-root-label)
10138 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
10139 (python-shell-compilation-regexp-alist)
10140 (python-shell-completion-module-string-code)
10141 (python-shell-completion-pdb-string-code)
10142 (python-shell-completion-setup-code)
10143 (python-shell-completion-string-code)
10144 (python-shell-enable-font-lock, python-shell-exec-path)
10145 (python-shell-extra-pythonpaths)
10146 (python-shell-internal-buffer-name, python-shell-interpreter-args)
10147 (python-shell-process-environment)
10148 (python-shell-prompt-block-regexp)
10149 (python-shell-prompt-output-regexp)
10150 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
10151 (python-shell-send-setup-max-wait, python-shell-setup-codes)
10152 (python-shell-virtualenv-path): New defcustoms.
10153 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
10154 (inferior-python-mode-syntax-table, python--prompt-regexp)
10155 (python-buffer, python-command python-python-command)
10156 (python-default-template, python-imports, python-indent-index)
10157 (python-indent-list, python-indent-list-length)
10158 (python-mode-running, python-pdbtrack-is-tracking-p)
10159 (python-preoutput-continuation, python-preoutput-leftover)
10160 (python-preoutput-result, python-preoutput-skip-next-prompt)
10161 (python-prev-dir/file, python-recursing)
10162 (python-saved-check-command, python-version-checked)
10163 (python-which-func-length-limit)
10164 (view-return-to-alist): Delete vars.
10165 (python-check-custom-command, python-dotty-syntax-table)
10166 (python-imenu-index-alist, python-indent-current-level)
10167 (python-indent-dedenters, python-indent-levels)
10168 (python-nav-beginning-of-defun-regexp)
10169 (python-nav-list-defun-positions-cache)
10170 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
10171 (python-shell-internal-buffer)
10172 (python-skeleton-available): New vars.
10173 (def-python-skeleton): Delete macro.
10174 (python-skeleton-define): New macro.
10175 (python-define-auxiliary-skeleton, python-rx): New macros.
10176 (python-insert-class): Delete command.
10177 (python-skeleton-class): New command.
10178 (python-insert-def): Delete command.
10179 (python-skeleton-def): New command.
10180 (python-insert-for): Delete command.
10181 (python-skeleton-for): New command.
10182 (python-insert-if): Delete command.
10183 (python-skeleton-if): New command.
10184 (python-insert-try/except, python-insert-try/finally): Delete commands.
10185 (python-skeleton-try): New command.
10186 (python-insert-while): Delete command.
10187 (python-skeleton-while): New command.
10188 (python-backspace): Delete command.
10189 (python-indent-dedent-line-backspace): New command.
10190 (python-electric-colon): Delete command.
10191 (python-indent-electric-colon): New command.
10192 (python-guess-indent): Delete command.
10193 (python-indent-guess-indent-offset): New command.
10194 (python-shift-left): Delete command.
10195 (python-indent-shift-left): New command.
10196 (python-shift-right): Delete command.
10197 (python-indent-shift-right): New command.
10198 (python-find-function): Delete command.
10199 (python-nav-jump-to-defun): New command.
10200 (python-next-statement): Delete command.
10201 (python-nav-forward-sentence): New command.
10202 (python-previous-statement): Delete command.
10203 (python-nav-backward-sentence): New command.
10204 (python-fill-paragraph): Delete command.
10205 (python-fill-paragraph-function): New command.
10206 (python-send-buffer): Delete command.
10207 (python-shell-send-buffer): New command.
10208 (python-send-defun): Delete command.
10209 (python-shell-send-defun): New command.
10210 (python-send-region, python-send-region-and-go): Delete commands.
10211 (python-shell-send-region)
10212 (python-shell-switch-to-shell): New commands.
10213 (python-send-string): Delete command.
10214 (python-shell-send-string): New command.
10215 (python-switch-to-python): Delete command.
10216 (python-shell-switch-to-shell): New command.
10217 (python-describe-symbol): Delete command.
10218 (python-eldoc-at-point): New command.
10219 (python--set-prompt-regexp, python-args-to-list)
10220 (python-after-info-look, python-check-version)
10221 (python-check-comint-prompt, python-find-imports)
10222 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
10223 (python-unload-function, python-expand-template)
10224 (python-maybe-jython, python-preoutput-filter)
10225 (python-pdbtrack-get-source-buffer)
10226 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
10227 (python-pdbtrack-toggle-stack-tracking)
10228 (python-pdbtrack-track-stack-file, python-initial-text)
10229 (python-first-word, python-comment-line-p, python-send-command)
10230 (python-setup-brm, python-sentinel, python-set-proc)
10231 (python-skip-out, python-input-filter, python-outdent-p)
10232 (python-outline-level, python-backslash-continuation-line-p)
10233 (python-end-of-block, python-end-of-statement, python-mark-block)
10234 (python-beginning-of-block, python-beginning-of-statement)
10235 (python-blank-line-p, python-beginning-of-string)
10236 (python-open-block-statement-p): Delete functions.
10237 (python-indent-line, python-indent-line-1): Delete functions.
10238 (python-indent-line): New function.
10239 (python-indentation-levels): Delete function.
10240 (python-indent-calculate-levels): New function.
10241 (python-proc): Delete function.
10242 (python-shell-get-process): New function.
10243 (python-send-receive): Delete function.
10244 (python-shell-send-string-no-output): New function.
10245 (python-module-path): Delete function.
10246 (python-ffap-module-path): New function.
10247 (python-completion-at-point)
10248 (python-symbol-completions): Delete functions.
10249 (python-completion-complete-at-point): New function.
10250 (python-load-file): Delete function.
10251 (python-shell-send-file): New function.
10252 (python-calculate-indentation): Delete function.
10253 (python-indent-calculate-indentation): New function.
10254 (python-skip-comments/blanks): Delete function.
10255 (python-util-forward-comment): New function.
10256 (python-continuation-line-p): Delete function.
10257 (python-info-continuation-line-p): New function.
10258 (python-which-func, python-current-defun): Delete function.
10259 (python-info-current-defun): New function.
10260 (python-beginning-of-defun): Delete function.
10261 (python-nav-beginning-of-defun): New function.
10262 (python-close-block-statement-p)
10263 (python-block-end-p): Delete function.
10264 (python-info-closing-block): New function.
10265 (python-comint-output-filter-function)
10266 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
10267 (python-fill-comment, python-fill-decorator, python-fill-paren)
10268 (python-fill-string, python-imenu-make-element-tree)
10269 (python-imenu-make-tree, python-imenu-tree-assoc)
10270 (python-indent-context, python-indent-dedent-line)
10271 (python-indent-line-function)
10272 (python-indent-post-self-insert-function)
10273 (python-indent-toggle-levels)
10274 (python-info-assignment-continuation-line-p)
10275 (python-info-beginning-of-backlash)
10276 (python-info-block-continuation-line-p)
10277 (python-info-closing-block-message)
10278 (python-info-line-ends-backslash-p)
10279 (python-info-looking-at-beginning-of-defun)
10280 (python-info-ppss-context, python-info-ppss-context-type)
10281 (python-nav-list-defun-positions, python-nav-read-defun)
10282 (python-nav-sentence-end, python-nav-sentence-start)
10283 (python-pdbtrack-comint-output-filter-function)
10284 (python-pdbtrack-set-tracked-buffer)
10285 (python-shell-calculate-exec-path)
10286 (python-shell-calculate-process-environment)
10287 (python-shell-completion--do-completion-at-point)
10288 (python-shell-completion--get-completions)
10289 (python-shell-completion-complete-at-point)
10290 (python-shell-completion-complete-or-indent)
10291 (python-shell-get-or-create-process)
10292 (python-shell-get-process-name)
10293 (python-shell-internal-get-or-create-process)
10294 (python-shell-internal-get-process-name)
10295 (python-shell-internal-send-string, python-shell-make-comint)
10296 (python-shell-parse-command, python-shell-send-setup-code)
10297 (python-skeleton-add-menu-items)
10298 (python-util-clone-local-variables, python-util-position)
10299 (run-python-internal, python-indentation-levels)
10300 (python-nav-beginning-of-defun)
10301 (python-completion-complete-at-point): New functions.
10302 (run-python): Change arguments. New API requirements.
10303
10304 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
10305
10306 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
10307 (bug#11649).
10308
10309 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
10310 (macroexp--expand-all): Use it.
10311
10312 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
10313 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
10314 Use `cl-function' instead.
10315
10316 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
10317
10318 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
10319 Suggested by Stefan Monnier while discussing bug#11657.
10320
10321 2012-06-14 Sam Steingold <sds@gnu.org>
10322
10323 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
10324
10325 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
10326
10327 * play/doctor.el (doctor-doc): Remove parameter and use
10328 doctor-sent instead of sent.
10329 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
10330
10331 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10332
10333 * files.el: Require cl-lib.
10334 (file-name-non-special): Replace case -> cl-case.
10335
10336 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
10337
10338 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
10339 mapping from #' to function*.
10340
10341 2012-06-13 Chong Yidong <cyd@gnu.org>
10342
10343 * mouse.el (mouse-drag-track): Do not set the mark if the user
10344 releases the mouse without selecting anything (Bug#11588).
10345
10346 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10347
10348 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
10349 as well (bug#11646).
10350
10351 * loadup.el: Count byte-code functions as well.
10352
10353 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
10354 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
10355
10356 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
10357 (bug#11649). Add cl-defun and cl-defmacro.
10358
10359 2012-06-13 Drew Adams <drew.adams@oracle.com>
10360
10361 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10362 Fix last change.
10363
10364 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
10365
10366 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
10367 Otherwise, it blocks in batch mode.
10368
10369 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
10370
10371 * help-mode.el (bookmark-make-record-default): Declare.
10372
10373 2012-06-13 Chong Yidong <cyd@gnu.org>
10374
10375 * emacs-lisp/package.el (list-packages): Compute a list of
10376 packages that are newly-available since the last list-packages
10377 invocation.
10378 (package-menu--new-package-list): New var.
10379 (package-menu--generate, package-menu--print-info)
10380 (package-menu--status-predicate, package-menu-mark-install):
10381 Handle new status label "new".
10382
10383 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
10384
10385 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
10386 conversion to backquotes.
10387
10388 2012-06-12 Chong Yidong <cyd@gnu.org>
10389
10390 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
10391 Rename from gud-inhibit-global-bindings.
10392
10393 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
10394
10395 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
10396 hook from nxml-glyph-set-hook.
10397
10398 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
10399 declaration.
10400
10401 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
10402
10403 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
10404 Convert to defcustom.
10405
10406 2012-06-12 Drew Adams <drew.adams@oracle.com>
10407
10408 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10409 New functions.
10410 (help-mode): Use them.
10411
10412 2012-06-11 Glenn Morris <rgm@gnu.org>
10413
10414 * progmodes/fortran.el (fortran-font-lock-keywords-3):
10415 Use preprocessor face for directives.
10416 (fortran-directive-re): Doc fix.
10417
10418 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10419
10420 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
10421 conversion to backquotes (bug#11652).
10422
10423 Fix compiler-expansion of CL's cXXr functions (bug#11673).
10424 * emacs-lisp/cl-lib.el (cl--defalias): New function.
10425 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
10426 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
10427 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
10428 (cl-ninth, cl-tenth): Mark them as inlinable.
10429 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
10430 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
10431 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
10432 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
10433 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
10434 (cl-list*, cl-adjoin): Don't put an autoload manually.
10435 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
10436 (cl--compiler-macro-list*): Add autoload cookie.
10437 (cl--compiler-macro-cXXr): New function.
10438
10439 * help-fns.el (help-fns--compiler-macro): New function extracted from
10440 describe-function-1; follow aliases and use `compiler-macro' property.
10441 (describe-function-1): Use it.
10442
10443 2012-06-11 Chong Yidong <cyd@gnu.org>
10444
10445 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
10446 is uninstalled, if imagemagick is installed.
10447
10448 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10449
10450 * emacs-lisp/cl-lib.el: Use lexical-binding.
10451 (cl-map-extents, cl-maclisp-member): Remove.
10452 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
10453 (cl--set-substring, cl--block-wrapper, cl--block-throw)
10454 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
10455 * emacs-lisp/cl-extra.el: Use lexical-binding.
10456 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
10457 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
10458 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
10459 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
10460 * emacs-lisp/cl-seq.el: Use lexical-binding.
10461 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
10462 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
10463 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
10464 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
10465 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
10466 CL's internals.
10467
10468 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
10469
10470 Sync with Tramp 2.2.6-pre.
10471
10472 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
10473 `print-length' and `print-level' to nil, in order to avoid
10474 truncation. Reported by Christopher Schmidt
10475 <christopher@ristopher.com>.
10476
10477 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
10478
10479 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
10480 New defmacro.
10481 (tramp-compat-copy-directory): Add optional argument
10482 COPY-CONTENTS. It is not handled yet.
10483
10484 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
10485 (tramp-ftp-file-name-p): Simplify.
10486
10487 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
10488 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
10489 connection vector.
10490
10491 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
10492 (tramp-methods): Do not use `tramp-password-end-of-line'.
10493 (tramp-completion-function-alist-putty): Handle UNIX case.
10494 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
10495 (tramp-do-file-attributes-with-stat)
10496 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
10497 gid as real numbers. They could run out of integer range on cygwin.
10498 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
10499 (tramp-sh-handle-expand-file-name): Handle hops.
10500 (tramp-open-connection-setup-interactive-shell):
10501 Use `tramp-cleanup'. Move check for busyboxes ...
10502 (tramp-find-shell): ... here. Simplify implementation.
10503 Set "remote-shell" property also for alternative shells.
10504 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
10505 If failing, a regular file would be written otherwise.
10506 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
10507 (tramp-find-inline-encoding): Cache the coding commands in the
10508 process cache. Apply test command on the remote side, if defined.
10509 (tramp-find-inline-compress): Cache the compress commands in the
10510 process cache.
10511 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
10512 when requested. Handle hops.
10513 (tramp-current-connection): New defvar.
10514 (tramp-maybe-open-connection): Use `tramp-cleanup'.
10515 Throw `suppress', if there was a failed connection shortly before.
10516 Handle user interrupt. (Bug#10187)
10517 (tramp-get-inline-compress, tramp-get-inline-coding):
10518 Read connection properties from the process cache.
10519
10520 * net/tramp-smb.el (tramp-smb-server-version)
10521 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
10522 New defconsts.
10523 (tramp-smb-prompt): Extend for powershell prompt.
10524 (tramp-smb-file-name-handler-alist): Add handlers for
10525 `process-file', `shell-command' and `start-file-process'.
10526 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
10527 (tramp-smb-winexe-shell-command-switch): New defcustoms.
10528 (tramp-smb-file-name-p): Simplify.
10529 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
10530 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
10531 (tramp-smb-shell-quote-argument): New defuns.
10532 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
10533 Implement using "tar". By this, time-stamps are preserved.
10534 (tramp-smb-handle-copy-file): Handle also the case of directories.
10535 (tramp-smb-do-file-attributes-with-stat)
10536 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
10537 Use `tramp-get-connection-buffer').
10538 (tramp-smb-handle-rename-file): Use "rename", when source and
10539 target are on the same share.
10540 (tramp-smb-maybe-open-connection): Handle wrong passwords.
10541 Use `tramp-smb-server-version'.
10542 (tramp-smb-wait-for-output): Remove prompt.
10543
10544 * net/tramp.el (top): Require 'cl.
10545 (tramp-methods, tramp-rsh-end-of-line):
10546 Remove `tramp-password-end-of-line' from docstring.
10547 (tramp-save-ad-hoc-proxies): New defcustom.
10548 (tramp-completion-function-alist): Adapt docstring.
10549 (tramp-default-password-end-of-line): Remove defcustom.
10550 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
10551 (tramp-user-regexp, tramp-file-name-regexp-unified)
10552 (tramp-file-name-regexp-url): Extend regexp by hop separator.
10553 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
10554 (tramp-remote-file-name-spec-regexp): New defconst.
10555 (tramp-file-name-structure): Extend structure for hops.
10556 (tramp-get-method-parameter): Move up.
10557 (tramp-file-name-p, tramp-dissect-file-name)
10558 (with-parsed-tramp-file-name): Handle hops.
10559 (tramp-file-name-hop): New defun.
10560 (tramp-make-tramp-file-name): New optional arg HOP.
10561 (tramp-message-show-progress-reporter-message): New defvar.
10562 (tramp-with-progress-reporter): Use it. We cannot use
10563 `tramp-message-show-message' here, because this suppresses also
10564 error buffers.
10565 (tramp-error-with-buffer): Suppress buffer view, if
10566 `tramp-message-show-message' is nil.
10567 Use `tramp-get-connection-buffer'.
10568 (tramp-cleanup): New defun.
10569 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
10570 (tramp-file-name-handler): If `debug-on-error' is set, propagate
10571 an error unchanged.
10572 (tramp-completion-handle-file-name-all-completions): Handle hops.
10573 Fix an error when called from ido.
10574 (tramp-completion-dissect-file-name): Use better local variable
10575 name. Add hop to the vector.
10576 (tramp-handle-insert-file-contents): Use progress-reporter for the
10577 whole scenario.
10578 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
10579 to `t'.
10580 (tramp-check-for-regexp): Simplify search.
10581 (tramp-enter-password): Remove it. Move implementation ...
10582 (tramp-action-password): ... here.
10583 (tramp-mode-string-to-int, tramp-local-host-p)
10584 (tramp-make-tramp-temp-file, tramp-read-passwd)
10585 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
10586 Set tramp-autoload cookie.
10587
10588 * net/trampver.el: Update release number.
10589
10590 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10591 Michael Albinus <michael.albinus@gmx.de>
10592
10593 * net/tramp.el (tramp-set-completion-function): Fix docstring.
10594 (tramp-parse-group, tramp-parse-file)
10595 (tramp-parse-shostkeys-sknownhosts): New defuns.
10596 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
10597 (tramp-parse-shosts-group, tramp-parse-sconfig)
10598 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
10599 (tramp-parse-sknownhosts, tramp-parse-hosts)
10600 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
10601 Use them.
10602 (tramp-parse-passwd-group, tramp-parse-netrc-group)
10603 (tramp-parse-putty-group): Don't narrow.
10604 (tramp-parse-putty): Make a loop.
10605 (tramp-file-name-handler): Catch the `suppress' signal.
10606
10607 2012-06-11 Chong Yidong <cyd@gnu.org>
10608
10609 * image.el (imagemagick-register-types): Put the ImageMagick entry
10610 at the end of image-type-file-name-regexps.
10611
10612 2012-06-11 Johan Bockgård <bojohan@gnu.org>
10613
10614 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
10615 (pcase, pcase-let*, pcase-dolist): Use them.
10616
10617 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10618
10619 * emacs-lisp/pcase.el (pcase--let*): New function.
10620 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
10621 (pcase--expand): Use macroexp-let².
10622
10623 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
10624
10625 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
10626 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
10627 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
10628 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
10629 * emacs-lisp/derived.el: Use pcase instead of `cl'.
10630 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
10631
10632 2012-06-10 Glenn Morris <rgm@gnu.org>
10633
10634 * mail/rmail.el (rmail-yank-current-message): Leave point at
10635 correct position. (Bug#11660)
10636
10637 2012-06-10 Chong Yidong <cyd@gnu.org>
10638
10639 * allout-widgets.el: Fix code header.
10640
10641 2012-06-10 Chong Yidong <cyd@gnu.org>
10642
10643 * cus-edit.el (customize-changed-options-previous-release):
10644 Bump to 24.1.
10645
10646 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
10647
10648 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
10649
10650 2012-06-09 Chong Yidong <cyd@gnu.org>
10651
10652 * ebuff-menu.el (electric-buffer-list): Preserve header line.
10653
10654 2012-06-09 Martin Rudalics <rudalics@gmx.at>
10655
10656 * window.el (special-display-popup-frame): Don't use
10657 window--display-buffer (Bug#11651).
10658
10659 2012-06-09 Eli Zaretskii <eliz@gnu.org>
10660
10661 Fix parallel builds: make sure loaddefs.el is not being written
10662 while Lisp files are compiled.
10663 (compile): Don't depend on 'mh-autoloads'.
10664 (compile-CMD, compile-SH): Depend on 'autoloads'.
10665 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
10666
10667 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
10668
10669 2012-06-09 Chong Yidong <cyd@gnu.org>
10670
10671 * face-remap.el (face-remap-add-relative, face-remap-set-base)
10672 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
10673 Doc fixes (Bug#11225).
10674
10675 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10676
10677 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
10678 a function if there's a clear indication that it has a compiler-macro.
10679 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
10680 (macro-declarations-alist): Add arglist to declaration functions.
10681 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
10682 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
10683 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
10684 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
10685 Also add autoload to find the compiler macro.
10686 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
10687 (cl--compiler-macro-member, cl--compiler-macro-assoc)
10688 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
10689 (cl--compiler-macro-get): New functions, replacing calls to
10690 cl-define-compiler-macro.
10691 (cl-typep) [compiler-macro]: Use macroexp-let².
10692
10693 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
10694
10695 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
10696 string properly, fixes Bug#11473.
10697
10698 2012-06-08 Chong Yidong <cyd@gnu.org>
10699
10700 * faces.el (set-face-attribute): Doc fix.
10701 (modify-face): Don't use :bold and :italic.
10702 (error, warning, success): Tweak definitions.
10703
10704 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
10705 (custom-modified, custom-set, custom-changed, custom-themed)
10706 (custom-saved, custom-button, custom-button-mouse)
10707 (custom-button-pressed, custom-state, custom-comment-tag)
10708 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
10709 (custom-group-subtitle): Use new-style face specs.
10710 (custom-invalid-face, custom-rogue-face, custom-modified-face)
10711 (custom-set-face, custom-changed-face, custom-saved-face)
10712 (custom-button-face, custom-button-pressed-face)
10713 (custom-documentation-face, custom-state-face)
10714 (custom-comment-face, custom-comment-tag-face)
10715 (custom-variable-tag-face, custom-variable-button-face)
10716 (custom-face-tag-face, custom-group-tag-face-1)
10717 (custom-group-tag-face): Remove obsolete face alias.
10718
10719 * epa.el (epa-validity-high, epa-validity-medium)
10720 (epa-validity-low, epa-mark, epa-field-name, epa-string)
10721 (epa-field-name, epa-field-body):
10722 * font-lock.el (font-lock-comment-face, font-lock-string-face)
10723 (font-lock-keyword-face, font-lock-builtin-face)
10724 (font-lock-function-name-face, font-lock-variable-name-face)
10725 (font-lock-type-face, font-lock-constant-face):
10726 * ido.el (ido-first-match, ido-only-match, ido-subdir)
10727 (ido-virtual, ido-indicator, ido-incomplete-regexp):
10728 * speedbar.el (speedbar-button-face, speedbar-file-face)
10729 (speedbar-directory-face, speedbar-tag-face)
10730 (speedbar-selected-face, speedbar-highlight-face)
10731 (speedbar-separator-face):
10732 * whitespace.el (whitespace-newline, whitespace-space)
10733 (whitespace-hspace, whitespace-tab, whitespace-trailing)
10734 (whitespace-line, whitespace-space-before-tab)
10735 (whitespace-space-after-tab, whitespace-indentation)
10736 (whitespace-empty):
10737 * emulation/cua-base.el (cua-global-mark):
10738 * eshell/em-prompt.el (eshell-prompt):
10739 * net/newst-plainview.el (newsticker-new-item-face)
10740 (newsticker-old-item-face, newsticker-immortal-item-face)
10741 (newsticker-obsolete-item-face, newsticker-date-face)
10742 (newsticker-statistics-face, newsticker-default-face):
10743 * net/newst-reader.el (newsticker-feed-face)
10744 (newsticker-extra-face, newsticker-enclosure-face):
10745 * net/newst-treeview.el (newsticker-treeview-face)
10746 (newsticker-treeview-new-face, newsticker-treeview-old-face)
10747 (newsticker-treeview-immortal-face)
10748 (newsticker-treeview-obsolete-face)
10749 (newsticker-treeview-selection-face):
10750 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
10751 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
10752 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
10753 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
10754 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
10755 (nxml-outline-active-indicator, nxml-outline-ellipsis):
10756 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
10757 (mpuz-text):
10758 * progmodes/vera-mode.el (vera-font-lock-number)
10759 (vera-font-lock-function, vera-font-lock-interface):
10760 * textmodes/table.el (table-cell): Use new-style face specs, and
10761 don't use the old :bold and :italic attributes.
10762
10763 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
10764 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
10765 (ebrowse-member-class, ebrowse-progress): Likewise.
10766 (ebrowse-tree-mark-face, ebrowse-root-class-face)
10767 (ebrowse-file-name-face, ebrowse-default-face)
10768 (ebrowse-member-attribute-face, ebrowse-member-class-face)
10769 (ebrowse-progress-face): Remove obsolete faces.
10770
10771 * progmodes/flymake.el (flymake-errline, flymake-warnline):
10772 Inherit from error and warning faces respectively.
10773
10774 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
10775 Likewise.
10776 (flyspell-incorrect-face, flyspell-duplicate-face):
10777 Remove obsolete aliases.
10778
10779 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
10780
10781 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
10782 Avoid infloop.
10783
10784 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
10785
10786 * startup.el (argv, argi): Make lexically scoped.
10787 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
10788 * emacs-lisp/cl-macs.el: Use lexical-binding.
10789 Rename cl-bind-* to cl--bind-*.
10790 * files.el: Don't require `cl' since it doesn't use it.
10791 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
10792
10793 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
10794
10795 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
10796 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
10797 instead of calling external sort utility.
10798 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
10799
10800 2012-06-08 Eli Zaretskii <eliz@gnu.org>
10801
10802 * descr-text.el (describe-char): Mention how to insert the
10803 character, if the current input method doesn't support it.
10804 See the discussion in this thread for the details:
10805 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
10806
10807 2012-06-08 Sam Steingold <sds@gnu.org>
10808
10809 * bindings.el (global-map): Bind XF86Forward to next-buffer and
10810 XF86Back to previous-buffer.
10811 (minibuffer-local-map): Bind them to next-history-element and
10812 previous-history-element respectively.
10813 * help-mode.el (help-mode-map): Bind them to help-go-forward and
10814 help-go-back respectively.
10815 * info.el (Info-mode-map): Bind them to Info-history-forward and
10816 Info-history-back respectively.
10817 These are the keys next to Up on the ThinkPad keyboard.
10818
10819 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
10820
10821 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
10822 * emacs-lisp/cl-macs.el: Provide itself.
10823 (cl--labels-convert-cache): New var.
10824 (cl--labels-convert): New function.
10825 (cl-flet, cl-labels): New implementation with new semantics, relying on
10826 lexical-binding.
10827 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
10828 (cl-closure-vars, cl--function-convert-cache)
10829 (cl--function-convert): Move from cl-macs.el.
10830 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
10831 rename by removing the "cl-" prefix.
10832 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
10833
10834 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10835
10836 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
10837 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
10838 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
10839 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
10840 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
10841 (cl-hash-table-count): Add old compatibility aliases.
10842
10843 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
10844 Use macroexpand-all-environment instead.
10845 (cl--old-macroexpand): New var.
10846 (cl--sm-macroexpand): New function.
10847 (cl-symbol-macrolet): Use it during macro expansion.
10848 (cl--function-convert-cache): New var.
10849 (cl--function-convert): New function, extracted from
10850 cl-macroexpand-all.
10851 (cl-lexical-let): Use it.
10852
10853 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
10854 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
10855 (cl-member): Remove old alias.
10856
10857 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
10858 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
10859 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
10860 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
10861 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
10862 (cl-macroexpand-cmacs): Remove var.
10863 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
10864 Use macroexpand-all instead.
10865
10866 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10867
10868 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
10869 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
10870 (macroexp-copyable-p): New functions and macros.
10871 * emacs-lisp/edebug.el (edebug-unwrap):
10872 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
10873 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
10874 (pcase--let*): Remove.
10875 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
10876 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
10877 macroexp-const-p instead.
10878 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
10879
10880 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
10881 instead of "cl-" for internal definitions. Use macroexp-const-p.
10882 (cl-old-bc-file-form): Remove var.
10883 (cl-const-exprs-p): Remove fun.
10884 (cl-labels, cl-macrolet): Use backquote.
10885 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
10886 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
10887 (cl-define-setf-expander): Rename from cl-define-setf-method.
10888 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
10889
10890 * international/mule-cmds.el: Don't require CL.
10891 (view-hello-file): Don't use `letf'.
10892
10893 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10894
10895 * tmm.el (tmm-prompt): Use string-prefix-p.
10896 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
10897 (tmm-add-prompt): Use minibuffer-completion-help.
10898 (tmm-delete-map): Remove.
10899
10900 * subr.el (kbd): Make it its own function.
10901
10902 2012-06-07 Stefan Merten <smerten@oekonux.de>
10903
10904 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
10905 Silence compiler warnings. Fix versions.
10906 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
10907 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
10908 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
10909 (rst-package-emacs-version-alist): Correct Emacs version to
10910 represent major merge with upstream.
10911 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
10912
10913 2012-06-06 Glenn Morris <rgm@gnu.org>
10914
10915 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
10916 Only print environment variables if set.
10917
10918 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
10919
10920 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
10921 (macroexp--cons): Rename from maybe-cons.
10922 (macroexp--accumulate): Rename from macroexp-accumulate.
10923 (macroexp--all-forms): Rename from macroexpand-all-forms.
10924 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
10925 (macroexp--expand-all): Rename from macroexpand-all-1.
10926
10927 2012-06-06 Sam Steingold <sds@gnu.org>
10928
10929 * calendar/calendar.el (calendar-in-read-only-buffer):
10930 Call `special-mode' to enable the standard read-only keybindings.
10931
10932 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
10933
10934 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
10935 with "loading" messages (bug#11635).
10936
10937 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
10938
10939 * files.el (enable-remote-dir-locals): New option.
10940 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
10941
10942 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
10943 Ensure, that the temp directory is local.
10944
10945 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
10946 `temporary-file-directory'.
10947
10948 * progmodes/python.el (python-send-region): Ensure, that the
10949 temporary file is created also in the remote case.
10950
10951 2012-06-06 Glenn Morris <rgm@gnu.org>
10952
10953 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
10954 (vc-rcs-update-changelog): Use it.
10955
10956 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
10957
10958 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
10959 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
10960 (vc-sccs-diff): Replace use of the external vcdiff script.
10961
10962 2012-06-05 Glenn Morris <rgm@gnu.org>
10963
10964 * ledit.el: Move to obsolete/.
10965
10966 2012-06-05 Sam Steingold <sds@gnu.org>
10967
10968 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
10969 patch (Bug#11140).
10970
10971 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
10972
10973 * emacs-lisp/cust-print.el: Move to obsolete.
10974
10975 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
10976 compiler-macro expansion.
10977
10978 Add native compiler-macro support.
10979 * emacs-lisp/macroexp.el (macroexpand-all-1):
10980 Support compiler-macros directly. Properly follow aliases and apply
10981 the compiler macros more thoroughly.
10982 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
10983 macroexpand now properly follows aliases.
10984 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
10985 (cl-compiler-macroexpand): Use new prop.
10986 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
10987
10988 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
10989
10990 2012-06-05 Martin Rudalics <rudalics@gmx.at>
10991
10992 * window.el (get-lru-window, get-mru-window, get-largest-window):
10993 New argument NOT-SELECTED to avoid picking the selected window.
10994 (window--display-buffer-1, window--display-buffer-2): Replace by
10995 new function window--display-buffer
10996 (display-buffer-same-window, display-buffer-reuse-window)
10997 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10998 Use window--display-buffer.
10999 (display-buffer-use-some-window): Remove temporary dedication
11000 hack by calling get-lru-window and get-largest-window with
11001 NOT-SELECTED argument non-nil. Call window--display-buffer.
11002
11003 2012-06-05 Glenn Morris <rgm@gnu.org>
11004
11005 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
11006 Replace external vcdiff script.
11007
11008 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
11009
11010 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
11011
11012 2012-06-04 Chong Yidong <cyd@gnu.org>
11013
11014 * image.el (imagemagick-types-inhibit): Revert last change.
11015 Add INFO and M.
11016 (imagemagick-enabled-types): Remove CIN and EPS*.
11017
11018 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
11019
11020 * emacs-lisp/cl-lib.el: Rename from cl.el.
11021 * emacs-lisp/cl.el: New compatibility file.
11022 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
11023 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
11024 to obey the "cl-" prefix.
11025 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
11026
11027 2012-06-03 Glenn Morris <rgm@gnu.org>
11028
11029 * emacs-lisp/authors.el (authors-aliases): Addition.
11030
11031 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
11032 Fix :version.
11033
11034 2012-06-03 Stefan Merten <smerten@oekonux.de>
11035
11036 * textmodes/rst.el: Add comments.
11037 (rst-transition, rst-adornment): New faces.
11038 (rst-adornment-faces-alist): Make default safe to reevaluate.
11039 Fixes
11040 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
11041 Improve customization tags.
11042 (rst-define-level-faces): Clarify meaning.
11043
11044 2012-06-03 Chong Yidong <cyd@gnu.org>
11045
11046 * progmodes/compile.el (compilation-mode-line-fail)
11047 (compilation-mode-line-run, compilation-mode-line-exit):
11048 New faces.
11049 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
11050
11051 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
11052
11053 * progmodes/which-func.el (which-func-update-ediff-windows):
11054 New function. Use it in ediff-select-hook (Bug#11478).
11055
11056 2012-06-03 Chong Yidong <cyd@gnu.org>
11057
11058 * bindings.el: Remove explicit help text from format-mode-line.
11059 It is now supplied by mode-line-default-help-echo.
11060 (mode-line-front-space, mode-line-end-spaces)
11061 (mode-line-misc-info): New variables.
11062 (mode-line-modes, mode-line-position): Move the default value to
11063 the variable definition.
11064 (mode-line-default-help-echo): New defcustom.
11065 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
11066 (mode-line-modified-help-echo): New functions.
11067 (mode-line-mule-info, mode-line-modified): Use them.
11068 (mode-line-eol-desc, propertized-buffer-identification):
11069 Consistency fixes for help text.
11070 (mode-line-coding-system-map): Allow using mouse-3 to invoke
11071 set-buffer-file-coding-system (Bug#289).
11072 (mode-line-mule-info-help-echo): Update help text.
11073
11074 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11075
11076 * simple.el (execute-extended-command): Set real-this-command
11077 (bug#11506).
11078
11079 2012-06-02 Chong Yidong <cyd@gnu.org>
11080
11081 Remove incorrect uses of "modeline" in comments, docstrings, and
11082 function/variable names (Bug#10329).
11083
11084 * cus-edit.el (mode-line):
11085 * dframe.el (dframe-mouse-hscroll):
11086 * emacs-lisp/re-builder.el:
11087 * emacs-lisp/easy-mmode.el (define-minor-mode):
11088 * frame.el (set-frame-name):
11089 * help.el (lookup-minor-mode-from-indicator):
11090 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
11091 * progmodes/cc-cmds.el (c-toggle-auto-newline)
11092 (c-toggle-hungry-state):
11093 * progmodes/antlr-mode.el (antlr-language-alist):
11094 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
11095 * progmodes/vhdl-mode.el (vhdl-mode):
11096 * progmodes/which-func.el (which-func, which-func-cleanup-function):
11097 * term/ns-win.el (ns-face-at-pos):
11098 * term/sup-mouse.el (sup-mouse-report):
11099 * textmodes/flyspell.el (flyspell-mode-line-string):
11100 * textmodes/ispell.el (ispell-highlight-face):
11101 * textmodes/reftex-global.el:
11102 * vc/vc-arch.el (vc-arch-mode-line-string):
11103 * vc/vc-cvs.el (vc-cvs-mode-line-string):
11104 * vc/vc-git.el (vc-git-mode-line-string):
11105 * vc/vc-hooks.el (vc-display-status)
11106 (vc-default-mode-line-string):
11107 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
11108
11109 * ansi-color.el (ansi-color-faces-vector): Change default faces.
11110
11111 * dired.el (dired-sort-set-mode-line): Rename from
11112 dired-sort-set-modeline. All callers changed.
11113
11114 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
11115 eshell-status-in-modeline.
11116
11117 * foldout.el (foldout-mode-line-string): Rename from
11118 foldout-modeline-string. All callers changed.
11119 (foldout-update-mode-line): Rename from foldout-update-modeline.
11120
11121 * subr.el (redraw-modeline): Make into obsolete alias.
11122
11123 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
11124 timeclock-modeline-display. Make old name an alias.
11125 (timeclock-update-mode-line): Likewise. All callers changed.
11126 (timeclock-mode-line-display): No need to check before using
11127 add-hook.
11128 (timeclock-relative, timeclock-day-over-hook)
11129 (timeclock-use-elapsed, timeclock-mode-string)
11130 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
11131
11132 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
11133 crisp-mode-modeline-string.
11134
11135 * play/solitaire.el (solitaire-build-mode-line): Rename from
11136 solitaire-build-modeline. All callers changed.
11137
11138 * play/zone.el (zone-hiding-mode-line): Rename from
11139 zone-hiding-modeline. All callers changed.
11140 (zone): Remove unusued `modeline-hidden-level' property.
11141
11142 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
11143 xscheme-modeline-initialize. All callers changed.
11144
11145 * strokes.el (strokes-lighter): Rename from
11146 strokes-modeline-string.
11147
11148 * textmodes/sgml-mode.el (html-face-tag-alist)
11149 (html-tag-face-alist): Use mode-line face instead of obsolete
11150 alias modeline.
11151
11152 2012-06-02 Stefan Merten <smerten@oekonux.de>
11153
11154 * textmodes/rst.el: Always require `cl'.
11155 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
11156
11157 2012-06-02 Chong Yidong <cyd@gnu.org>
11158
11159 * image.el (imagemagick-enabled-types): Rename from
11160 imagemagick-types-enable. Add many more types.
11161 (imagemagick-types-inhibit): Change default to nil.
11162 (imagemagick-filter-types): Caller changed.
11163
11164 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
11165
11166 * emacs-lisp/cl-macs.el: Use backquotes.
11167 (cl-transform-function-property): Use eval-and-compile rather than
11168 abusing `require'.
11169 (defstruct): Use declare-function instead of with-no-warnings.
11170
11171 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
11172 (byte-compile-output-docform): Re-add the print-circle bindings.
11173 (byte-compile-fix-header): Use #$ just because it's shorter.
11174 (byte-compile-output-file-form): Remove defun/defmacro.
11175
11176 2012-06-01 Martin Rudalics <rudalics@gmx.at>
11177
11178 * simple.el (choose-completion): Remove now obsolete binding for
11179 owindow.
11180
11181 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
11182
11183 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
11184 in order to avoid "Stack overflow in regexp matcher".
11185
11186 2012-05-31 Glenn Morris <rgm@gnu.org>
11187
11188 * image.el: For clarity, call imagemagick-register-types at
11189 top-level, rather than relying on a custom :initialize.
11190 (imagemagick-types-enable): New option. (Bug#11557)
11191 (imagemagick-filter-types): New function. (Bug#7406)
11192 (imagemagick-register-types): Use imagemagick-filter-types.
11193 If disabling support, remove elements altogether rather
11194 than using an impossible regexp.
11195 (imagemagick-types-inhibit): Give it the default init function.
11196
11197 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11198
11199 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
11200 Handle arbitrary file name lengths (Bug#11585).
11201
11202 2012-05-31 Martin Rudalics <rudalics@gmx.at>
11203
11204 * desktop.el (desktop-read): Clear previous and next buffers for
11205 all windows and bury *Messages* buffer (bug#11556).
11206
11207 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11208
11209 Add `declare' for `defun'. Align `defmacro's with it.
11210 * emacs-lisp/easy-mmode.el (define-minor-mode)
11211 (define-globalized-minor-mode): Don't autoload the var definitions.
11212 * emacs-lisp/byte-run.el: Use lexical-binding.
11213 (defun-declarations-alist, macro-declarations-alist): New vars.
11214 (defmacro, defun): Use them.
11215 (make-obsolete, define-obsolete-function-alias)
11216 (make-obsolete-variable, define-obsolete-variable-alias):
11217 Use `declare'.
11218 (macro-declaration-function): Mark obsolete.
11219 * emacs-lisp/autoload.el: Use lexical-binding.
11220 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
11221
11222 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11223
11224 * textmodes/ispell.el (ispell-with-no-warnings):
11225 Define as a macro.
11226 (ispell-kill-ispell, ispell-change-dictionary):
11227 Use `called-interactively-p' for Emacs instead of obsolete
11228 `interactive-p'.
11229
11230 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11231
11232 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
11233 (macro-declaration-function): Move var from C code.
11234 (macro-declaration-function): Define function with defalias.
11235 * emacs-lisp/macroexp.el (macroexpand-all-1):
11236 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
11237 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
11238 defun/defmacro any more.
11239 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
11240 Provide fallback for unknown arglist.
11241 (byte-compile-arglist-warn): Change calling convention.
11242 (byte-compile-output-file-form): Move print-vars binding.
11243 (byte-compile-output-docform): Simplify accordingly.
11244 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
11245 (byte-compile-defmacro-declaration): Remove.
11246 (byte-compile-file-form-defmumble): Generalize to defalias.
11247 (byte-compile-output-as-comment): Return byte-positions.
11248 Simplify callers accordingly.
11249 (byte-compile-lambda): Use `assert'.
11250 (byte-compile-defun, byte-compile-defmacro): Remove.
11251 (byte-compile-file-form-defalias):
11252 Use byte-compile-file-form-defmumble.
11253 (byte-compile-defalias-warn): Remove.
11254
11255 2012-05-29 Stefan Merten <smerten@oekonux.de>
11256
11257 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
11258 possible. Fix authors. Improve comments. Improve loading of `cl'.
11259
11260 (rst-mode-abbrev-table): Merge definition.
11261 (rst-mode): Make sure `font-lock-defaults' is buffer local.
11262 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
11263
11264 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
11265
11266 * calendar/icalendar.el
11267 (icalendar-export-region): Export UID properly.
11268
11269 2012-05-29 Leo Liu <sdl.web@gmail.com>
11270 * calendar/icalendar.el (icalendar-import-format):
11271 Add `icalendar-import-format-uid' (Bug#11525).
11272 (icalendar-import-format-uid): New.
11273 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
11274 Export UID.
11275
11276 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
11277
11278 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
11279 different alternative patterns.
11280 (pcase-codegen): Be more careful to preserve identity.
11281 (pcase--u1): Don't forget to mark vars as used.
11282
11283 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
11284 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
11285 (byte-compile-from-buffer): ...rather than here.
11286
11287 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
11288 functions from byte-compile-function-environment.
11289
11290 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
11291
11292 * window.el (window-deletable-p): Avoid deleting the root window
11293 of a frame with an active minibuffer.
11294
11295 2012-05-29 Martin Rudalics <rudalics@gmx.at>
11296
11297 * simple.el (choose-completion): Use quit-window (Bug#11567).
11298
11299 2012-05-29 Chong Yidong <cyd@gnu.org>
11300
11301 * whitespace.el (whitespace-cleanup): Fix usage of
11302 whitespace-empty-at-bob-regexp (Bug#11492).
11303
11304 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11305
11306 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
11307 revert (Bug#11488).
11308
11309 2012-05-29 Juri Linkov <juri@jurta.org>
11310
11311 * isearch.el (isearch-mode-map): Bind `M-s _' to
11312 `isearch-toggle-symbol'. Bind `M-s c' to
11313 `isearch-toggle-case-fold'.
11314 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
11315 (isearch-forward): Add `M-s _' to the docstring.
11316 (isearch-forward-symbol, isearch-toggle-case-fold)
11317 (isearch-symbol-regexp): New functions. (Bug#11381)
11318
11319 2012-05-29 Juri Linkov <juri@jurta.org>
11320
11321 * isearch.el (isearch-word): Add docstring. (Bug#11381)
11322 (isearch-occur, isearch-search-and-update): If `isearch-word' is
11323 a function, call it to get the regexp.
11324 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
11325 property `isearch-message-prefix' instead of the string "word ".
11326 (isearch-search-fun-default): For the case of `isearch-word',
11327 return a lambda that calls re-search-forward/re-search-backward
11328 with a regexp returned by `word-search-regexp' or by the function
11329 in `isearch-word'.
11330
11331 2012-05-29 Juri Linkov <juri@jurta.org>
11332
11333 * isearch.el (isearch-search-fun-default): New function.
11334 (isearch-search-fun): Move default part to the new function
11335 `isearch-search-fun-default'.
11336 (isearch-search-fun-function): Set the default value to
11337 `isearch-search-fun-default'. (Bug#11381)
11338
11339 * comint.el (comint-history-isearch-end):
11340 Use `isearch-search-fun-default'.
11341 (comint-history-isearch-search): Use `isearch-search-fun-default'
11342 and remove spacial case for `isearch-word'.
11343 (comint-history-isearch-wrap): Remove spacial case for
11344 `isearch-word'.
11345
11346 * hexl.el (hexl-isearch-search-function):
11347 Use `isearch-search-fun-default'.
11348
11349 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
11350 Use `word-search-regexp' for `isearch-word'.
11351
11352 * misearch.el (multi-isearch-search-fun):
11353 Use `isearch-search-fun-default'.
11354
11355 * simple.el (minibuffer-history-isearch-search):
11356 Use `isearch-search-fun-default' and remove spacial case for
11357 `isearch-word'.
11358 (minibuffer-history-isearch-wrap): Remove spacial case for
11359 `isearch-word'.
11360
11361 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
11362 Remove spacial case for `isearch-word'.
11363 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
11364
11365 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11366
11367 Decrease XEmacs incompatibilities.
11368 * textmodes/flyspell.el (flyspell-check-pre-word-p):
11369 Use `string-match'.
11370 (flyspell-delete-region-overlays): Use alternative definition for
11371 XEmacs.
11372 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
11373 (flyspell-word): Use `process-kill-without-query' if XEmacs.
11374 (flyspell-mode-on): Use `interactive-p' if XEmacs.
11375 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
11376 `define-obsolete-face-alias' under XEmacs, but old method.
11377
11378 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
11379 `with-no-warnings' definition or Emacs alias.
11380 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
11381 (ispell-word): Do not use `region-p' if XEmacs.
11382
11383 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11384
11385 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
11386 Check for `ispell-dictionary-base-alist' instead of full
11387 `ispell-dictionary-alist'.
11388 (ispell-init-process): Show spellchecker when starting new Ispell
11389 process.
11390
11391 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
11392
11393 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
11394 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
11395
11396 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
11397
11398 * version.el (motif-version-string, gtk-version-string)
11399 (ns-version-string): Declare.
11400
11401 2012-05-27 Juri Linkov <juri@jurta.org>
11402
11403 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
11404 after the `eval-defun-1' specialcaseing
11405 like in `edebug-eval-defun' (bug#10181).
11406
11407 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
11408 like in `eval-defun-1'.
11409
11410 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11411
11412 * mail/sendmail.el (mail-yank-region):
11413 Recognize rmail-yank-current-message in addition to insert-buffer.
11414 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
11415 a *mail* buffer created through rmail-start-mail with sendmail as
11416 mail-user-agent.
11417
11418 2012-05-27 Chong Yidong <cyd@gnu.org>
11419
11420 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
11421 Default to 256 (Bug#11267).
11422
11423 * help.el (describe-mode): Doc fix.
11424
11425 2012-05-26 Glenn Morris <rgm@gnu.org>
11426
11427 * w32-fns.el (w32-init-info): Remove.
11428 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
11429
11430 * info.el (info-initialize): For self-contained NS builds, put the
11431 included info/ directory at the front. (Bug#2791)
11432
11433 * paths.el (Info-default-directory-list): Make it a defcustom,
11434 mainly so that we can use custom-initialize-delay.
11435
11436 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
11437
11438 * subr.el (buffer-has-markers-at): Mark obsolete.
11439
11440 * subr.el (lambda): Use declare.
11441
11442 * emacs-lisp/lisp-mode.el (lambda):
11443 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
11444
11445 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11446
11447 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
11448
11449 2012-05-26 Glenn Morris <rgm@gnu.org>
11450
11451 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
11452
11453 2012-05-25 Glenn Morris <rgm@gnu.org>
11454
11455 * paths.el: Remove no-byte-compile.
11456 * loadup.el: No need to load paths.el uncompiled.
11457
11458 * image.el (imagemagick-types-inhibit): Doc fix.
11459
11460 * version.el: Remove no-byte-compile and associated formatting.
11461 * loadup.el: No need to load version.el uncompiled. AFAICS, this
11462 is ancient code from when there was an "inc-vers.el".
11463
11464 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11465
11466 * progmodes/gdb-mi.el: Minor style changes.
11467 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
11468 Turn into minor modes.
11469 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
11470 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
11471 (gdb-shell): Remove unneeded let-binding.
11472 (gdb-get-many-fields): Eliminate O(n²) behavior.
11473
11474 2012-05-25 Eli Zaretskii <eliz@gnu.org>
11475
11476 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
11477 platforms that don't link in fontset.c.
11478
11479 2012-05-25 Juri Linkov <juri@jurta.org>
11480
11481 Use the same diff color scheme as in modern VCSes (bug#10181).
11482
11483 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
11484 to avoid confusion with `diff-added' that now uses green colors.
11485 (diff-removed): Use shades of red.
11486 (diff-added): Use shades of green.
11487 (diff-changed): Leave just the yellow color.
11488 (diff-use-changed-face): New variable.
11489 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
11490 how to highlight context diff changes.
11491 (diff-refine-change): Use shades of yellow.
11492 (diff-refine-removed): New face that uses shades of red.
11493 (diff-refine-added): New face that uses shades of green.
11494 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
11495 `diff-refine-removed' in the call to `smerge-refine-subst'
11496 depending on the value of `diff-use-changed-face'.
11497
11498 * vc/smerge-mode.el (smerge-mine): Use shades of red.
11499 (smerge-other): Use shades of green.
11500 (smerge-base): Use shades of yellow.
11501 (smerge-refined-change): Empty face.
11502 (smerge-refined-removed): New face that uses shades of red.
11503 (smerge-refined-added): New face that uses shades of green.
11504 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
11505 args `props-r' and `props-a', and use them. Doc fix.
11506 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
11507 on its value use different faces `smerge-refined-change',
11508 `smerge-refined-removed', `smerge-refined-added' in the call to
11509 `smerge-refine-subst'.
11510
11511 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
11512 Add face condition `min-colors 88' with shades of red.
11513 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
11514 `min-colors 88' with shades of green.
11515 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
11516 `min-colors 88' with shades of yellow.
11517
11518 2012-05-24 Glenn Morris <rgm@gnu.org>
11519
11520 * paths.el (prune-directory-list, remote-shell-program): Move to...
11521 * files.el (prune-directory-list, remote-shell-program): ...here.
11522 For the latter, delay initialization, prefer ssh, just search PATH.
11523
11524 * paths.el (term-file-prefix): Move to faces.el (the only user).
11525 * faces.el (term-file-prefix): Move here, make it a defcustom.
11526
11527 * paths.el (news-directory, news-path, news-inews-program):
11528 Move to gnus/nnspool.el.
11529
11530 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
11531
11532 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
11533 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
11534 Make the latter a defcustom, with a delayed initialization.
11535
11536 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
11537 These were deleted from Gnus itself late 2010.
11538
11539 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
11540
11541 * progmodes/which-func.el (which-func-ff-hook):
11542 Check against user-error, not error.
11543
11544 * emacs-lisp/edebug.el (top): Do not load or set up loading of
11545 cl-specs.el, which no longer exists.
11546
11547 2012-05-22 Glenn Morris <rgm@gnu.org>
11548
11549 * info.el (info-emacs-bug): New command.
11550 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
11551 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
11552
11553 2012-05-21 Glenn Morris <rgm@gnu.org>
11554
11555 * makefile.w32-in (update-subdirs-SH):
11556 * Makefile.in (update-subdirs): Update for moved update-subdirs.
11557
11558 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
11559
11560 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
11561
11562 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11563 Simplify Maven regexp, and make sure the file can't start with a space
11564 (bug#11517).
11565
11566 2012-05-21 Glenn Morris <rgm@gnu.org>
11567
11568 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
11569 Scrap superfluous subshells.
11570
11571 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11572
11573 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
11574 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
11575
11576 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
11577
11578 * calc/calc.el (calc-ensure-consistent-units): New variable.
11579
11580 * calc/calc-units.el (math-consistent-units-p)
11581 (math-check-unit-consistency): New functions.
11582 (calc-quick-units, calc-convert-units):
11583 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
11584 is non-nil.
11585 (calc-extract-units): Fix typo.
11586
11587 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11588
11589 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
11590
11591 * textmodes/flyspell.el: Commenting style, plus code simplifications.
11592 (flyspell-default-deplacement-commands): Don't spell check after
11593 repeated window/frame switches (e.g. triggered by mouse-movement).
11594 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
11595 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
11596 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
11597 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
11598 Remove unused vars.
11599 (flyspell-get-casechars, flyspell-get-not-casechars):
11600 Simplify; Don't bother removing a ] just to add it back.
11601 * textmodes/ispell.el (ispell-program-name): Use executable-find.
11602
11603 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11604
11605 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
11606 New functions.
11607 (math-function-table): Add support for more C functions.
11608
11609 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11610
11611 * textmodes/flyspell.el (flyspell-check-pre-word-p)
11612 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
11613 Protect delay handling for otherchars against empty otherchars.
11614
11615 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11616
11617 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
11618 their respective macro declarations.
11619 * skeleton.el (define-skeleton):
11620 * progmodes/compile.el (define-compilation-mode):
11621 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
11622 (define-ibuffer-filter):
11623 * emacs-lisp/generic.el (define-generic-mode):
11624 * emacs-lisp/easy-mmode.el (define-minor-mode)
11625 (define-globalized-minor-mode):
11626 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
11627 * emacs-lisp/byte-run.el (defsubst):
11628 * custom.el (deftheme): Add doc-string metadata.
11629
11630 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11631
11632 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
11633
11634 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11635
11636 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
11637
11638 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
11639 * emacs-lisp/cl-macs.el: Idem.
11640 * emacs-lisp/cl-specs.el: Remove.
11641
11642 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11643
11644 Minor renaming of internal CL functions and variables.
11645 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
11646 (cl--position): Rename from cl-position.
11647 (cl--delete-duplicates): Rename from cl-delete-duplicates.
11648 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
11649 (cl--random-state): Rename from *random-state*.
11650
11651 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11652
11653 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
11654 parens around the arg list (bug#11499).
11655
11656 2012-05-17 Juri Linkov <juri@jurta.org>
11657
11658 * isearch.el (word-search-regexp, word-search-backward)
11659 (word-search-forward, word-search-backward-lax)
11660 (word-search-forward-lax): Move functions from search.c
11661 (bug#10145, bug#11381).
11662
11663 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11664
11665 * textmodes/flyspell.el (flyspell-check-pre-word-p)
11666 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
11667 Delay for otherchars as for normal word components.
11668
11669 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
11670
11671 * minibuffer.el (completion--sifn-requote): Fix last change.
11672 (minibuffer-local-must-match-filename-map):
11673 Move define-obsolete-variable-alias before its var.
11674
11675 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
11676
11677 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
11678
11679 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
11680 behavior.
11681 (completion--string-equal-p): New function.
11682 (completion--twq-all): Use it to get better assertion failure data.
11683
11684 Only handle ".." and '..' quoting in shell-mode (bug#11466).
11685 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
11686 (shell--requote-argument): New functions.
11687 (shell-completion-vars): Use them.
11688 (shell--parse-pcomplete-arguments): Rename from
11689 shell-parse-pcomplete-arguments.
11690 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
11691 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
11692 Obey comint-file-name-quote-list.
11693
11694 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
11695 (smie-indent-keyword): Use it.
11696
11697 2012-05-14 Stefan Merten <smerten@oekonux.de>
11698
11699 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
11700
11701 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11702
11703 * net/rlogin.el (rlogin-mode-map): Fix last change.
11704
11705 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
11706
11707 * mail/smtpmail.el (smtpmail-send-command): Send the command and
11708 the following \r\n using a single `process-send-string', since the
11709 Lotus SMTP server refuses to accept any commands if they are sent
11710 with two `process-send-string's (Bug#11444).
11711
11712 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11713
11714 * shell.el (shell-parse-pcomplete-arguments):
11715 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
11716
11717 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
11718
11719 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
11720 (image-transform-scale, image-transform-right-angle-fudge): New vars.
11721 (image-transform-width, image-transform-fit-width): New functions.
11722 (image-transform-properties): Use them.
11723 (image-transform-check-size): New function.
11724 (image-toggle-display-image): Use it (for testing).
11725 (image-transform-set-rotation): Reduce angle mod 360.
11726 Delete obsolete comment.
11727
11728 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
11729
11730 * image-mode.el: Fix scaling (bug#11399).
11731 (image-transform-resize): Doc fix.
11732 (image-transform-properties): Default scale is 1 and height should
11733 be an integer.
11734
11735 2012-05-13 Johan Bockgård <bojohan@gnu.org>
11736
11737 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
11738 than hard-coding `car', to fix misbehavior when moving forward.
11739
11740 2012-05-13 Chong Yidong <cyd@gnu.org>
11741
11742 * emacs-lisp/tabulated-list.el (tabulated-list-format)
11743 (tabulated-list-entries, tabulated-list-padding)
11744 (tabulated-list-sort-key): Make permanent-local.
11745
11746 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
11747 (electric-buffer-list): Put electric buffer menu
11748 command descriptions in this docstring, instead of the docstring
11749 of electric-buffer-menu-mode. Code cleanups.
11750 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
11751 Electric-buffer-menu-mode.
11752 (electric-buffer-update-highlight): Minor code cleanup.
11753
11754 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
11755
11756 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
11757 (Bug#11447)
11758
11759 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
11760
11761 Move define-obsolete-variable-alias before the var's definition.
11762 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
11763 * tooltip.el (tooltip-hook):
11764 * textmodes/reftex-toc.el (reftex-toc-map):
11765 * textmodes/reftex-sel.el (reftex-select-label-map)
11766 (reftex-select-bib-map):
11767 * textmodes/reftex-index.el (reftex-index-map)
11768 (reftex-index-phrases-map):
11769 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
11770 * progmodes/meta-mode.el (meta-mode-map):
11771 * novice.el (disabled-command-hook):
11772 * loadhist.el (unload-hook-features-list):
11773 * frame.el (blink-cursor):
11774 * files.el (find-file-not-found-hooks, write-file-hooks)
11775 (write-contents-hooks):
11776 * emulation/tpu-edt.el (GOLD-map):
11777 * emacs-lock.el (emacs-lock-from-exiting):
11778 * emacs-lisp/generic.el (generic-font-lock-defaults):
11779 * emacs-lisp/chart.el (chart-map):
11780 * dos-fns.el (register-name-alist):
11781 * dired-x.el (dired-omit-files-p):
11782 * desktop.el (desktop-enable):
11783 * cus-edit.el (custom-mode-hook):
11784 * buff-menu.el (buffer-menu-mode-hook):
11785 * bookmark.el (bookmark-read-annotation-text-func)
11786 (bookmark-exit-hooks):
11787 * allout.el (allout-mode-deactivate-hook)
11788 (allout-exposure-change-hook, allout-structure-added-hook)
11789 (allout-structure-deleted-hook, allout-structure-shifted-hook):
11790 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
11791 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
11792 comes before the corresponding variable's definition.
11793
11794 2012-05-12 Chong Yidong <cyd@gnu.org>
11795
11796 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
11797 (Buffer-menu-mouse-select): Restore function (Bug#11459).
11798 (Buffer-menu-mode-map): Bind it.
11799 (Buffer-menu--pretty-name): Add a mouse-face property.
11800
11801 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
11802
11803 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
11804 (prolog-upper-case-string, prolog-lower-case-string)
11805 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
11806 (prolog-use-smie, prolog-smie-grammar): New vars.
11807 (prolog-smie-forward-token, prolog-smie-backward-token)
11808 (prolog-smie-rules): New funs.
11809 (prolog-comment-indent): Remove.
11810 (prolog-mode-variables): Use default comment indentation instead.
11811 Setup SMIE.
11812 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
11813 (prolog-mode): Don't call them any more.
11814 (prolog-electric-colon, prolog-electric-dash)
11815 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
11816
11817 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
11818
11819 * minibuffer.el (completion--twq-all): Again, allow case differences.
11820
11821 * term.el: Move keymap initialization code to be more idiomatic.
11822 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
11823 (term-terminal-menu): Move initialization into declaration.
11824 (term-escape-char): Let the user set it in her .emacs.
11825
11826 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
11827 Provide SMIE-based indentation (not enabled by default yet).
11828 (sh-mode-map): Don't bind electric keys.
11829 Use electric-pair-mode instead of skeleton-pair.
11830 (sh-assignment-regexp): Fit within 80 columns.
11831 (sh-indent-supported): Specify actual shell name instead of boolean.
11832 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
11833 (sh-maybe-here-document): Use it. Make obsolete.
11834 (sh-electric-here-document-mode) New minor mode.
11835 (sh-mode): Use it. Don't set sh-indent-supported-here here.
11836 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
11837 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
11838 (sh-smie-rc-grammar, sh-use-smie): New vars.
11839 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
11840 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
11841 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
11842 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
11843 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
11844 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
11845 (sh-set-shell): Use smie-setup if requested.
11846
11847 * term.el (term-set-escape-char): Properly set term-escape-char.
11848 See http://stackoverflow.com/questions/10524656.
11849
11850 2012-05-10 Chong Yidong <cyd@gnu.org>
11851
11852 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
11853 Use url-generic-parse-url, and handle host names and Windows
11854 filenames properly.
11855 (ffap-url-unwrap-remote): Use url-generic-parse-url.
11856 (ffap-url-unwrap-remote): Accept list values, specifying a list of
11857 URL schemes to work on.
11858 (ffap--toggle-read-only): New function.
11859 (ffap-read-only, ffap-read-only-other-window)
11860 (ffap-read-only-other-frame): Use it.
11861 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
11862 necessary for ffap-url-unwrap-remote.
11863
11864 2012-05-10 Dave Abrahams <dave@boostpro.com>
11865
11866 * cus-start.el (create-lockfiles): Add it.
11867
11868 2012-05-09 Chong Yidong <cyd@gnu.org>
11869
11870 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
11871 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
11872
11873 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
11874
11875 * shell.el (shell-completion-vars): Fix last change (bug#11348).
11876
11877 2012-05-09 Chong Yidong <cyd@gnu.org>
11878
11879 * ansi-color.el (ansi-color-process-output): Check for validity of
11880 comint-last-output-start before using it. This avoids a bad
11881 interaction with gdb-mi's input/output buffer.
11882
11883 2012-05-09 Glenn Morris <rgm@gnu.org>
11884
11885 * files.el (dir-locals-read-from-file):
11886 Mention dir-locals in any error message.
11887
11888 2012-05-09 Chong Yidong <cyd@gnu.org>
11889
11890 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
11891 package (Bug#11410).
11892
11893 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
11894 variables into description.
11895
11896 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
11897
11898 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
11899 shell-delimiter-argument-list (bug#11348).
11900 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
11901
11902 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
11903
11904 * textmodes/rst.el: Silence byte-compiler warnings.
11905 (rst-re-alist, rst-reset-section-caches): Move around.
11906 (rst-re): Use `characterp', not `char-valid-p'.
11907 (font-lock-beg, font-lock-end): Declare.
11908
11909 * progmodes/idlw-shell.el (specs): Remove reference to deleted
11910 variable `idlwave-shell-activate-alt-keybindings' and simplify.
11911
11912 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
11913
11914 2012-05-08 Glenn Morris <rgm@gnu.org>
11915
11916 * files.el (auto-mode-alist): Treat ".make" like ".mk".
11917
11918 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11919
11920 * vc/log-edit.el: Add GNU coding standards highlighting.
11921 (log-edit-font-lock-gnu-style)
11922 (log-edit-font-lock-gnu-keywords): New vars.
11923 (log-edit-font-lock-keywords): New fun.
11924 (log-edit-mode): Don't fold case in font-lock.
11925 (log-edit-font-lock-keywords): Do not assume case-folding.
11926
11927 * imenu.el: Misc cleanup. Make docstrings out of comments.
11928 Use lexical-binding.
11929 (imenu--index-alist, imenu--last-menubar-index-alist)
11930 (imenu-menubar-modified-tick): Use defvar-local.
11931 (imenu--split-menu): Remove unused var.
11932 (imenu--cleanup-seen): Declare as global.
11933 (imenu--cleanup): Use dolist.
11934
11935 * subr.el (defvar-local): Add debug spec and doc-string position.
11936
11937 2012-05-08 Glenn Morris <rgm@gnu.org>
11938
11939 * language/burmese.el, language/cham.el, language/czech.el:
11940 * language/english.el, language/georgian.el, language/greek.el:
11941 * language/japanese.el, language/khmer.el, language/korean.el:
11942 * language/lao.el, language/misc-lang.el, language/romanian.el:
11943 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
11944 * language/thai.el, language/utf-8-lang.el:
11945 Remove no-byte-compile setting.
11946
11947 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
11948
11949 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11950
11951 * progmodes/make-mode.el (makefile-browse):
11952 Remove unnecessary interactive. (Bug#11324)
11953
11954 2012-05-07 Glenn Morris <rgm@gnu.org>
11955
11956 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
11957
11958 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
11959
11960 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11961
11962 * loadup.el: Preload newcomment.el.
11963 * newcomment.el: Move autoload-only code to toplevel.
11964
11965 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
11966 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
11967 Handle new :right-align column property.
11968 (tabulated-list-print-col): Idem, plus use `display' text-property to
11969 try and preserve alignment for variable pitch fonts.
11970
11971 2012-05-07 Chong Yidong <cyd@gnu.org>
11972
11973 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
11974 (tabulated-list-use-header-line): New var.
11975 (tabulated-list-init-header): Use it.
11976 (tabulated-list-print-fake-header): New function.
11977 (tabulated-list-print): Use it.
11978 (tabulated-list-sort-button-map): Add non-header-line commands.
11979 (tabulated-list-init-header): Add column name property to basic
11980 labels as well.
11981 (tabulated-list-col-sort): Handle non-header-line button case.
11982 (tabulated-list--sort-by-column-name): Fix a corner case.
11983
11984 * buff-menu.el (list-buffers--refresh):
11985 Handle Buffer-menu-use-header-line.
11986
11987 2012-05-06 Chong Yidong <cyd@gnu.org>
11988
11989 * buff-menu.el: Convert to Tabulated List mode.
11990 (Buffer-menu-buffer+size-width): Make obsolete.
11991 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
11992 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
11993 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
11994 documentation into docstring of buffer-menu.
11995 (Buffer-menu-toggle-files-only): Add an informative message.
11996 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
11997 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
11998 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
11999 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
12000 (Buffer-menu-execute, Buffer-menu-select)
12001 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
12002 (Buffer-menu-bury): Use Tabulated List machinery.
12003 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
12004 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
12005 Delete.
12006 (list-buffers--refresh): New function.
12007 (list-buffers-noselect): Use it.
12008 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
12009 (Buffer-menu--pretty-file-name): New helper functions.
12010
12011 * loadup.el: Preload tabulated-list.
12012
12013 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
12014 tabulated-list-sort-column.
12015 (tabulated-list-init-header): Add the initial aligning space even
12016 if tabulated-list-padding is zero.
12017
12018 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
12019
12020 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
12021 whose cdr is not a cons cell correctly (bug#11038).
12022
12023 2012-05-06 Chong Yidong <cyd@gnu.org>
12024
12025 * emacs-lisp/tabulated-list.el (tabulated-list-format):
12026 Accept additional plist in column descriptors.
12027 (tabulated-list-init-header): Obey it.
12028 (tabulated-list-get-entry): New function.
12029 (tabulated-list-put-tag): Use it. Use string-width instead of
12030 length.
12031 (tabulated-list--column-number): New function.
12032 (tabulated-list-print): Use it.
12033 (tabulated-list-print-col): New function.
12034 Set `tabulated-list-column-name' property on each column's text.
12035 (tabulated-list-print-entry): Use it.
12036 (tabulated-list-delete-entry, tabulated-list-set-col):
12037 New functions.
12038 (tabulated-list-sort-column): New command (Bug#11337).
12039
12040 * buff-menu.el (list-buffers): Move C-x C-b binding from
12041 buff-menu.el to bindings.el.
12042
12043 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
12044 :advertised-binding feature.
12045
12046 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
12047
12048 * progmodes/compile.el (compilation-internal-error-properties):
12049 Calculate start position correctly when end-col is set but
12050 end-line is not (Bug#11382).
12051
12052 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
12053
12054 * man.el (Man-unindent): Use text-property-default-nonsticky to
12055 prevent untabify from inheriting face properties (Bug#11408).
12056
12057 2012-05-05 Stefan Merten <smerten@oekonux.de>
12058
12059 * textmodes/rst.el: Major merge with upstream development up to
12060 Docutils SVN r7399 / rst.el V1.2.1.
12061
12062 Clarify maintainership and authors.
12063
12064 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
12065 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
12066 (rst-official-version, rst-official-cvs-rev, rst-version)
12067 (rst-package-emacs-version-alist): New functions and variables
12068 for version information.
12069
12070 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
12071 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
12072 (rst-mode-syntax-table, rst-mode): New and corrected functions
12073 and variables representing reStructuredText features.
12074
12075 (rst-re): New function for reStructuredText regexes. Use in
12076 many places.
12077
12078 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
12079 (rst-mode-map): Rebind keys.
12080
12081 (rst-mode-lazy, rst-font-lock-keywords)
12082 (rst-font-lock-extend-region)
12083 (rst-font-lock-extend-region-internal)
12084 (rst-font-lock-extend-region-extend)
12085 (rst-font-lock-find-unindented-line-limit)
12086 (rst-font-lock-find-unindented-line-match)
12087 (rst-adornment-level, rst-font-lock-adornment-level)
12088 (rst-font-lock-adornment-match)
12089 (rst-font-lock-handle-adornment-pre-match-form)
12090 (rst-font-lock-handle-adornment-matcher): Major revision of
12091 font-locking. Integrate with other code. Use `jit-lock-mode'.
12092
12093 (rst-preferred-adornments, rst-adjust-hook)
12094 (rst-new-adornment-down, rst-preferred-bullets)
12095 (rst-preferred-bullets, rst-indent, rst-indent-width)
12096 (rst-indent-field, rst-indent-literal-normal)
12097 (rst-indent-literal-minimized, rst-indent-comment): Change,
12098 extend and improve customization.
12099
12100 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
12101 (rst-normalize-cursor-position, rst-get-decoration)
12102 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
12103 (rst-rstrip, rst-toc-insert-find-delete-contents)
12104 (rst-shift-fill-region, rst-compute-bullet-tabs)
12105 (rst-debug-print-tabs, rst-debug-mark-found)
12106 (rst-shift-region-guts, rst-shift-region-right)
12107 (rst-shift-region-left, rst-use-char-classes)
12108 (rst-font-lock-keywords-function)
12109 (rst-font-lock-indentation-point)
12110 (rst-font-lock-find-unindented-line-begin)
12111 (rst-font-lock-find-unindented-line-end)
12112 (rst-font-lock-find-unindented-line)
12113 (rst-font-lock-adornment-point, rst-font-lock-level)
12114 (rst-adornment-level-alist): Remove functions and variables.
12115
12116 (rst-compare-adornments, rst-get-adornment-match)
12117 (rst-suggest-new-adornment, rst-get-adornments-around)
12118 (rst-adornment-complete-p, rst-get-next-adornment)
12119 (rst-adjust-adornment, rst-display-adornments-hierarchy)
12120 (rst-straighten-adornments): Standardize function names to
12121 use "adornment" instead of "decoration". Correct callers.
12122 Similar standardizing in many places.
12123
12124 (rst-update-section, rst-adjust, rst-promote-region)
12125 (rst-enumerate-region, rst-bullet-list-region)
12126 (rst-repeat-last-character): Correct use of `interactive'.
12127
12128 (rst-classify-adornment, rst-find-all-adornments)
12129 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
12130 (rst-find-leftmost-column, rst-repeat-last-character):
12131 Refactor functions.
12132
12133 (rst-find-title-line, rst-reset-section-caches)
12134 (rst-get-adornments-around, rst-adjust-adornment-work)
12135 (rst-arabic-to-roman, rst-roman-to-arabic)
12136 (rst-insert-list-pos, rst-insert-list-new-item)
12137 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
12138 New functions.
12139
12140 (rst-all-sections, rst-section-hierarchy)
12141 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
12142 New variables.
12143
12144 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
12145 configuration instead of only buffer. Change where necessary.
12146
12147 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
12148 (rst-shift-region, rst-adaptive-fill): New functions for
12149 indentation and filling.
12150
12151 (rst-comment-line-break, rst-comment-indent)
12152 (rst-comment-insert-comment, rst-comment-region)
12153 (rst-uncomment-region): New functions for handling comments.
12154
12155 (rst-compile): Quote shell arguments.
12156
12157 (rst-compile-pdf-preview, rst-compile-slides-preview):
12158 Delete temporary files after use.
12159
12160 2012-05-05 Glenn Morris <rgm@gnu.org>
12161
12162 * calendar/cal-html.el: Optionally include holidays in the output.
12163 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
12164 (cal-html-holidays): New option.
12165 (cal-html-css-default): Add holiday entry.
12166 (holiday-in-range): Autoload it.
12167 (cal-html-htmlify-entry): Add optional class argument.
12168 (cal-html-htmlify-list): Add optional holidays argument.
12169 (cal-html-insert-agenda-days): Include holidays in the output.
12170 (cal-html-one-month): Maybe include holidays.
12171
12172 * calendar/holidays.el (holiday-in-range):
12173 Move here from cal-tex-list-holidays.
12174 * calendar/cal-tex.el (cal-tex-list-holidays):
12175 Make it an obsolete alias for holiday-in-range. Update all callers.
12176
12177 2012-05-05 Chong Yidong <cyd@gnu.org>
12178
12179 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
12180 Nextstep.
12181
12182 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
12183
12184 * files.el (file-auto-mode-skip): New var.
12185 (set-auto-mode-1): Use it.
12186
12187 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
12188
12189 * repeat.el: Use lexical-binding.
12190 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
12191 (repeat-undo-count): Remove.
12192 (repeat):
12193 * progmodes/octave-mod.el (octave-abbrev-start):
12194 * progmodes/f90.el (f90-abbrev-start):
12195 * face-remap.el (text-scale-adjust):
12196 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
12197
12198 * emacs-lisp/pcase.el (pcase--let*): New function.
12199 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
12200 a bit more.
12201 (pcase--split-pred): Be more clever about ruling out overlap between
12202 a predicate and some constant pattern.
12203 (pcase--q1): Use `null' instead of (eq foo nil).
12204
12205 * subr.el (setq-local, defvar-local): New macros.
12206 (kbd): Redefine as an alias.
12207 (with-selected-window): Leave unrelated frames alone.
12208 (set-temporary-overlay-map): New function.
12209
12210 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12211
12212 * subr.el (user-error): New function.
12213 * window.el (switch-to-buffer):
12214 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
12215 (smerge-match-conflict):
12216 * simple.el (previous-matching-history-element)
12217 (next-matching-history-element, goto-history-element, undo-more)
12218 (undo-start):
12219 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
12220 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
12221 (next-file, tags-loop-scan, list-tags, complete-tag):
12222 * progmodes/compile.el (compilation-loop):
12223 * mouse.el (mouse-minibuffer-check):
12224 * man.el (Man-bgproc-sentinel, Man-goto-page):
12225 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
12226 (Info-history-forward, Info-follow-reference, Info-menu)
12227 (Info-extract-menu-item, Info-extract-menu-counting)
12228 (Info-forward-node, Info-backward-node, Info-next-menu-item)
12229 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
12230 (Info-next-reference, Info-prev-reference, Info-index)
12231 (Info-index-next, Info-follow-nearest-node)
12232 (Info-copy-current-node-name):
12233 * imenu.el (imenu--make-index-alist)
12234 (imenu-default-create-index-function, imenu-add-to-menubar):
12235 * files.el (basic-save-buffer, recover-file):
12236 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12237 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
12238 (checkdoc-message-text, checkdoc-defun):
12239 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
12240 * cus-edit.el (customize-changed-options, customize-rogue)
12241 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
12242 (custom-variable-mark-to-reset-standard)
12243 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
12244 (custom-file):
12245 * completion.el (check-completion-length):
12246 * comint.el (comint-search-arg)
12247 (comint-previous-matching-input-string-position)
12248 (comint-previous-matching-input)
12249 (comint-replace-by-expanded-history-before-point, comint-send-input)
12250 (comint-copy-old-input, comint-backward-matching-input)
12251 (comint-goto-process-mark, comint-set-process-mark):
12252 * calendar/calendar.el (calendar-cursor-to-date): Use it.
12253 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
12254
12255 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12256
12257 * dabbrev.el (dabbrev--ignore-case-p): New function.
12258 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
12259 Use it.
12260
12261 * files.el (automount-dir-prefix): Mark as obsolete.
12262
12263 2012-05-04 Glenn Morris <rgm@gnu.org>
12264
12265 * patcomp.el, play/bruce.el: Move to obsolete/.
12266
12267 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
12268
12269 Fix minor Y10k bugs.
12270 * arc-mode.el (archive-unixdate):
12271 * autoinsert.el (auto-insert-alist):
12272 * calc/calc-forms.el (math-this-year):
12273 * emacs-lisp/copyright.el (copyright-current-year)
12274 (copyright-update-year, copyright):
12275 * tar-mode.el (tar-clip-time-string):
12276 * time.el (display-time-update):
12277 Don't assume years have 4 digits.
12278
12279 2012-05-04 Chong Yidong <cyd@gnu.org>
12280
12281 * dos-w32.el (file-name-buffer-file-type-alist)
12282 (direct-print-region-use-command-dot-com):
12283 * ffap.el (ffap-menu-regexp):
12284 * find-file.el (ff-special-constructs):
12285 * follow.el (follow-debug):
12286 * forms.el (forms--debug):
12287 * iswitchb.el (iswitchb-all-frames):
12288 * ido.el (ido-all-frames):
12289 * emacs-lisp/timer.el (timer-max-repeats):
12290 * mail/feedmail.el (feedmail-mail-send-hook)
12291 (feedmail-mail-send-hook-queued):
12292 * mail/footnote.el (footnote-signature-separator):
12293 * mail/mailabbrev.el (mail-alias-separator-string)
12294 (mail-abbrev-mode-regexp):
12295 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
12296 * progmodes/idlwave.el (idlwave-libinfo-file)
12297 (idlwave-default-completion-case-is-down)
12298 (idlwave-library-routines): Convert defvars to defcustoms.
12299
12300 * mail/rmail.el (rmail-decode-mime-charset):
12301 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
12302 (idlwave-shell-fix-inserted-breaks)
12303 (idlwave-shell-activate-alt-keybindings)
12304 (idlwave-shell-use-breakpoint-glyph):
12305 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
12306
12307 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12308
12309 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
12310
12311 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
12312
12313 * progmodes/verilog-mode.el (font-lock-keywords):
12314 Fix mis-highligting auto. Reported by Craig Barner.
12315 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
12316 defines from global name space. Reported by Dan Dever.
12317 (verilog-auto-reset, verilog-auto-reset-widths)
12318 (verilog-auto-tieoff): Support using unbased numbers for
12319 AUTORESET and AUTOTIEOFF.
12320 (verilog-submit-bug-report): Update variable list.
12321 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
12322 parenthesis from not matching. Reported by Michael Rytting.
12323 (verilog-auto-template-lint): Fix hash error when linting modules
12324 with no used templates.
12325 (verilog-warn, verilog-warn-error)
12326 (verilog-warn-fatal): When non-interactive report multiple
12327 warnings before exiting. Suggested by Brad Dobbie.
12328 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
12329 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
12330 to report unused template errors. Reported by Brad Dobbie.
12331 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
12332 nets, bug438. Reported by Vns Blore.
12333 (verilog-auto-inout-module, verilog-auto-reg)
12334 (verilog-read-decls, verilog-read-sub-decls-sig)
12335 (verilog-signals-edit-wire-reg, verilog-signals-with):
12336 Fix passing of Verilog data types in ANSI input/output ports
12337 such as "output logic" into the AUTOs. Special case "wire" and
12338 "reg" for backwards compatibility presuming Verilog 2001.
12339 (verilog-auto-ascii-enum): Add "auto enum" as alias.
12340 (verilog-preprocess): Fix replication of preprocess output.
12341 Reported by Brad Dobbie.
12342 (verilog-auto-inst-interfaced-ports):
12343 Create verilog-auto-inst-interfaced-ports, bug429.
12344 Reported by Julian Gorfajn.
12345 (verilog-after-save-font-hook)
12346 (verilog-before-save-font-hook): New variable.
12347 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
12348 (verilog-save-font-mods): Wrap disabling fontification, reported
12349 by David Rogoff.
12350 (verilog-do-indent, verilog-pretty-declarations-auto)
12351 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
12352 Reported by Pierre-David Pfister.
12353 (verilog-set-auto-endcomments): Fix endtask auto comments outside
12354 of class declarations, bug292. Reported by Kevin Heilman.
12355 (verilog-read-decls): Fix 'parameter type' not appearing in
12356 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
12357 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
12358 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
12359 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
12360 Reported by David Kravitz.
12361
12362 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
12363
12364 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
12365 assignment with tests in ifs and for loops.
12366 (verilog-extended-complete-re, verilog-complete-reg): Change so
12367 that DPI inport functions don't look like fuction declarations.
12368 (verilog-pretty-expr): Don't line up assignment
12369 operations to the test and increment in if and for loops
12370 (verilog-extended-complete-re, verilog-complete-reg): Change so
12371 that DPI inport functions don't look like fuction declarations.
12372
12373 2012-05-03 Kenichi Handa <handa@m17n.org>
12374
12375 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
12376 decoding, and show a warning message without signaling an error
12377 (Bug#11282).
12378
12379 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12380
12381 * emacs-lisp/bytecomp.el
12382 (byte-compile-file-form-custom-declare-variable): Compile all elements,
12383 since cconv.el might have introduced :fun-body, internal-make-closure,
12384 and friends for bytecomp to handle (bug#11391).
12385 * custom.el (defcustom): Avoid ((λ ..) ..).
12386
12387 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
12388
12389 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
12390
12391 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
12392
12393 * notifications.el (dbus-debug):
12394 * term/linux.el (gpm-mouse-enable):
12395 * term/screen.el (xterm-register-default-colors): Declare.
12396
12397 2012-05-02 Chong Yidong <cyd@gnu.org>
12398
12399 * cus-start.el (gc-cons-percentage, exec-suffixes)
12400 (dos-display-scancodes, dos-hyper-key, dos-super-key)
12401 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
12402 (make-cursor-line-fully-visible, void-text-area-pointer)
12403 (font-list-limit): Add customization data.
12404
12405 * allout.el (allout-exposure-change-functions)
12406 (allout-structure-added-functions)
12407 (allout-structure-deleted-functions)
12408 (allout-structure-shifted-functions): Rename abnormal hooks from
12409 *-hook, and convert to defcustoms.
12410 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
12411 Convert to defcustoms.
12412 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
12413
12414 * allout-widgets.el: Hook callers changed.
12415
12416 2012-05-02 Eli Zaretskii <eliz@gnu.org>
12417
12418 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
12419 the yanked message in preference to the default value of
12420 buffer-file-coding-system.
12421
12422 2012-05-02 Martin Rudalics <rudalics@gmx.at>
12423
12424 * window.el (display-buffer--action-function-custom-type):
12425 Fix entry.
12426
12427 2012-05-02 Alan Mackenzie <acm@muc.de>
12428
12429 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
12430
12431 2012-05-01 Glenn Morris <rgm@gnu.org>
12432
12433 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
12434
12435 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
12436
12437 * cus-edit.el (custom-variable-documentation): Simplify with format.
12438
12439 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12440 Stefan Monnier <monnier@iro.umontreal.ca>
12441
12442 * simple.el (suggest-key-bindings, execute-extended-command):
12443 Move from keyboard.c.
12444
12445 2012-05-01 Chong Yidong <cyd@gnu.org>
12446
12447 * follow.el: Eliminate advice.
12448 (set-process-filter, process-filter, sit-for): Advice deleted.
12449 (follow-mode-off-hook): Obsolete hook removed.
12450 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
12451 Vars deleted.
12452 (follow-auto): Use a :set function.
12453 (follow-mode): Rewritten. Don't advise process filters.
12454 (follow-switch-to-current-buffer-all, follow-scroll-up)
12455 (follow-scroll-down): Assume follow-mode is bound.
12456 (follow-comint-scroll-to-bottom)
12457 (follow-align-compilation-windows): New functions.
12458 (follow--window-sorter): New function.
12459 (follow-all-followers): Use it to explicitly sort windows by their
12460 positions; don't make assumptions about next-window order.
12461 (follow-windows-start-end, follow-delete-other-windows-and-split)
12462 (follow-calc-win-start): Doc fix.
12463 (follow-windows-aligned-p, follow-select-if-visible): Don't call
12464 vertical-motion unnecessarily.
12465 (follow-adjust-window): New function.
12466 (follow-post-command-hook): Use it.
12467 (follow-call-set-process-filter, follow-call-process-filter)
12468 (follow-intercept-process-output, follow-tidy-process-filter-alist)
12469 (follow-stop-intercept-process-output, follow-generic-filter):
12470 Functions deleted.
12471 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
12472 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
12473 New functions, replacing advice on scroll-bar-* commands.
12474 (follow-mwheel-scroll): New function (Bug#4112).
12475
12476 * comint.el (comint-adjust-point): New function.
12477 (comint-postoutput-scroll-to-bottom): Use it.
12478 Call follow-comint-scroll-to-bottom for Follow mode buffers.
12479
12480 2012-05-01 Glenn Morris <rgm@gnu.org>
12481
12482 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
12483 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
12484 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
12485 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
12486 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
12487 Remove no-byte-compile setting.
12488
12489 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
12490
12491 * minibuffer.el (completion-table-with-quoting): Fix compatibility
12492 all-completions code to not return a number in the last cdr.
12493
12494 2012-04-30 Leo Liu <sdl.web@gmail.com>
12495
12496 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
12497 read-only error.
12498
12499 2012-04-29 Chong Yidong <cyd@gnu.org>
12500
12501 * follow.el (follow-calc-win-end): Rewrite to handle partial
12502 screen lines correctly (Bug#8390).
12503 (follow-avoid-tail-recenter): Minor cleanup.
12504
12505 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
12506
12507 Avoid the obsolete `assoc' package.
12508 * speedbar.el (speedbar-refresh): Avoid adelete.
12509 (speedbar-file-lists): Simplify and avoid aput.
12510 * man.el (Man--sections, Man--refpages): New vars, replacing
12511 Man-sections-alist and Man-refpages-alist.
12512 (Man-build-section-alist, Man-build-references-alist):
12513 Use them; avoid aput.
12514 (Man--last-section, Man--last-refpage): New vars.
12515 (Man-follow-manual-reference): Use them.
12516 Use the `default' arg of completing-read.
12517 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
12518
12519 2012-04-27 Chong Yidong <cyd@gnu.org>
12520
12521 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
12522
12523 * startup.el (x-apply-session-resources): New function.
12524
12525 * term/ns-win.el (ns-initialize-window-system):
12526 * term/w32-win.el (w32-initialize-window-system):
12527 * term/x-win.el (x-initialize-window-system): Use it to properly
12528 set menu-bar-mode and other vars from X resources, even if the
12529 initial frame is not a window-system frame (Bug#2299).
12530
12531 * subr.el (read-key): Avoid running filter function when setting
12532 up temporary tool bar entries (Bug#9922).
12533
12534 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
12535
12536 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
12537 (Bug#11344)
12538
12539 2012-04-27 Chong Yidong <cyd@gnu.org>
12540
12541 * select.el (xselect--encode-string): New function, split from
12542 xselect-convert-to-string.
12543 (xselect-convert-to-string): Use it.
12544 (xselect-convert-to-filename, xselect-convert-to-os)
12545 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
12546 returned strings are properly encoded (Bug#11315).
12547
12548 2012-04-27 Chong Yidong <cyd@gnu.org>
12549
12550 * simple.el (delete-active-region): Move to killing custom group.
12551
12552 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
12553
12554 * progmodes/which-func.el (which-func-current): Quote %
12555 characters for mode-line processing.
12556
12557 2012-04-27 Chong Yidong <cyd@gnu.org>
12558
12559 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
12560 reaching eob (Bug#11286).
12561
12562 2012-04-27 Eli Zaretskii <eliz@gnu.org>
12563
12564 * progmodes/gdb-mi.el (gdb-control-level): New variable.
12565 (gdb): Make it buffer-local and init to zero.
12566 (gdb-control-commands-regexp): New variable.
12567 (gdb-send): Don't wrap in "-interpreter-exec console" if
12568 gdb-control-level is positive. Increment gdb-control-level
12569 whenever the command matches gdb-control-commands-regexp, and
12570 decrement it each time the command is "end". (Bug#11279)
12571
12572 2012-04-27 Martin Rudalics <rudalics@gmx.at>
12573
12574 * window.el (adjust-window-trailing-edge, enlarge-window)
12575 (shrink-window, window-resize):
12576 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
12577 windows (Bug#11276).
12578
12579 2012-04-27 Chong Yidong <cyd@gnu.org>
12580
12581 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
12582 fix "missing prefix" warning. All callers changed.
12583
12584 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
12585
12586 * emacs-lisp/assoc.el: Move to obsolete/.
12587
12588 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
12589
12590 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
12591
12592 * term/ns-win.el (ns-define-service):
12593 * progmodes/pascal.el (pascal-goto-defun):
12594 * progmodes/js.el (js--read-tab):
12595 * progmodes/etags.el (tags-lazy-completion-table):
12596 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
12597 * emacs-lisp/ewoc.el (ewoc--wrap):
12598 * emacs-lisp/assoc.el (aput, adelete, amake):
12599 * doc-view.el (doc-view-convert-current-doc):
12600 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
12601
12602 2012-04-26 Chong Yidong <cyd@gnu.org>
12603
12604 * image.el (image-type-from-buffer): Only return supported image
12605 type (Bug#9045).
12606
12607 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
12608 value, for symmetry with diff-end-of-hunk.
12609 (diff-split-hunk, diff-find-source-location)
12610 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
12611 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
12612 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
12613 compute the relevant hunk or file properly (Bug#6005).
12614 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
12615
12616 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
12617
12618 * vc/vc-mtn.el:
12619 * vc/vc-hg.el:
12620 * vc/vc-git.el:
12621 * vc/vc-dir.el:
12622 * vc/vc-cvs.el:
12623 * vc/vc-bzr.el:
12624 * vc/vc-arch.el:
12625 * vc/vc.el: Replace lexical-let by lexical-binding.
12626 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
12627 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
12628 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
12629
12630 2012-04-26 Chong Yidong <cyd@gnu.org>
12631
12632 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
12633 (diff-mode-shared-map): Bind it to / and [remap undo].
12634
12635 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
12636 (ediff-window-setup-function): Use it as the default, to set up
12637 windows based on whether the current frame is graphical (Bug#2138).
12638 (ediff-choose-window-setup-function-automatically): Make obsolete.
12639
12640 * vc/ediff-init.el: Always define ediff-pixel-width/height.
12641
12642 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
12643
12644 * ffap.el: Remove old code for obsolete package.
12645 (ffap-complete-as-file-p): Remove.
12646
12647 Use completion-table-with-quoting for comint and pcomplete.
12648 * comint.el (comint--unquote&requote-argument)
12649 (comint--unquote-argument, comint--requote-argument): New functions.
12650 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
12651 (comint-quote-filename): Use regexp-opt-charset.
12652 (comint--common-suffix, comint--common-quoted-suffix)
12653 (comint--table-subvert): Remove.
12654 (comint-unquote-function, comint-requote-function): New vars.
12655 (comint--complete-file-name-data): Use them with
12656 completion-table-with-quoting.
12657 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
12658 * pcomplete.el (pcomplete-arg-quote-list)
12659 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
12660 (pcomplete-unquote-argument-function): Default to non-nil.
12661 (pcomplete-unquote-argument): Simplify.
12662 (pcomplete--common-quoted-suffix): Remove.
12663 (pcomplete-requote-argument-function): New var.
12664 (pcomplete--common-suffix): New function.
12665 (pcomplete-completions-at-point): Use completion-table-with-quoting
12666 and completion-table-subvert.
12667
12668 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
12669 (minibuffer--double-dollars): Preserve properties.
12670 (completion--sifn-requote): New function.
12671 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
12672
12673 * minibuffer.el: Add support for completion of quoted/escaped data.
12674 (completion-table-with-quoting, completion-table-subvert): New funs.
12675 (completion--twq-try, completion--twq-all): New functions.
12676 (completion--nth-completion): New function.
12677 (completion-try-completion, completion-all-completions): Use it.
12678
12679 2012-04-25 Leo Liu <sdl.web@gmail.com>
12680
12681 * progmodes/python.el (python-pdbtrack-get-source-buffer):
12682 Use compilation-message if available to find real filename.
12683
12684 2012-04-25 Chong Yidong <cyd@gnu.org>
12685
12686 * vc/diff-mode.el (diff-setup-whitespace): New function.
12687 (diff-mode): Use it.
12688
12689 * vc/diff.el (diff-sentinel):
12690 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
12691 Whitespace mode variables based on diff style (Bug#8612).
12692
12693 2012-04-25 Leo Liu <sdl.web@gmail.com>
12694
12695 * progmodes/python.el (python-send-region): Add suffix .py to the
12696 temp file.
12697
12698 * files.el (auto-mode-alist): Use javascript-mode instead.
12699
12700 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
12701
12702 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
12703
12704 * net/soap-client.el (soap-resolve-references-for-sequence-type)
12705 (soap-resolve-references-for-array-type): Hack to prevent self
12706 references, see Bug#9.
12707 (soap-parse-envelope): Report the contents of the 'detail' node
12708 when receiving a fault reply.
12709 (soap-parse-envelope): Report the contents of the entire 'detail' node.
12710
12711 * net/soap-inspect.el (soap-sample-value-for-simple-type)
12712 (soap-inspect-simple-type): New function.
12713
12714 * net/soap-client.el (soap-simple-type): New struct.
12715 (soap-default-xsd-types, soap-default-soapenc-types)
12716 (soap-decode-basic-type, soap-encode-basic-type):
12717 support unsignedInt and double basic types.
12718 (soap-resolve-references-for-simple-type)
12719 (soap-parse-simple-type, soap-encode-simple-type): New function.
12720 (soap-parse-schema): Parse xsd:simpleType declarations.
12721
12722 * net/soap-client.el (soap-default-xsd-types)
12723 (soap-default-soapenc-types): Add integer, byte and anyURI types.
12724 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
12725 the local name of "soapenc:Array".
12726 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
12727 decoding integer, byte and anyURI xsd types.
12728
12729 2012-04-25 Chong Yidong <cyd@gnu.org>
12730
12731 * cus-edit.el (custom-buffer-create-internal): Update header text.
12732
12733 2012-04-25 Eli Zaretskii <eliz@gnu.org>
12734
12735 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
12736 settings on 'system-type', not on 'window-system'. On MS-Windows,
12737 set interactive-mode on in GDB.
12738
12739 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
12740
12741 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
12742 (ruby-syntax-propertize-regexp): Remove.
12743 (ruby-syntax-propertize-function): Split regexp into chunks.
12744 Match following code directly.
12745
12746 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
12747
12748 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
12749 (ruby-syntax-propertize-regexp): New function.
12750 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
12751 by a special keyword.
12752
12753 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
12754 (ruby-syntax-general-delimiters-goto-beg)
12755 (ruby-syntax-propertize-general-delimiters): New functions.
12756 (ruby-syntax-propertize-function): Use them to handle GDL.
12757 (ruby-font-lock-keywords): Move old handling of GDL...
12758 (ruby-font-lock-syntactic-keywords): .. to here.
12759 (ruby-calculate-indent): Adjust indentation for GDL.
12760
12761 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
12762
12763 * notifications.el (top): Remove unneeded declarations.
12764 (notifications-specification-version): Change to "1.2".
12765 (notifications-interface, notifications-notify-method)
12766 (notifications-close-notification-method): Fix docstring.
12767 (notifications-get-capabilities-method): New defconst.
12768 (notifications-notify): Add :action-items, :resident and
12769 :transient hints. Change "image_data" to "image-data" and
12770 "image_path" to "image-path".
12771 (notifications-get-capabilities): New defun.
12772
12773 2012-04-24 Leo Liu <sdl.web@gmail.com>
12774
12775 * progmodes/python.el: Move hideshow setup to the end.
12776
12777 2012-04-24 Martin Rudalics <rudalics@gmx.at>
12778
12779 * window.el (handle-select-window): Clear echo area since this is
12780 no more done by read_char (Bug#11304).
12781
12782 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
12783
12784 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
12785 and `/ M' to filter-derived-mode.
12786 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
12787 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
12788 (ibuffer-mark-by-mode): Use default rather than initial-input.
12789 (ibuffer-filter-by-derived-mode): Autoload and require-match.
12790
12791 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
12792
12793 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
12794 (ibuffer-filter-by-derived-mode): New filter.
12795 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
12796
12797 2012-04-23 Andreas Politz <politza@fh-trier.de>
12798
12799 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
12800
12801 2012-04-23 Chong Yidong <cyd@gnu.org>
12802
12803 * cus-edit.el (customize-apropos, customize-apropos-options):
12804 Disable matching of non-option variables (Bug#11176).
12805 (customize-option, customize-option-other-window)
12806 (customize-changed-options): Doc fix.
12807 (customize-apropos-options, customize-apropos-faces)
12808 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
12809
12810 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
12811 Fix word list splitting (Bug#11132).
12812 (apropos-symbol, apropos-keybinding, apropos-label)
12813 (apropos-property, apropos-function-button)
12814 (apropos-variable-button, apropos-misc-button): New faces.
12815 (apropos-symbol-face, apropos-keybinding-face)
12816 (apropos-label-face, apropos-property-face, apropos-match-face):
12817 Variables removed (Bug#8396).
12818 (apropos-library-button, apropos-format-plist, apropos-print)
12819 (apropos-print-doc, apropos-describe-plist): Callers changed.
12820
12821 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
12822
12823 * net/xesam.el (xesam-mode-map): Use let-bound map in
12824 initialization. (Bug#11292)
12825
12826 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12827
12828 Preserve ispell session localwords when switching back to
12829 original buffer.
12830
12831 * textmodes/ispell.el (ispell-buffer-session-localwords):
12832 New buffer-local variable to hold buffer session localwords.
12833 (ispell-kill-ispell): Add option 'clear to delete session
12834 localwords.
12835 (ispell-command-loop, ispell-change-dictionary)
12836 (ispell-buffer-local-words): Preserve session localwords when
12837 needed.
12838
12839 * textmodes/flyspell.el (flyspell-process-localwords)
12840 (flyspell-do-correct): Preserve session localwords when needed.
12841
12842 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12843
12844 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
12845 using obsolete `translation-table-for-input'.
12846 (ispell-word, ispell-process-line, ispell-complete-word):
12847 Use plain `insert' instead of removed `ispell-insert-word'.
12848
12849 2012-04-22 Chong Yidong <cyd@gnu.org>
12850
12851 * cus-edit.el (custom-variable-menu)
12852 (custom-variable-reset-saved, custom-face-menu)
12853 (custom-face-reset-saved): If there is no saved value, make the
12854 "reset-saved" operation bring back the default (Bug#9509).
12855 (custom-face-state): Properly detect themed faces.
12856
12857 * faces.el (face-spec-set): Stop supporting deprecated form of
12858 third arg.
12859
12860 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
12861
12862 Move functions from C to Lisp. Make non-blocking method calls
12863 the default. Implement further D-Bus standard interfaces.
12864
12865 * net/dbus.el (dbus-message-internal): Declare function.
12866 Remove unneeded function declarations.
12867 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
12868 (dbus-message-type-method-return, dbus-message-type-error)
12869 (dbus-message-type-signal): Declare variables. Remove local
12870 definitions.
12871 (dbus-interface-dbus, dbus-interface-peer)
12872 (dbus-interface-introspectable, dbus-interface-properties)
12873 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
12874 Adapt docstring.
12875 (dbus-interface-objectmanager): New defconst.
12876 (dbus-call-method, dbus-call-method-asynchronously)
12877 (dbus-send-signal, dbus-method-return-internal)
12878 (dbus-method-error-internal, dbus-register-service)
12879 (dbus-register-signal, dbus-register-method): New defuns, moved
12880 from dbusbind.c
12881 (dbus-call-method-handler, dbus-setenv)
12882 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
12883 New defuns.
12884 (dbus-call-method-non-blocking): Make it an obsolete function.
12885 (dbus-unregister-object, dbus-unregister-service)
12886 (dbus-handle-event, dbus-register-property)
12887 (dbus-property-handler): Obey the new structure of
12888 `bus-registered-objects'.
12889 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
12890 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
12891 Use `dbus-call-method'.
12892
12893 2012-04-22 Chong Yidong <cyd@gnu.org>
12894
12895 * cus-edit.el (custom-commands, custom-reset-menu)
12896 (Custom-reset-standard): Tweak labels.
12897 (custom-reset-button-menu): Change default to t.
12898 (custom-buffer-create-internal): For the custom-reset-button-menu
12899 case, put the revert button first.
12900 (custom-group-subtitle): New face.
12901 (custom-group-value-create): Align docstring to a specific column.
12902
12903 * wid-edit.el (widget-documentation-link-add): Don't handle
12904 indentation in this function.
12905 (widget-documentation-string-indent-to): New function.
12906 (widget-documentation-string-value-create): Use it.
12907
12908 * autorevert.el (auto-revert):
12909 * epg-config.el (epg):
12910 * ibuffer.el (ibuffer):
12911 * mpc.el (mpc):
12912 * ses.el (ses):
12913 * eshell/eshell.el (eshell):
12914 * net/ange-ftp.el (ange-ftp):
12915 * progmodes/ebnf2ps.el (postscript):
12916 * progmodes/flymake.el (flymake):
12917 * progmodes/prolog.el (prolog):
12918 * progmodes/verilog-mode.el (verilog-mode):
12919 * progmodes/which-func.el (which-func):
12920 * term/xterm.el (xterm):
12921 * textmodes/picture.el (picture):
12922 * textmodes/tildify.el (tildify):
12923 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
12924 customization buffers.
12925
12926 2012-04-22 Alan Mackenzie <acm@muc.de>
12927
12928 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
12929 Adding a ) can hide the resulting (..) from searches. Fix it.
12930 Bound the backward search to the position of the existing (.
12931
12932 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
12933
12934 * progmodes/verilog-mode.el (verilog-mode): Check whether
12935 which-func-modes is t before adding verilog-mode.
12936 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
12937
12938 2012-04-21 Leo Liu <sdl.web@gmail.com>
12939
12940 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
12941
12942 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
12943
12944 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
12945 filling of the last column of a table (Bug#5635).
12946 (woman-find-next-control-line): New arg, specifying an additional
12947 regexp component for the control line.
12948 (woman2-roff-buffer): Use it.
12949 (woman-break-table): New function.
12950 (woman2-TS): Use it.
12951
12952 2012-04-21 Chong Yidong <cyd@gnu.org>
12953
12954 * woman.el (woman-set-buffer-display-table, woman-decode-region)
12955 (woman-horizontal-escapes, woman-negative-vertical-space)
12956 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
12957 (WoMan-warn-ignored): Use ?\s instead of ?\ .
12958
12959 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12960
12961 * minibuffer.el (completion-file-name-table): Complete user names.
12962
12963 2012-04-20 Leo Liu <sdl.web@gmail.com>
12964
12965 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
12966 and pcase-let*.
12967
12968 2012-04-20 Chong Yidong <cyd@gnu.org>
12969
12970 * server.el (server-execute): Respect initial-buffer-choice if it
12971 is a string and there are no files to open (Bug#2825).
12972 (server-create-window-system-frame, server-create-tty-frame):
12973 Don't switch buffers here.
12974 (server-process-filter): Only try to open a window system frame if
12975 compiled with graphical support (Bug#8314).
12976
12977 2012-04-20 Dan Nicolaescu <dann@gnu.org>
12978
12979 * battery.el (battery-echo-area-format): Display remaining time
12980 for sysfs backend too (Bug#11269).
12981 (battery-linux-sysfs): Fix conditional for the charge.
12982
12983 2012-04-20 Chong Yidong <cyd@gnu.org>
12984
12985 * progmodes/gdb-mi.el (gdb): Revert previous change.
12986 (gdb-inferior-io--init-proc): New function.
12987 (gdb-init-1): Use it.
12988 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
12989 responsible for allocating a new pty and hooking it to gdb when
12990 the old pty gets an EIO due to process exit.
12991 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
12992 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
12993 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
12994
12995 2012-04-20 Eli Zaretskii <eliz@gnu.org>
12996
12997 * window.el (window-min-size, window-sizable, window-min-delta)
12998 (window-max-delta, window--resizable, window-resizable)
12999 (window-total-size, window-full-height-p, window-full-width-p)
13000 (window-in-direction, window--resize-mini-window, window-resize)
13001 (window--resize-child-windows-normal)
13002 (window--resize-child-windows, window--resize-siblings)
13003 (window--resize-this-window, adjust-window-trailing-edge)
13004 (enlarge-window, shrink-window): Doc fixes.
13005
13006 2012-04-20 Chong Yidong <cyd@gnu.org>
13007
13008 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
13009 New function to call delete-process on the gdb-inferior buffer's pty.
13010 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
13011 pty process (Bug#11273).
13012 (gdb-update): New arg to suppress talking to the gdb process.
13013 (gdb-done-or-error): Use it.
13014 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
13015 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
13016 sentinel not being called.
13017
13018 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
13019
13020 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
13021
13022 2012-04-20 Glenn Morris <rgm@gnu.org>
13023
13024 * net/network-stream.el (open-network-stream): Doc fix.
13025
13026 2012-04-20 Chong Yidong <cyd@gnu.org>
13027
13028 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
13029
13030 2012-04-20 Alan Mackenzie <acm@muc.de>
13031
13032 Ensure searching for keywords is case sensitive.
13033
13034 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
13035 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
13036 (c-defun-name, c-mark-function, c-cpp-define-name)
13037 (c-comment-indent, c-scan-conditionals, c-indent-defun)
13038 (c-context-line-break): Bind case-fold-search to nil.
13039
13040 * progmodes/cc-mode.el (c-font-lock-fontify-region):
13041 Bind case-fold-search to nil.
13042
13043 2012-04-20 Chong Yidong <cyd@gnu.org>
13044
13045 * mail/sendmail.el (mail-bury): Call return action with the right
13046 Rmail buffer (Bug#11242).
13047
13048 * server.el (server-process-filter): Handle corner case where both
13049 tty and nowait options are present (Bug#11102).
13050
13051 2012-04-20 Eli Zaretskii <eliz@gnu.org>
13052
13053 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
13054 (top level): Put into the executable the ident-style '$Id:' tag on
13055 windows-nt as well.
13056
13057 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13058
13059 * electric.el (electric-indent-post-self-insert-function): Check that
13060 electric-indent-mode is enabled in current buffer.
13061
13062 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
13063
13064 * imenu.el (imenu-progress-message): Restore; it is "used" in
13065 erc/erc-imenu.el and net/snmp-mode.el.
13066
13067 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
13068
13069 * avoid.el (mouse-avoidance-mode): Mark unused arg.
13070 (mouse-avoidance-nudge-mouse): Remove unused binding.
13071
13072 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
13073
13074 * descr-text.el (describe-char):
13075 * progmodes/python.el (python-describe-symbol):
13076 Don't call `toggle-read-only', set `buffer-read-only'.
13077
13078 * imenu.el (imenu-default-goto-function): Mark unused args.
13079 (imenu-progress-message): Remove obsolete macro; all callers changed.
13080
13081 * subr.el (keymap-canonicalize): Remove unused binding.
13082 (read-passwd): Mark unused arg.
13083
13084 * tutorial.el (tutorial--display-changes): Remove unused binding.
13085 (tutorial--save-tutorial-to): Remove unused variable.
13086
13087 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
13088 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
13089 (package-generate-autoloads, package-menu--generate)
13090 (package-menu--find-upgrades): Remove unused bindings.
13091
13092 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
13093 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
13094 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
13095 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
13096 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
13097 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
13098 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
13099 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
13100 (cua-delete-char-rectangle): Mark unused args.
13101 (cua-align-rectangle): Remove unused binding.
13102
13103 * mail/rmail.el (compilation--message->loc)
13104 (epa--find-coding-system-for-mime-charset): Declare.
13105
13106 * net/dbus.el (dbus-register-service): Declare.
13107 (dbus-name-owner-changed-handler): Remove unused binding.
13108
13109 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
13110 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
13111 (nxml-scan-backward-within): Mark unused arg.
13112 (nxml-dynamic-markup-word): Remove unused binding.
13113
13114 * mouse.el (mouse-menu-major-mode-map):
13115 * emacs-lisp/authors.el (authors-scan-change-log)
13116 (authors-add-to-author-list):
13117 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
13118 * emacs-lisp/smie.el (smie-auto-fill):
13119 * mail/sendmail.el (mail-bury):
13120 * mail/unrmail.el (unrmail):
13121 * net/tls.el (open-tls-stream):
13122 * textmodes/picture.el (picture-mouse-set-point):
13123 Remove unused bindings.
13124
13125 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
13126
13127 * net/tramp.el (tramp-action-password): Let-bind
13128 `enable-recursive-minibuffers' to t.
13129
13130 2012-04-18 Sam Steingold <sds@gnu.org>
13131
13132 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
13133 instead of 'string to accommodate values like [f11].
13134 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
13135 * progmodes/gdb-mi.el: Likewise.
13136
13137 2012-04-18 Leo Liu <sdl.web@gmail.com>
13138
13139 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
13140 current buffer.
13141 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
13142 LOCAL is nil.
13143
13144 2012-04-18 Chong Yidong <cyd@gnu.org>
13145
13146 * simple.el (line-move): Use forward-line if in batch mode
13147 (Bug#11053).
13148
13149 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
13150
13151 * files.el (after-find-file): Do not try to add a final newline if
13152 the buffer is read-only (Bug#11156).
13153
13154 2012-04-17 Richard Stallman <rms@gnu.org>
13155
13156 * mail/rmail.el (rmail-start-mail):
13157 Pass (rmail-mail-return...) for the return-action.
13158 Pass (rmail-yank-current-message...) for the yank-action.
13159 (rmail-yank-current-message): New function.
13160 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
13161 (rmail-reply): Likewise.
13162 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
13163
13164 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
13165 buffer, not the last. Reject temp buffers. Use the rmail-mode
13166 buffer, not newbuf.
13167
13168 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
13169
13170 * server.el (server-ensure-safe-dir): Simplify.
13171
13172 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
13173
13174 * emacs-lisp/smie.el: Provide smarter auto-filling.
13175 (smie-auto-fill): New function.
13176 (smie-setup): Use it.
13177
13178 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
13179
13180 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
13181
13182 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
13183 (comment-indent): Use it.
13184
13185 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
13186
13187 * ses.el: The overall change is to add cell renaming, that is
13188 setting fancy names for cell symbols other than name matching
13189 "\\`[A-Z]+[0-9]+\\'" regexp .
13190 (ses-localvars): Add ses--renamed-cell-symb-list.
13191 (ses-create-cell-variable): New defun.
13192 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
13193 (ses-relocate-formula): Relocate formulas only for cells the
13194 symbols of which are not renamed, i.e. symbols whose names do not
13195 match regexp "\\`[A-Z]+[0-9]+\\'".
13196 (ses-relocate-all): Relocate values only for cells the symbols of
13197 which are not renamed.
13198 (ses-load): Create cells variables as the (ses-cell ...) are read,
13199 in order to check row col consistency with cell symbol name only
13200 for cells that are not renamed.
13201 (ses-replace-name-in-formula): New defun.
13202 (ses-rename-cell): New defun.
13203
13204 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
13205
13206 * progmodes/perl-mode.el (perl-indent-parens-as-block):
13207 New option (bug#11118).
13208 (perl-calculate-indent): Respect it.
13209
13210 2012-04-17 Glenn Morris <rgm@gnu.org>
13211
13212 * dired-aux.el (dired-mark-read-string): Doc fix.
13213
13214 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
13215
13216 * dired-aux.el (dired-mark-read-string): Offer optional completion.
13217 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
13218
13219 2012-04-17 Glenn Morris <rgm@gnu.org>
13220
13221 * mouse.el (mouse-drag-track):
13222 * speedbar.el (speedbar-frame-mode):
13223 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
13224
13225 2012-04-16 Leo Liu <sdl.web@gmail.com>
13226
13227 * progmodes/python.el: Trivial cleanup.
13228
13229 2012-04-16 Glenn Morris <rgm@gnu.org>
13230
13231 * vc/vc.el (vc-string-prefix-p):
13232 * vc/pcvs-util.el (cvs-string-prefix-p):
13233 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
13234 * mpc.el (mpc-string-prefix-p):
13235 Make all of these into obsolete aliases for string-prefix-p.
13236 Update callers.
13237 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
13238
13239 * textmodes/two-column.el: Move custom options to the start.
13240 (frame-width): Remove compat definition.
13241 (2C-associate-buffer, 2C-dissociate):
13242 Use with-current-buffer rather than save-excursion.
13243 (2C-dissociate): Force a mode-line update.
13244 (2C-autoscroll): Use ignore-errors.
13245
13246 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
13247 Autoload trivia.
13248
13249 * emacs-lisp/cl-extra.el (*random-state*):
13250 Remove unnecessary declaration.
13251
13252 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
13253
13254 * play/cookie1.el (cookie-snarf):
13255 Give an explicit error if input file cannot be read.
13256
13257 * play/yow.el (yow-file): Use expand-file-name rather than concat.
13258
13259 * progmodes/perl-mode.el (c-macro-expand):
13260 Remove unnecessary autoload (it is in loaddefs.el).
13261
13262 * textmodes/picture.el (picture-desired-column)
13263 (picture-update-desired-column): Convert comments to doc-strings.
13264 (picture-substitute): Remove function.
13265 (picture-mode-map): Initialize in the defvar.
13266
13267 * woman.el: Remove eval-after-load for tar-mode.
13268 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
13269 (woman-tar-extract-file): Autoload it.
13270
13271 * frame.el (automatic-hscrolling): Make this alias obsolete.
13272
13273 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13274
13275 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
13276 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
13277 (ispell-dictionary-base-alist): Revert to original XEmacs
13278 friendly version for default. [:alpha:] will be added in
13279 `ispell-set-spellchecker-params' if needed.
13280
13281 2012-04-16 Chong Yidong <cyd@gnu.org>
13282
13283 * image.el (imagemagick--file-regexp): New variable.
13284 (imagemagick-register-types): Use it.
13285 (imagemagick-types-inhibit): Add :set function. Allow new value
13286 of t to inhibit all types.
13287
13288 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
13289 so we can preload it.
13290
13291 * loadup.el (fboundp): Preload regexp-opt, needed by
13292 imagemagick-register-types.
13293
13294 2012-04-15 Chong Yidong <cyd@gnu.org>
13295
13296 * frame.el (scrolling): Remove nearly unused customization group.
13297
13298 * scroll-all.el (scroll-all-mode): Move to windows group.
13299
13300 2012-04-15 Chong Yidong <cyd@gnu.org>
13301
13302 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
13303
13304 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
13305
13306 Avoid the use of ((lambda ...) ...) in lexical-binding code.
13307 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
13308
13309 2012-04-15 Glenn Morris <rgm@gnu.org>
13310
13311 * simple.el (process-file-side-effects): Doc fix.
13312
13313 2012-04-15 Glenn Morris <rgm@gnu.org>
13314
13315 * international/mule-cmds.el (set-language-environment): Doc fix.
13316
13317 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
13318
13319 * server.el (server-auth-key, server-generate-key): Doc fixes.
13320 (server-get-auth-key): Doc fix. Use `string-match-p'.
13321 (server-start): Reflow docstring.
13322
13323 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
13324
13325 * server.el (server-generate-key): `called-interactively-p'
13326 requires a parameter.
13327
13328 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
13329
13330 * server.el (server-auth-key): New variable.
13331 (server-generate-key, server-get-auth-key): New function.
13332 (server-start): Use the new variable and functions to allow
13333 setting a permanent server key (bug#9423).
13334
13335 2012-04-14 Leo Liu <sdl.web@gmail.com>
13336
13337 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
13338
13339 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
13340
13341 Spelling fixes.
13342 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
13343 Emacs uses American spelling.
13344
13345 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
13346
13347 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
13348 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
13349 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
13350 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
13351
13352 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
13353
13354 * progmodes/which-func.el (which-func-modes): Change default.
13355
13356 2012-04-14 Kim F. Storm <storm@cua.dk>
13357
13358 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
13359 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
13360
13361 2012-04-14 Chong Yidong <cyd@gnu.org>
13362
13363 * custom.el (custom-theme-set-variables): Doc fix.
13364
13365 2012-04-14 Glenn Morris <rgm@gnu.org>
13366
13367 * international/mule.el (set-auto-coding-for-load): Doc fix.
13368
13369 2012-04-14 Alan Mackenzie <acm@muc.de>
13370
13371 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
13372 imenu work again for Objective C Mode. Correct the *-index values,
13373 these having been disturbed by a previous change in 2011-08.
13374
13375 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
13376 Correct two search limits.
13377
13378 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
13379
13380 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
13381
13382 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
13383
13384 * international/characters.el: Fix sorting.
13385
13386 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13387
13388 * international/characters.el: Add more missing Latin case pairs.
13389
13390 2012-04-14 Glenn Morris <rgm@gnu.org>
13391
13392 * files.el (dir-locals-set-class-variables): Doc fix.
13393
13394 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13395
13396 * international/characters.el: Add set-case-syntax-pair call for
13397 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
13398 counterpart. (Bug#11209)
13399
13400 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
13401
13402 2012-04-14 Glenn Morris <rgm@gnu.org>
13403
13404 * calendar/holidays.el (calendar-check-holidays): Doc fix.
13405
13406 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13407
13408 * textmodes/ispell.el (ispell-dictionary-base-alist):
13409 Add data for Hebrew.
13410
13411 2012-04-14 Chong Yidong <cyd@gnu.org>
13412
13413 * net/rcirc.el (rcirc-cmd-quit):
13414 Revert 2012-03-18 change (Bug#11192).
13415
13416 2012-04-14 Glenn Morris <rgm@gnu.org>
13417
13418 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
13419
13420 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13421
13422 * minibuffer.el (completion-in-region-mode-map):
13423 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
13424
13425 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
13426
13427 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
13428
13429 2012-04-13 Masatake YAMATO <yamato@redhat.com>
13430
13431 * minibuffer.el (minibuffer-local-filename-syntax): New variable
13432 to allow `C-M-f' and `C-M-b' to move to the nearest path
13433 separator (bug#9511).
13434
13435 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
13436
13437 * avoid.el: Require cl when compiling. And also move the
13438 `provide' to the end.
13439
13440 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13441
13442 * avoid.el (mouse-avoidance-banish-position): New variable.
13443 (mouse-avoidance-banish-destination): Use it (bug#10165).
13444
13445 2012-04-13 Leo Liu <sdl.web@gmail.com>
13446
13447 * progmodes/which-func.el (which-func-modes): Add objc-mode.
13448
13449 2012-04-13 Ken Brown <kbrown@cornell.edu>
13450
13451 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
13452 this is no longer needed now that cygstart understands file:// URLs.
13453 (browse-url-filename-alist): For the same reason, don't modify
13454 file:// URLs on Cygwin.
13455
13456 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
13457
13458 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
13459 the region on shift if the binding is already shifted (bug#11221).
13460
13461 2012-04-12 Glenn Morris <rgm@gnu.org>
13462
13463 * mail/mailpost.el: Move to obsolete/.
13464
13465 2012-04-12 Drew Adams <drew.adams@oracle.com>
13466
13467 * imenu.el (imenu--generic-function): Ignore invisible definitions
13468 (bug#10123).
13469
13470 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
13471
13472 * hexl.el (hexl-bits): New variable.
13473 (hexl-options): Mention the variable in the doc string.
13474 (hexl-rulerise, hexl-line-displen): New functions.
13475 (hexl-mode): Mention the new variable.
13476 (hexl-mode, hexl-current-address, hexl-current-address):
13477 Use the displen.
13478 (hexl-ascii-start-column): New function.
13479 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
13480 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
13481
13482 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13483
13484 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
13485 '("-i" ENCODING), in 2 separate command-line arguments, to specify
13486 the encoding, as expected by hunspell.
13487
13488 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
13489
13490 * battery.el (battery--linux-sysfs-regexp): New const.
13491 (battery-status-function): Use it. Remove yeeloong special case.
13492 (battery-yeeloong-sysfs): Remove.
13493 (battery-echo-area-format): Remove yeeloong special case.
13494
13495 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13496
13497 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
13498 Reported by Noah Friedman.
13499
13500 * subr.el (read-passwd): Use read-string.
13501
13502 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13503
13504 * vcursor.el (vcursor-move): Increase the priority of the overlay
13505 (bug#9663).
13506
13507 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
13508
13509 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
13510 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
13511
13512 2012-04-11 William Stevenson <yhvh2000@gmail.com>
13513
13514 * textmodes/artist.el (artist-mode): Convert artist-mode to use
13515 define-minor-mode (bug#10760).
13516
13517 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
13518
13519 * progmodes/grep.el (rgrep): Tweak the find command line so
13520 that directories matching `grep-find-ignored-files' won't be
13521 pruned (bug#10351).
13522
13523 2012-04-11 Chong Yidong <cyd@gnu.org>
13524
13525 * startup.el (command-line): Remove support for long-obsolete
13526 variable font-lock-face-attributes.
13527
13528 2012-04-11 Glenn Morris <rgm@gnu.org>
13529
13530 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
13531
13532 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13533
13534 * window.el (window--state-get-1): Obey window-point-insertion-type.
13535
13536 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
13537
13538 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
13539 to previous function when point is on the first character of a
13540 function. Take care of that in `narrow-to-defun' (bug#6157).
13541
13542 2012-04-11 Glenn Morris <rgm@gnu.org>
13543
13544 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
13545 not just file-errors.
13546
13547 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
13548 (vc-bzr-sha1): Use internal sha1.
13549
13550 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13551
13552 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
13553
13554 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
13555
13556 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
13557 that start in the middle of the line (bug#10496).
13558
13559 2012-04-10 Dan Nicolaescu <dann@gnu.org>
13560
13561 * battery.el (battery-linux-proc-acpi): Only one battery is
13562 discharged at a time, but that seems to confuse battery.el when
13563 computing `rate-type' for the battery not being discharged
13564 (bug#10332).
13565
13566 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
13567
13568 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
13569
13570 * international/quail.el: Use dolist and simplify.
13571 (quail-define-package, quail-update-keyboard-layout)
13572 (quail-define-rules): Use dolist.
13573 (quail-insert-kbd-layout, quail-get-translation): CSE.
13574
13575 * tmm.el: Use dolist, remove left over hook.
13576 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
13577 Use dolist.
13578 (calendar-load-hook): Don't mess with it.
13579
13580 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
13581 Use derived-mode-p. Run the diff asynchronously.
13582
13583 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
13584
13585 * obsolete/mouse-sel.el: Add an Obsolete-since header.
13586
13587 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
13588
13589 * misc.el: Display absolute path of loaded DLLs (bug#10424).
13590 (list-dynamic-libraries--loaded): New function.
13591 (list-dynamic-libraries--refresh): Use it.
13592
13593 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
13594
13595 * progmodes/python.el (python-fill-paragraph):
13596 Make python-fill-region in a multiline string work when font-lock is
13597 disabled (bug#7018).
13598
13599 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
13600
13601 * language/european.el (cp775): Add oem/legacy (en)coding on
13602 DOS/MS Windows for the Baltic languages. There are still plenty
13603 of texts written in this encoding/codepage (bug#6519).
13604
13605 2012-04-10 Glenn Morris <rgm@gnu.org>
13606
13607 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
13608 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
13609
13610 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
13611
13612 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
13613 next-line "n" and previous-line "p" in order to make recentf more
13614 consistent with ibuffer, dired or org-mode (bug#9387).
13615
13616 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
13617
13618 * image.el (put-image): Return the overlay created instead of the
13619 optional input string (bug#7834). Note that this may break code
13620 that is (for some reason or other) depending on `put-image'
13621 returning the string.
13622
13623 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
13624
13625 * simple.el (zap-to-char): Allow zapping using input methods
13626 (bug#1580).
13627
13628 * textmodes/fill.el (fill-region): Leave point and mark where they
13629 were before filling (bug#5399).
13630
13631 2012-04-09 Glenn Morris <rgm@gnu.org>
13632
13633 * version.el (emacs-bzr-get-version):
13634 Handle lightweight checkouts of local branches.
13635
13636 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
13637
13638 * international/characters.el: Recover lost case pairs. (Bug#11209)
13639
13640 2012-04-09 Chong Yidong <cyd@gnu.org>
13641
13642 * custom.el (custom-variable-p): Return nil for non-symbol
13643 arguments instead of signaling an error.
13644 (user-variable-p): Obsolete alias for custom-variable-p.
13645
13646 * apropos.el (apropos-variable):
13647 * files-x.el (read-file-local-variable):
13648 * simple.el (set-variable):
13649 * woman.el (woman-mini-help):
13650 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
13651
13652 2012-04-09 Glenn Morris <rgm@gnu.org>
13653
13654 * startup.el (normal-top-level): Don't look for leim-list.el
13655 in places where it will not be found. (Bug#910)
13656
13657 * international/mule-cmds.el (set-default-coding-systems):
13658 * files.el (normal-mode):
13659 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
13660 This function was removed with ucs-tables.el in 2008.
13661
13662 2012-04-08 Eli Zaretskii <eliz@gnu.org>
13663
13664 * textmodes/ispell.el (ispell-check-version): For hunspell, set
13665 ispell-encoding8-command to "-i", without a trailing space.
13666 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
13667 separate command-line arguments, to specify the encoding, since
13668 that's how hunspell expects it.
13669
13670 2012-04-08 Glenn Morris <rgm@gnu.org>
13671
13672 * loadup.el: Load bindings before cus-start.
13673 This reduces somewhat the number of "rogue" settings in emacs -Q.
13674
13675 2012-04-07 Glenn Morris <rgm@gnu.org>
13676
13677 * version.el (emacs-bzr-get-version): New function.
13678 (emacs-bzr-version): New variable.
13679 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
13680 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
13681
13682 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13683
13684 * international/uni-bidi.el, international/uni-category.el:
13685 * international/uni-combining.el, international/uni-decimal.el:
13686 * international/uni-decomposition.el, international/uni-digit.el:
13687 * international/uni-lowercase.el, international/uni-mirrored.el:
13688 * international/uni-name.el, international/uni-numeric.el:
13689 * international/uni-titlecase.el, international/uni-uppercase.el:
13690 Update for Unicode 6.1.
13691
13692 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13693
13694 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
13695
13696 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
13697
13698 * window.el (shrink-window): Mention the `window-min-height'
13699 variable in the doc string.
13700
13701 2012-04-05 Bastien Guerry <bzg@altern.org>
13702
13703 * color.el (color-lighten-name): Fix typo.
13704
13705 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13706
13707 * server.el (server--on-display-p): New function.
13708 (server--on-display-p): Use it.
13709
13710 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
13711
13712 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
13713 (bug#11145).
13714
13715 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13716
13717 * comint.el (comint--common-quoted-suffix): Check string boundary
13718 before comparing (bug#11158).
13719 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
13720
13721 2012-04-04 Chong Yidong <cyd@gnu.org>
13722
13723 * minibuffer.el (completion-extra-properties): Doc fix.
13724
13725 * subr.el (delayed-warnings-hook): Doc fix.
13726
13727 2012-04-04 Daiki Ueno <ueno@unixuser.org>
13728
13729 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
13730 selection (Bug#11159).
13731 (epa-insert-keys): Inform that the default public key will be
13732 exported if no key is selected.
13733
13734 2012-04-04 Richard Stallman <rms@gnu.org>
13735
13736 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
13737
13738 2012-04-03 Chong Yidong <cyd@gnu.org>
13739
13740 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
13741 mail-insert-file, not its obsolete alias mail-attach-file.
13742
13743 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
13744
13745 * notifications.el (notifications-notify): Fix docstring.
13746
13747 2012-04-02 Glenn Morris <rgm@gnu.org>
13748
13749 * emacs-lisp/authors.el (authors-aliases): Another addition.
13750
13751 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
13752
13753 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
13754 `tramp-compat-call-process' instead of `tramp-local-call-process'.
13755 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
13756
13757 2012-04-01 Chong Yidong <cyd@gnu.org>
13758
13759 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
13760 Handle root directory properly.
13761 (copy-directory): Caller changed.
13762
13763 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
13764 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
13765
13766 2012-03-31 Glenn Morris <rgm@gnu.org>
13767
13768 * term/xterm.el (xterm-extra-capabilities): Doc fix.
13769
13770 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
13771
13772 * calendar/calendar.el (calendar-window-list)
13773 (calendar-hide-window): Restore. (Bug#11140)
13774 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
13775
13776 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
13777
13778 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13779
13780 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
13781 Check if file is a symlink (Bug#10489).
13782
13783 * files.el (copy-directory): Likewise.
13784
13785 2012-03-30 Chong Yidong <cyd@gnu.org>
13786
13787 * image.el (imagemagick-types-inhibit)
13788 (imagemagick-register-types): Doc fix.
13789
13790 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13791
13792 * textmodes/ispell.el (ispell-get-extended-character-mode):
13793 Disable extended-char-mode for hunspell. hunspell does not support it
13794 and treats ~word as ordinary words in pipe mode.
13795
13796 2012-03-30 Glenn Morris <rgm@gnu.org>
13797
13798 * tutorial.el (help-with-tutorial): Ensure local variables don't
13799 happen to make the buffer read-only. (Bug#11127)
13800
13801 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
13802
13803 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
13804 (perl-calculate-indent): Return `noindent' in strings.
13805
13806 2012-03-28 Sam Steingold <sds@gnu.org>
13807
13808 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
13809 instead of the broken adhockery which does not prevent calendar
13810 buffers from being displayed at random after exit.
13811 (calendar-window-list, calendar-hide-window): Remove the broken
13812 adhockery.
13813
13814 2012-03-28 Glenn Morris <rgm@gnu.org>
13815
13816 * replace.el (query-replace-map): Doc fix.
13817
13818 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
13819
13820 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
13821 contents. (Bug#11109)
13822
13823 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
13824
13825 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
13826 (bug#11077).
13827 (avl-tree--check, avl-tree--check-node): New funs.
13828
13829 2012-03-27 Martin Rudalics <rudalics@gmx.at>
13830
13831 * window.el (switch-to-visible-buffer): New option.
13832 (switch-to-prev-buffer, switch-to-next-buffer):
13833 Observe switch-to-visible-buffer. Make sure that checking for a window
13834 showing a buffer already is done on the same frame.
13835
13836 2012-03-27 Glenn Morris <rgm@gnu.org>
13837
13838 * startup.el (mail-host-address): Doc fix.
13839
13840 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
13841
13842 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
13843 than 197 variables.
13844
13845 2012-03-26 Ami Fischman <ami@fischman.org>
13846
13847 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
13848
13849 2012-03-26 Glenn Morris <rgm@gnu.org>
13850
13851 * files.el (save-buffers-kill-emacs): Doc fix.
13852
13853 * startup.el (normal-top-level, command-line, command-line-1):
13854 Give them doc strings.
13855
13856 2012-03-25 Eli Zaretskii <eliz@gnu.org>
13857
13858 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
13859 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
13860
13861 2012-03-25 Chong Yidong <cyd@gnu.org>
13862
13863 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
13864 theme if it was previously enabled before (Bug#11031).
13865
13866 * cus-theme.el (custom-theme-write-faces): Retrieve current face
13867 spec with custom-face-get-current-spec if its :shown-value is not
13868 determined yet (Bug#9337).
13869 (customize-create-theme, custom-theme-revert): Doc fixes.
13870
13871 * button.el (button-at): Minor addition to docstring.
13872
13873 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
13874
13875 * vc/vc.el (vc-merge): Fix a prompt.
13876
13877 2012-03-24 Chong Yidong <cyd@gnu.org>
13878
13879 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
13880 point (Bug#9623).
13881
13882 * button.el (button-at): Minor addition to docstring.
13883
13884 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
13885
13886 * newcomment.el (comment-choose-indent): No space after BOL.
13887
13888 2012-03-22 Sam Steingold <sds@gnu.org>
13889
13890 * window.el (switch-to-prev-buffer): Revert last patch because the
13891 bug turned out to be an advertised feature (Elisp manual 28.14).
13892
13893 2012-03-22 Glenn Morris <rgm@gnu.org>
13894
13895 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
13896 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
13897
13898 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
13899
13900 * net/network-stream.el (network-stream-open-starttls): Make error
13901 message under Windows be less misleading.
13902
13903 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
13904
13905 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
13906 understands (bug#9942).
13907
13908 2012-03-22 Chong Yidong <cyd@gnu.org>
13909
13910 * simple.el (end-of-visible-line): Handle return value of
13911 next-single-property-change properly (Bug#9371).
13912
13913 2012-03-22 Kenichi Handa <handa@m17n.org>
13914
13915 * international/quail.el (quail-insert-kbd-layout): Fix previous
13916 change. To avoid unwanted bidi reordering, use
13917 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
13918
13919 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
13920
13921 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
13922 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
13923 (ruby-beginning-of-indent): Be more careful with the difference
13924 between word-boundary and symbol boundary.
13925 (ruby-mode-syntax-table): Make : a symbol constituent.
13926
13927 2012-03-21 Andreas Politz <politza@fh-trier.de>
13928
13929 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
13930
13931 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
13932
13933 * progmodes/etags.el (tags-completion-at-point-function):
13934 Improve last fix.
13935
13936 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
13937
13938 2012-03-21 Sam Steingold <sds@gnu.org>
13939
13940 * progmodes/etags.el (tags-completion-at-point-function):
13941 Avoid the error when point is inside the pattern.
13942
13943 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
13944
13945 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
13946 line (Bug#10855).
13947
13948 2012-03-21 Drew Adams <drew.adams@oracle.com>
13949
13950 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
13951
13952 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
13953
13954 * ido.el (ido-set-current-directory, ido-read-internal)
13955 (ido-choose-completion-string, ido-completion-help): Handle nil
13956 value of ido-completion-buffer (Bug#11008).
13957
13958 2012-03-21 Sam Steingold <sds@gnu.org>
13959
13960 * window.el (switch-to-prev-buffer): Do not switch to a visible
13961 window previous buffer, just like with the frame previous buffers.
13962
13963 2012-03-21 Chong Yidong <cyd@gnu.org>
13964
13965 * faces.el (make-face, make-empty-face, copy-face):
13966 * face-remap.el (face-remap-add-relative, face-remap-set-base):
13967 Doc fixes.
13968
13969 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
13970
13971 * wid-edit.el (widget-complete-field): Remove (bug#11051).
13972 (widget-complete): Remove broken use of it.
13973
13974 2012-03-20 Chong Yidong <cyd@gnu.org>
13975
13976 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
13977 Use string-width and truncate-string-width to handle arbitrary
13978 characters.
13979
13980 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
13981
13982 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
13983 to draw rectangles, not squares. (Regression introduced by revno
13984 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
13985
13986 2012-03-18 Chong Yidong <cyd@gnu.org>
13987
13988 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
13989 it is not yet defined (for temacs).
13990
13991 2012-03-18 Leo Liu <sdl.web@gmail.com>
13992
13993 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
13994 prefix.
13995
13996 2012-03-17 Eli Zaretskii <eliz@gnu.org>
13997
13998 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
13999 (ispell-choices-win-default-height, ispell-silently-savep)
14000 (ispell-dictionary-alist, ispell-encoding8-command)
14001 (ispell-check-version, ispell-aspell-find-dictionary)
14002 (ispell-valid-dictionary-list, ispell-words-keyword)
14003 (ispell-get-word, ispell-internal-change-dictionary)
14004 (ispell-region, ispell-skip-region-list)
14005 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
14006 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
14007 (ispell-message-text-end, ispell-message)
14008 (ispell-buffer-local-parsing): Doc fix.
14009
14010 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
14011
14012 * htmlfontify.el: Add support for code block fontification for ODT
14013 export (Bug #9914).
14014 (hfy-optimisations): Define new option
14015 `body-text-only'
14016 (hfy-fontify-buffer): Honor above setting.
14017 (hfy-begin-span, hfy-end-span): New routines factored out form
14018 `hfy-fontify-buffer'.
14019 (hfy-begin-span-handler, hfy-end-span-handler): New variables
14020 that permit insertion of custom tags.
14021 (hfy-fontify-buffer): Use above handlers.
14022 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
14023 (hfy-face-to-css): Re-defined to be a variable.
14024 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
14025 over multiple runs. This is made possible by having the caller let
14026 bind a special variable `hfy-user-sheet-assoc'.
14027 (htmlfontify-string): New defun.
14028 (hfy-compile-face-map): Make sure that the last char in the
14029 buffer is correctly fontified.
14030 (hfy-face-resolve-face): Whitespace only change.
14031
14032 2012-03-17 Eli Zaretskii <eliz@gnu.org>
14033
14034 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
14035 message more clear.
14036
14037 2012-03-16 Leo Liu <sdl.web@gmail.com>
14038
14039 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
14040
14041 2012-03-16 Alan Mackenzie <acm@muc.de>
14042
14043 Further optimize the handling of large macros.
14044
14045 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
14046 limit to a call of `c-literal-limits'.
14047 (c-determine-+ve-limit): New function.
14048 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
14049 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
14050 In CASE 5B, restrict a search limit to 500.
14051 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
14052
14053 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
14054 Restrict macro bounds to +-500 from after-change's BEG END.
14055
14056 2012-03-16 Leo Liu <sdl.web@gmail.com>
14057
14058 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
14059
14060 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
14061
14062 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
14063 `special-mode' setting of `buffer-read-only'. (Bug#11010)
14064
14065 2012-03-16 Glenn Morris <rgm@gnu.org>
14066
14067 * view.el (view-buffer, view-buffer-other-window)
14068 (view-buffer-other-frame): Doc fixes re special mode-class.
14069
14070 * subr.el (eval-after-load): If named feature is provided not from
14071 a file, run after-load forms. (Bug#10946)
14072
14073 * calendar/calendar.el (calendar-insert-at-column):
14074 Handle non-unit-width characters a bit better. (Bug#10978)
14075
14076 2012-03-15 Chong Yidong <cyd@gnu.org>
14077
14078 * emacs-lisp/ring.el (ring-extend): New function.
14079 (ring-insert+extend): Extend the ring correctly (Bug#11019).
14080
14081 * comint.el (comint-read-input-ring)
14082 (comint-add-to-input-history): Grow comint-input-ring lazily.
14083
14084 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
14085
14086 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
14087 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
14088
14089 * imenu.el: Fix multiple inheritance breakage (bug#9199).
14090 (imenu-add-to-menubar): Don't add a redundant index.
14091 (imenu-update-menubar): Handle a dynamically composed keymap.
14092
14093 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
14094
14095 * mail/sendmail.el (mail-encode-header):
14096 Bind rfc2047-encode-encoded-words to nil.
14097
14098 2012-03-13 Glenn Morris <rgm@gnu.org>
14099
14100 * calendar/calendar.el (calendar-string-spread):
14101 Handle non-unit-width characters a bit better. (Bug#10978)
14102
14103 2012-03-13 Leo Liu <sdl.web@gmail.com>
14104
14105 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
14106 directory and file as argument (Bug#10822).
14107
14108 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
14109
14110 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
14111 For dynamically generated code, follow $PC.
14112 (gdb-disassembly-handler-custom): Handle no function name case.
14113
14114 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
14115
14116 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
14117 * emulation/ws-mode.el (ws-query-replace):
14118 * sort.el (sort-regexp-fields):
14119 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
14120
14121 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14122
14123 * dabbrev.el: Fix cycle completion order (bug#10963).
14124 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
14125 (dabbrev-completion): Don't use an obarray; provide
14126 a cycle-sort-function.
14127
14128 2012-03-12 Leo Liu <sdl.web@gmail.com>
14129
14130 * simple.el (kill-new): Use equal-including-properties for comparison.
14131 (kill-do-not-save-duplicates): Doc fix.
14132
14133 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14134
14135 * dabbrev.el: Fix cycle completion (bug#10963).
14136 Use lexical binding and wrap to 80 columns.
14137 (dabbrev-completion): Delay computing the list of completions.
14138
14139 2012-03-12 Kenichi Handa <handa@m17n.org>
14140
14141 * international/quail.el (quail-insert-kbd-layout): Surround each
14142 row by LRO and PDF instead of inserting many LRMs. Pad the left
14143 and right of each non-spacing marks. Insert invisible space
14144 between lower and upper characters to prevent composition.
14145
14146 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14147
14148 * minibuffer.el (minibuffer-complete): Don't get confused when the
14149 function is run twice via different commands (bug#10958).
14150 (complete-with-action): Fix docstring.
14151
14152 2012-03-12 Chong Yidong <cyd@gnu.org>
14153
14154 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
14155 (nxml-completion-at-point-function): New function.
14156 (nxml-mode): Use it.
14157 (nxml-bind-meta-tab-to-complete-flag): Default to t.
14158
14159 * emacs-lisp/package.el (package-unpack, package-unpack-single):
14160 Load generated autoloads file before byte compiling (Bug#10970).
14161 (package--make-autoloads-and-compile): New helper fun.
14162
14163 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
14164
14165 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
14166
14167 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
14168
14169 * autorevert.el (auto-revert-handler): Ensure, that
14170 file-readable-p is applied only for local files or in
14171 auto-revert-tail-mode.
14172
14173 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
14174
14175 * server.el (server-eval-at): Handle non-tcp connections.
14176 Decode result string.
14177
14178 * server.el (server-msg-size): New constant.
14179 (server-reply-print): New function.
14180 (server-eval-and-print): Use it.
14181 (server-eval-at): Use server-quote-arg and server-unquote-arg.
14182 Handle -print-nonl.
14183
14184 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
14185
14186 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
14187 (Bug#10987).
14188
14189 2012-03-11 Chong Yidong <cyd@gnu.org>
14190
14191 * simple.el (goto-line): Doc fix (Bug#9938).
14192
14193 * subr.el (save-window-excursion): Doc fix (Bug#9979).
14194
14195 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
14196 when finished (Bug#10963).
14197
14198 2012-03-11 Martin Rudalics <rudalics@gmx.at>
14199
14200 * window.el (split-window-below): Fix bug in case where
14201 split-window-keep-point is nil (Bug#10971).
14202
14203 2012-03-11 Juri Linkov <juri@jurta.org>
14204
14205 * replace.el (replace-highlight): Set isearch-word to nil
14206 unconditionally. (Bug#10887)
14207
14208 2012-03-10 Eli Zaretskii <eliz@gnu.org>
14209
14210 * net/mairix.el (mairix-replace-invalid-chars): Rename from
14211 mairix-replace-illegal-chars; all callers changed. Don't remove
14212 ^, ~, and = characters: they are meaningful in mairix search specs.
14213 (mairix-widget-create-query): Add usage information about mairix
14214 search forms: negating words, searching for substrings, etc.
14215
14216 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
14217
14218 * international/fontset.el (font-encoding-alist): Add an entry for
14219 ksx1001 (Bug#5667).
14220
14221 2012-03-10 Richard Stallman <rms@gnu.org>
14222
14223 * mail/sendmail.el (mail-encode-header):
14224 Set rfc2047-encode-encoded-words.
14225
14226 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
14227
14228 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
14229 view buffer means not swapped.
14230 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
14231 (rmail-write-region-annotate): Error if real text has disappeared.
14232
14233 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
14234
14235 2012-03-10 Chong Yidong <cyd@gnu.org>
14236
14237 * emulation/cua-rect.el (cua--init-rectangles):
14238 * emulation/cua-base.el (cua--init-keymaps):
14239 Add delete-forward-char to remappings (Bug#9666).
14240
14241 2012-03-10 Martin Rudalics <rudalics@gmx.at>
14242
14243 * speedbar.el (speedbar-unhighlight-one-tag-line):
14244 Avoid unhighlighting due to frame switching (Bug#10275).
14245
14246 2012-03-10 Chong Yidong <cyd@gnu.org>
14247
14248 * minibuffer.el (completion-in-region, completion-help-at-point):
14249 Give the completion field overlay a high priority (Bug#6830).
14250
14251 * dired.el (dired-goto-file): Recognize absolute file name
14252 listings (Bug#7126).
14253 (dired-goto-file-1): New helper function.
14254 (dired-toggle-read-only): Inhibit warnings.
14255
14256 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
14257
14258 * net/dbus.el (dbus-property-handler): Return empty array if
14259 there are no properties.
14260
14261 2012-03-09 Leo Liu <sdl.web@gmail.com>
14262
14263 * savehist.el (savehist-printable): Stricter check for string
14264 value (Bug#10937).
14265
14266 2012-03-09 Eli Zaretskii <eliz@gnu.org>
14267
14268 * mail/smtpmail.el (smtpmail-send-it):
14269 Bind coding-system-for-write to *-unix, so that FCC files are kept in
14270 valid mbox format.
14271
14272 2012-03-09 Glenn Morris <rgm@gnu.org>
14273
14274 * files.el (dir-locals-find-file):
14275 Don't check result is regular, readable.
14276 (dir-locals-read-from-file): Demote errors.
14277
14278 2012-03-08 Eli Zaretskii <eliz@gnu.org>
14279
14280 * international/quail.el (quail-insert-kbd-layout):
14281 Insert invisible LRM characters before each character in a keyboard
14282 layout cell, to prevent their reordering by bidi display engine.
14283 For details, see the discussion in
14284 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
14285
14286 2012-03-08 Alan Mackenzie <acm@muc.de>
14287
14288 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
14289 the starting position; make it extend the marked region when
14290 invoked repeatedly - all under appropriate circumstances.
14291 Fixes bugs #5525, #10906.
14292
14293 2012-03-08 Glenn Morris <rgm@gnu.org>
14294
14295 * files.el (locate-dominating-file, dir-locals-find-file):
14296 Undo 2012-03-06 change.
14297
14298 2012-03-07 Eli Zaretskii <eliz@gnu.org>
14299
14300 * international/quail.el (quail-help):
14301 Force bidi-paragraph-direction be left-to-right. See discussion in
14302 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
14303 for the reason.
14304
14305 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
14306
14307 Avoid superfluous registering of signals. (Bug#10807)
14308
14309 * notifications.el (notifications-on-action-object)
14310 (notifications-on-close-object): New defvars.
14311 (notifications-on-action-signal, notifications-on-closed-signal):
14312 Unregister the signal if not needed any longer.
14313 (notifications-notify): Register `notifications-action-signal' or
14314 `notifications-closed-signal', if :on-action or :on-close has been
14315 passed as argument.
14316
14317 2012-03-07 Chong Yidong <cyd@gnu.org>
14318
14319 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
14320 non-X platforms.
14321
14322 2012-03-06 Glenn Morris <rgm@gnu.org>
14323
14324 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
14325 (x-disown-selection-internal, x-get-selection-internal):
14326 Doc fix (add arglist signatures). (Bug#10783)
14327
14328 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
14329
14330 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
14331 Handle breakpoints with no "type".
14332
14333 2012-03-06 Glenn Morris <rgm@gnu.org>
14334
14335 * files.el (locate-dominating-file): Add optional predicate argument.
14336 (dir-locals-find-file): Make use of above change.
14337
14338 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
14339
14340 * info.el (Info-insert-dir): Also try "dir.gz".
14341
14342 2012-03-06 Glenn Morris <rgm@gnu.org>
14343
14344 * files.el (dir-locals-find-file):
14345 Ignore non-readable or non-regular files. (Bug#10928)
14346
14347 * files.el (locate-dominating-file): Doc fix.
14348
14349 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
14350
14351 * calendar/calendar.el (calendar-set-mode-line):
14352 `getenv' returns a string. (Bug#10951)
14353
14354 2012-03-05 Leo Liu <sdl.web@gmail.com>
14355
14356 * simple.el (backward-delete-char-untabify): Constrain point to
14357 field (Bug#10939).
14358
14359 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
14360
14361 2012-03-05 Chong Yidong <cyd@gnu.org>
14362
14363 * simple.el (count-words): If called from Lisp, return the word
14364 count, for symmetry with `count-lines'. Arglist changed.
14365 (count-words--message): Args changed. Consolidate counting code
14366 from count-words and count-words-region.
14367 (count-words-region): Caller changed.
14368 (count-lines-region): Make it an obsolete alias.
14369
14370 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
14371
14372 * saveplace.el (save-place-to-alist)
14373 (save-place-ignore-files-regexp): Allow value nil to disable this
14374 feature.
14375
14376 2012-03-04 Chong Yidong <cyd@gnu.org>
14377
14378 * faces.el (face-spec-reset-face): For the default face, reset the
14379 attributes to default values (Bug#10748).
14380
14381 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
14382
14383 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
14384 previous patch: Check `message-send-mail-function', and not the
14385 default function (bug#10897).
14386
14387 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
14388
14389 * notifications.el (notifications-on-action-signal)
14390 (notifications-on-closed-signal): Check for unique service name of
14391 incoming event. Fix error in removing entry.
14392 (top): Register for signals with wildcard service name.
14393 (notifications-notify): Use daemon unique service name for map entries.
14394
14395 2012-03-04 Chong Yidong <cyd@gnu.org>
14396
14397 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
14398
14399 2012-03-04 Glenn Morris <rgm@gnu.org>
14400
14401 * abbrev.el (copy-abbrev-table, abbrev-table-p)
14402 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
14403 (expand-abbrev, define-abbrev-table): Doc fixes.
14404
14405 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14406
14407 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
14408 `message-default-send-mail-function' and not `send-mail-function'
14409 when doing the prompting for `sendmail-query-once' before sending
14410 in Message buffers (bug#10897).
14411
14412 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
14413 This is inconsistent with all the other stream functions, which leave
14414 the setting up to the higher levels (if so wanted) (bug#10931).
14415
14416 2012-03-02 Alan Mackenzie <acm@muc.de>
14417
14418 Depessimize the handling of very large macros.
14419
14420 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
14421 (c-macro-cache-syntactic): New variables to implement a one
14422 element macro cache.
14423 (c-invalidate-macro-cache): New function.
14424 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
14425 Adapt to use the new cache.
14426 (c-state-safe-place): Use better the cache of safe positions.
14427 (c-state-semi-nonlit-pos-cache)
14428 (c-state-semi-nonlit-pos-cache-limit):
14429 New variables for...
14430 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
14431 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
14432 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
14433 Use c-state-semi-safe-place.
14434
14435 * progmodes/cc-langs.el (c-get-state-before-change-functions):
14436 Add c-invalidate-macro-cache to the C, C++, Obj entries.
14437
14438 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
14439
14440 * jka-compr.el (jka-compr-call-process):
14441 Apply `file-accessible-directory-p' only when the default directory is
14442 not remote.
14443
14444 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
14445
14446 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
14447 access of FILE2, if FILE1 does not exist.
14448
14449 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
14450 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
14451
14452 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
14453 Add "PAGER=" to `process-environment'.
14454
14455 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
14456
14457 * progmodes/sql.el: Bug fix
14458 (sql-get-login-ext): Save login values in globals.
14459 (sql-get-login): Use new version of `sql-get-login-ext'.
14460 (sql-interactive-mode): Set global `sql-connection' to nil.
14461 (sql-connect): Set global values for connection.
14462 (sql-product-interactive): Save global values as buffer local.
14463
14464 2012-02-29 Leo Liu <sdl.web@gmail.com>
14465
14466 * abbrev.el (define-abbrevs): Reset sys to nil.
14467
14468 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14469
14470 * files.el (file-equal-p): Rename from `files-equal-p'.
14471 Return nil when one or both files don't exist.
14472 (file-subdir-of-p): Now only top directory must exists,
14473 return nil if it doesn't.
14474 (copy-directory): No need to test with `file-subdir-of-p' after
14475 creating dir.
14476 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
14477 to `file-equal-p'.
14478
14479 2012-02-28 Glenn Morris <rgm@gnu.org>
14480
14481 * shell.el (shell-mode):
14482 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
14483 * play/landmark.el (landmark-font-lock-face-O):
14484 * play/handwrite.el (handwrite):
14485 * play/gomoku.el (gomoku-O):
14486 * net/browse-url.el (browse-url-browser-display):
14487 * international/mule.el (define-charset):
14488 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
14489 * filesets.el (filesets-find-file-delay):
14490 * eshell/em-xtra.el (eshell-xtra):
14491 * eshell/em-unix.el (eshell-grep):
14492 * emulation/viper.el (viper-mode):
14493 * emacs-lisp/regexp-opt.el (regexp-opt-group):
14494 * emacs-lisp/easymenu.el (easy-menu-define):
14495 * calendar/timeclock.el (timeclock-use-display-time):
14496 * bs.el (bs-mode):
14497 * bookmark.el (bookmark-save-flag):
14498 Doc fix (standardize possessive apostrophe usage).
14499
14500 2012-02-27 Chong Yidong <cyd@gnu.org>
14501
14502 * emulation/viper-cmd.el (viper-intercept-ESC-key):
14503 Fix key-binding lookup for ESC key (Bug#9146).
14504
14505 * font-lock.el (font-lock-specified-p): Rename from
14506 font-lock-spec-present. Callers changed.
14507
14508 2012-02-27 Daniel Hackney <dan@haxney.org>
14509
14510 * emacs-lisp/package.el (package-compute-transaction):
14511 Handle holding a package version to t in package-load-list.
14512
14513 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
14514
14515 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
14516 (tramp-get-inode, tramp-get-device): Use cached values.
14517
14518 2012-02-26 Alan Mackenzie <acm@muc.de>
14519
14520 Check there is a font-lock specification before doing initial
14521 fontification.
14522
14523 * font-core.el (font-lock-mode): Move the conditional from
14524 :after-hook to font-lock-initial-fontify.
14525 (font-lock-default-function): Move the check for a specification
14526 to font-lock-spec-present.
14527
14528 * font-lock.el (font-lock-initial-fontify): Call ...
14529 (font-lock-spec-present): New function.
14530
14531 2012-02-26 Jim Blandy <jimb@red-bean.com>
14532
14533 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
14534 (gdb-send): Apply it to the operand of the '-interpreter-exec
14535 console' command, so that we can pass arguments with (say) quotes
14536 in them. Store exact string sent in gdb-debug-log (Bug#10765).
14537
14538 2012-02-26 Chong Yidong <cyd@gnu.org>
14539
14540 * help-fns.el (describe-function-1): Clarify description of
14541 remapping (Bug#10844).
14542
14543 * files.el (files-equal-p): Doc fix.
14544 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
14545 and quit the loop once a mismatch is found.
14546
14547 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
14548
14549 * bs.el (bs--show-with-configuration): Don't throw an error
14550 if the window cannot be split; otherwise, subsequent calls to
14551 bs-show fail, restoring a stale window config. (Bug#10882)
14552
14553 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
14554
14555 * term/ns-win.el (global-map): Bind ns-drag-file to
14556 ns-find-file (Bug#5855, Bug#10050).
14557
14558 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
14559
14560 * calendar/parse-time.el (parse-time-string): Allow extractor to
14561 return nil.
14562
14563 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
14564
14565 * net/tramp.el (tramp-file-name-for-operation):
14566 Add `files-equal-p' and `file-subdir-of-p'.
14567
14568 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
14569 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
14570 Add COPY-CONTENTS argument.
14571
14572 2012-02-25 Chong Yidong <cyd@gnu.org>
14573
14574 Add custom groups for VC backends, for consistency with vc-bzr.
14575
14576 * vc/vc-arch.el (vc-arch):
14577 * vc/vc-cvs.el (vc-cvs):
14578 * vc/vc-git.el (vc-git):
14579 * vc/vc-hg.el (vc-hg):
14580 * vc/vc-mtn.el (vc-mtn):
14581 * vc/vc-rcs.el (vc-rcs):
14582 * vc/vc-sccs.el (vc-sccs):
14583 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
14584 All relevant defcustoms reassigned.
14585
14586 2012-02-25 Chong Yidong <cyd@gnu.org>
14587
14588 * newcomment.el (comment-styles): Add autoload (Bug#10868).
14589
14590 * term/x-win.el (x-initialize-window-system): Reduce default for
14591 x-selection-timeout to 5 seconds (Bug#8869).
14592
14593 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14594
14595 * files.el (files-equal-p, file-subdir-of-p): New functions.
14596 (copy-directory): Error when trying to copy a directory on itself.
14597 Add missing copy-contents arg to tramp handler.
14598 * dired-aux.el (dired-copy-file-recursive): Same.
14599 (dired-create-files): Modify destination when source is equal to
14600 dest when copying files.
14601 Return also when dest is a subdir of source. (Bug#10489)
14602
14603 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
14604
14605 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
14606 (Bug#10874)
14607
14608 2012-02-23 Alan Mackenzie <acm@muc.de>
14609
14610 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
14611 parameter "after-hook:" to allow the expansion to run code after
14612 the execution of the mode hooks.
14613
14614 * font-lock.el (font-lock-initial-fontify): New function extracted
14615 from font-lock-mode-internal.
14616
14617 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
14618 :after-hook.
14619
14620 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
14621
14622 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
14623 (completion--cache-all-sorted-completions): New function.
14624 (completion-all-sorted-completions): Use it.
14625 (completion--do-completion, minibuffer-force-complete):
14626 Use it to re-instate the flush hook.
14627
14628 * icomplete.el (icomplete-completions): Replace last fix with a better
14629 one (bug#10850).
14630
14631 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
14632
14633 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
14634 when it might call us back infinitely (bug#10797).
14635
14636 2012-02-23 Glenn Morris <rgm@gnu.org>
14637
14638 * minibuffer.el (completion-category-overrides): Doc fix.
14639
14640 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
14641
14642 * minibuffer.el (completion-table-with-context): Fix inf-loop.
14643 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
14644
14645 2012-02-23 Glenn Morris <rgm@gnu.org>
14646
14647 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
14648 (authors-obsolete-files-regexps, authors-ignored-files)
14649 (authors-ambiguous-files, authors-renamed-files-alist):
14650 Add more entries.
14651
14652 2012-02-23 Juri Linkov <juri@jurta.org>
14653
14654 * isearch.el (isearch-occur): Sync interactive spec with occur's
14655 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
14656
14657 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
14658
14659 2012-02-22 Juri Linkov <juri@jurta.org>
14660
14661 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
14662 (ucs-insert): Doc fix. Check for hex digits in the string.
14663 Don't display `nil' in the error message. (Bug#10857)
14664
14665 2012-02-22 Alan Mackenzie <acm@muc.de>
14666
14667 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
14668
14669 2012-02-22 Glenn Morris <rgm@gnu.org>
14670
14671 * ffap.el (ffap-c-path):
14672 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
14673
14674 2012-02-22 Chong Yidong <cyd@gnu.org>
14675
14676 * custom.el (load-theme): Doc fix.
14677
14678 2012-02-22 Glenn Morris <rgm@gnu.org>
14679
14680 * dired-x.el (dired-guess-shell-alist-default):
14681 Remove escape sequences from nroff output. (Bug#172)
14682
14683 2012-02-21 Glenn Morris <rgm@gnu.org>
14684
14685 * vc/emerge.el (emerge-defvar-local):
14686 Set `permanent-local' property rather than unused `preserved'.
14687
14688 * textmodes/picture.el (picture-delete-char): New alias.
14689 (picture-mode-map): Use it. (Bug#10860)
14690 (picture-mode): Doc fix.
14691
14692 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
14693
14694 * newcomment.el (uncomment-region-default): Remove unused binding.
14695
14696 2012-02-21 Glenn Morris <rgm@gnu.org>
14697
14698 * textmodes/picture.el (picture-motion, picture-motion-reverse)
14699 (picture-self-insert, picture-tab-chars): Doc fix.
14700 (picture-mode-map): Fix C-a, C-e.
14701
14702 2012-02-20 Glenn Morris <rgm@gnu.org>
14703
14704 * emacs-lisp/authors.el (authors-aliases): Add another entry.
14705
14706 2012-02-20 Leo Liu <sdl.web@gmail.com>
14707
14708 * icomplete.el (icomplete-completions): Check FROM arg before
14709 passing to substring (Bug#10850).
14710
14711 2012-02-19 Chong Yidong <cyd@gnu.org>
14712
14713 * comint.el: Require ansi-color.
14714 (comint-output-filter-functions): Add ansi-color-process-output.
14715
14716 * ansi-color.el: Don't set comint-output-filter-functions; it is
14717 now in the initial value defined in comint.el.
14718 (ansi-color-apply-face-function): New variable.
14719 (ansi-color-apply-on-region): Use it.
14720 (ansi-color-apply-overlay-face): New function.
14721
14722 * shell.el (shell): No need to require ansi-color.
14723 (shell-mode): Use ansi-color-apply-face-function to highlight
14724 color escapes using font-lock-face property (Bug#10835).
14725
14726 2012-02-19 Chong Yidong <cyd@gnu.org>
14727
14728 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
14729 mode-line formats (Bug#10839).
14730
14731 2012-02-18 Glenn Morris <rgm@gnu.org>
14732
14733 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
14734
14735 * mail/undigest.el (unforward-rmail-message): Doc fix.
14736
14737 * saveplace.el (save-place-ignore-files-regexp): Add :version.
14738
14739 2012-02-18 Eli Zaretskii <eliz@gnu.org>
14740
14741 * international/characters.el (script-list): Sync with the latest
14742 Unicode Character Database.
14743
14744 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
14745
14746 * international/titdic-cnv.el: Remove duplicate coding tag.
14747 * language/cham.el: Likewise.
14748 * language/tai-viet.el: Likewise.
14749
14750 2012-02-18 Glenn Morris <rgm@gnu.org>
14751
14752 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
14753 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
14754 (calendar-bahai-all-holidays-flag, calendar-other-dates):
14755 * calendar/diary-lib.el (diary-abbreviated-year-flag):
14756 * calendar/holidays.el (holiday-bahai-holidays)
14757 (calendar-holidays, list-holidays):
14758 Use utf-8 Bahá'í in doc-strings, menus, etc.
14759
14760 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
14761
14762 * saveplace.el (save-place-ignore-files-regexp): New variable
14763 allowing for excluding files from saving their location of point.
14764 The default value matches the temporary commit message editing
14765 files from Git, SVN, Bazaar, and Mercurial.
14766 (save-place-to-alist): Use it.
14767
14768 2012-02-17 Lawrence Mitchell <wence@gmx.li>
14769 Stefan Monnier <monnier@iro.umontreal.ca>
14770
14771 * newcomment.el (uncomment-region-default): Don't leave extra space
14772 when an arg is provided (bug#8150).
14773
14774 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
14775
14776 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
14777
14778 2012-02-17 Glenn Morris <rgm@gnu.org>
14779
14780 * net/socks.el: Require network-stream. (Bug#10599)
14781
14782 2012-02-17 Kenichi Handa <handa@m17n.org>
14783
14784 * international/charprop.el:
14785 * international/uni-name.el:
14786 * international/uni-old-name.el:
14787 * international/uni-comment.el: Regenerate.
14788
14789 2012-02-16 Glenn Morris <rgm@gnu.org>
14790
14791 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
14792 Interactively in calendar buffer, give an error if not on a date.
14793
14794 2012-02-15 Glenn Morris <rgm@gnu.org>
14795
14796 * shell.el (shell-delimiter-argument-list):
14797 Revert 2011-02-17 change. (Bug#8027)
14798
14799 2012-02-15 Chong Yidong <cyd@gnu.org>
14800
14801 * minibuffer.el (completion-at-point-functions): Doc fix.
14802
14803 * custom.el (defcustom): Doc fix; note use of defvar.
14804
14805 2012-02-15 Glenn Morris <rgm@gnu.org>
14806
14807 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
14808 Doc fixes.
14809
14810 2012-02-14 Glenn Morris <rgm@gnu.org>
14811
14812 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
14813
14814 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
14815
14816 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
14817 way the ports list is computed.
14818 (smtpmail-query-smtp-server): Prompt the user for a port number if
14819 we can't connect to any of the standard ports (bug#10810).
14820
14821 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
14822
14823 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
14824
14825 2012-02-13 Glenn Morris <rgm@gnu.org>
14826
14827 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
14828
14829 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
14830
14831 * net/gnutls.el (gnutls-trustfiles): New variable.
14832 (gnutls-negotiate): Use it.
14833
14834 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
14835
14836 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
14837 does its stuff if Gnus is running.
14838
14839 2012-02-13 Alan Mackenzie <acm@muc.de>
14840
14841 Fix a loop in c-set-fl-decl-start.
14842
14843 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
14844 c-backward-syntactic-ws actually moves backwards.
14845
14846 2012-02-13 Leo Liu <sdl.web@gmail.com>
14847
14848 * net/rcirc.el (rcirc-markup-attributes): Move point to the
14849 beginning so that all \C-o chars are removed.
14850
14851 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
14852
14853 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
14854
14855 2012-02-12 Alan Mackenzie <acm@muc.de>
14856
14857 Fix infinite loop with long macros.
14858 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
14859
14860 2012-02-12 Chong Yidong <cyd@gnu.org>
14861
14862 * window.el (display-buffer): Doc fix (Bug#10785).
14863
14864 2012-02-12 Glenn Morris <rgm@gnu.org>
14865
14866 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
14867 (x-disown-selection-internal, x-get-selection-internal):
14868 Sync docs with the xselect.c versions.
14869
14870 * allout-widgets.el: Add missing license notice.
14871
14872 2012-02-11 Glenn Morris <rgm@gnu.org>
14873
14874 * select.el (x-get-selection-internal, x-own-selection-internal)
14875 (x-disown-selection-internal):
14876 * x-dnd.el (x-get-selection-internal): Update declarations.
14877
14878 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
14879
14880 * window.el (window-sides-slots):
14881 * tool-bar.el (tool-bar-position):
14882 * term/xterm.el (xterm-extra-capabilities):
14883 * ses.el (ses-self-reference-early-detection):
14884 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
14885 (verilog-auto-wire-type)
14886 (verilog-auto-delete-trailing-whitespace)
14887 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
14888 (verilog-auto-tieoff-declaration):
14889 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
14890 (sql-oracle-statement-starters, sql-oracle-scan-on):
14891 * progmodes/prolog.el (prolog-align-comments-flag)
14892 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
14893 (prolog-left-indent-regexp, prolog-paren-indent-p)
14894 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
14895 (prolog-types, prolog-mode-specificators)
14896 (prolog-determinism-specificators, prolog-directives)
14897 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
14898 (prolog-electric-dot-flag)
14899 (prolog-electric-dot-full-predicate-template)
14900 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
14901 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
14902 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
14903 (prolog-program-switches, prolog-prompt-regexp)
14904 (prolog-debug-on-string, prolog-debug-off-string)
14905 (prolog-trace-on-string, prolog-trace-off-string)
14906 (prolog-zip-on-string, prolog-zip-off-string)
14907 (prolog-use-standard-consult-compile-method-flag)
14908 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
14909 (prolog-imenu-max-lines, prolog-info-predicate-index)
14910 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
14911 (prolog-char-quote-workaround):
14912 * progmodes/cc-vars.el (c-defun-tactic):
14913 * net/tramp.el (tramp-encoding-command-interactive)
14914 (tramp-local-end-of-line):
14915 * net/soap-client.el (soap-client):
14916 * net/netrc.el (netrc-file):
14917 * net/gnutls.el (gnutls):
14918 * minibuffer.el (completion-category-overrides)
14919 (completion-cycle-threshold)
14920 (completion-pcm-complete-word-inserts-delimiters):
14921 * man.el (Man-name-local-regexp):
14922 * mail/feedmail.el (feedmail-display-full-frame):
14923 * international/characters.el (glyphless-char-display-control):
14924 * eshell/em-ls.el (eshell-ls-date-format):
14925 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
14926 (lisp-lambda-list-keyword-parameter-indentation)
14927 (lisp-lambda-list-keyword-parameter-alignment):
14928 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
14929 * dired-x.el (dired-omit-verbose):
14930 * cus-theme.el (custom-theme-allow-multiple-selections):
14931 * calc/calc.el (calc-highlight-selections-with-faces)
14932 (calc-lu-field-reference, calc-lu-power-reference)
14933 (calc-note-threshold):
14934 * battery.el (battery-mode-line-limit):
14935 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
14936 (archive-7z-update):
14937 * allout.el (allout-prefixed-keybindings)
14938 (allout-unprefixed-keybindings)
14939 (allout-inhibit-auto-fill-on-headline)
14940 (allout-flattened-numbering-abbreviation):
14941 * allout-widgets.el (allout-widgets-auto-activation)
14942 (allout-widgets-icons-dark-subdir)
14943 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
14944 (allout-widgets-theme-dark-background)
14945 (allout-widgets-theme-light-background)
14946 (allout-widgets-item-image-properties-emacs)
14947 (allout-widgets-item-image-properties-xemacs)
14948 (allout-widgets-run-unit-tests-on-load)
14949 (allout-widgets-time-decoration-activity)
14950 (allout-widgets-hook-error-post-time)
14951 (allout-widgets-track-decoration):
14952 Add missing :version tags to new defcustoms and defgroups.
14953
14954 * progmodes/sql.el (sql-ansi-statement-starters)
14955 (sql-oracle-statement-starters): Add custom type.
14956
14957 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
14958 (prolog-system-version): Give it a type.
14959
14960 2012-02-11 Eli Zaretskii <eliz@gnu.org>
14961
14962 * term/pc-win.el (x-select-text, x-selection-owner-p)
14963 (x-own-selection-internal, x-disown-selection-internal)
14964 (x-get-selection-internal): Sync doc strings and argument lists
14965 with xselect.c, common-win.el and x-win.el. (Bug#10783)
14966
14967 2012-02-11 Leo Liu <sdl.web@gmail.com>
14968
14969 * progmodes/python.el (python-end-of-statement): Fix infinite
14970 loop. (Bug#10788)
14971
14972 2012-02-10 Glenn Morris <rgm@gnu.org>
14973
14974 * international/mule-cmds.el (unify-8859-on-encoding-mode)
14975 (unify-8859-on-decoding-mode): Properly mark as obsolete.
14976
14977 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
14978
14979 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
14980 about SMTP before checking the From header.
14981
14982 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
14983 into own function for reuse by emacsbug.el.
14984
14985 2012-02-10 Leo Liu <sdl.web@gmail.com>
14986
14987 * subr.el (condition-case-unless-debug): Rename from
14988 condition-case-no-debug. All callers changed.
14989 (with-demoted-errors): Fix caller.
14990
14991 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
14992 * nxml/rng-valid.el (rng-do-some-validation):
14993 * emacs-lisp/package.el (package-refresh-contents)
14994 (package-menu-execute):
14995 * desktop.el (desktop-create-buffer):
14996 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
14997
14998 2012-02-10 Glenn Morris <rgm@gnu.org>
14999
15000 * textmodes/bibtex.el:
15001 Add missing :version tags for new/changed defcustoms.
15002
15003 * files.el (remote-file-name-inhibit-cache): Doc fixes.
15004
15005 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
15006
15007 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
15008 (smtpmail-via-smtp): Use it, or fall back on the From address.
15009 (smtpmail-send-it): Ditto.
15010
15011 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
15012
15013 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
15014 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
15015 (byte-compile-tmp-var): New const.
15016 (byte-compile-defvar): Use it to minimize .elc size.
15017 Just use `defvar' rather than simulate it (bug#10761).
15018
15019 2012-02-09 Glenn Morris <rgm@gnu.org>
15020
15021 * files.el (rename-uniquely): Doc fix. (Bug#3806)
15022
15023 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
15024 Add :version tags.
15025
15026 * progmodes/compile.el (compilation-error-screen-columns)
15027 (compilation-first-column, compilation-filter-start): Doc fixes.
15028
15029 * vc/log-view.el (log-view-toggle-entry-display):
15030 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
15031
15032 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
15033 (report-emacs-bug-can-use-xdg-email):
15034 (report-emacs-bug-insert-to-mailer): Doc fixes.
15035 (report-emacs-bug): Message fix.
15036
15037 * net/browse-url.el (browse-url-can-use-xdg-open)
15038 (browse-url-xdg-open): Doc fixes.
15039
15040 * electric.el (electric-indent-mode, electric-pair-mode)
15041 (electric-layout-rules, electric-layout-mode): Doc fixes.
15042 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
15043
15044 2012-02-08 Martin Rudalics <rudalics@gmx.at>
15045
15046 * server.el (server-unselect-display): Don't inadvertently kill
15047 the current buffer. (Bug#10729)
15048
15049 2012-02-08 Glenn Morris <rgm@gnu.org>
15050
15051 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
15052 (sql-list-table): Doc fixes.
15053
15054 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
15055 Comment out (does nothing).
15056
15057 * completion.el (dynamic-completion-mode):
15058 * dirtrack.el (dirtrack-debug-mode):
15059 * electric.el (electric-layout-mode):
15060 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
15061 * face-remap.el (text-scale-mode, buffer-face-mode):
15062 * iimage.el (iimage-mode):
15063 * image-mode.el (image-transform-mode):
15064 * minibuffer.el (completion-in-region-mode):
15065 * scroll-lock.el (scroll-lock-mode):
15066 * simple.el (next-error-follow-minor-mode):
15067 * tar-mode.el (tar-subfile-mode):
15068 * tooltip.el (tooltip-mode):
15069 * vcursor.el (vcursor-use-vcursor-map):
15070 * wid-browse.el (widget-minor-mode):
15071 * emulation/tpu-edt.el (tpu-edt-mode):
15072 * emulation/tpu-extras.el (tpu-cursor-free-mode):
15073 * international/iso-ascii.el (iso-ascii-mode):
15074 * language/thai-util.el (thai-word-mode):
15075 * mail/supercite.el (sc-minor-mode):
15076 * net/goto-addr.el (goto-address-mode):
15077 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
15078 * progmodes/cwarn.el (cwarn-mode):
15079 * progmodes/flymake.el (flymake-mode):
15080 * progmodes/glasses.el (glasses-mode):
15081 * progmodes/hideshow.el (hs-minor-mode):
15082 * progmodes/pascal.el (pascal-outline-mode):
15083 * textmodes/enriched.el (enriched-mode):
15084 * vc/smerge-mode.el (smerge-mode):
15085 Doc fixes (minor mode argument).
15086
15087 2012-02-07 Eli Zaretskii <eliz@gnu.org>
15088
15089 * ls-lisp.el (ls-lisp-sanitize): New function.
15090 (ls-lisp-insert-directory): Use it to fix or remove any elements
15091 in file-alist with missing attributes. (Bug#4673)
15092
15093 2012-02-07 Alan Mackenzie <acm@muc.de>
15094
15095 Fix spurious recognition of c-in-knr-argdecl.
15096
15097 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
15098 putative K&R region.
15099
15100 2012-02-07 Alan Mackenzie <acm@muc.de>
15101
15102 * progmodes/cc-engine.el (c-forward-objc-directive):
15103 Prevent looping in "#pragma mark @implementation".
15104
15105 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
15106
15107 * notifications.el (notifications-on-closed-signal): Make `reason'
15108 optional. (Bug#10744)
15109
15110 2012-02-07 Glenn Morris <rgm@gnu.org>
15111
15112 * emacs-lisp/easy-mmode.el (define-minor-mode):
15113 Doc fixes for the macro and the mode it defines.
15114
15115 * image.el (imagemagick-types-inhibit): Doc fix.
15116
15117 * cus-start.el (imagemagick-render-type): Add it.
15118
15119 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
15120
15121 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
15122 Set the default at load time, too, so that `font-lock-fontify-buffer'
15123 can be called without setting up the entire mode first. This fixes
15124 a bug in `mm-inline-text' with C MIME parts.
15125
15126 2012-02-06 Chong Yidong <cyd@gnu.org>
15127
15128 * simple.el (list-processes--refresh): Delete exited processes
15129 (Bug#8094).
15130
15131 * comint.el (comint-next-prompt): next-single-char-property-change
15132 and prev-single-char-property-change never return nil (Bug#8657).
15133
15134 * custom.el (defcustom): Doc fix (Bug#9711).
15135
15136 2012-02-05 Chong Yidong <cyd@gnu.org>
15137
15138 * cus-edit.el (custom-variable-reset-backup): Quote the value
15139 before storing it in the customized-value property (Bug#6712).
15140 (custom-display): Add a customization type tag.
15141 (custom-buffer-create-internal): Improve tooltip message.
15142
15143 * wid-edit.el (widget-field-value-get): New optional arg to
15144 suppress trailing whitespace truncation.
15145 (character): Use it (Bug#2689).
15146
15147 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
15148
15149 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
15150 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
15151
15152 2012-02-05 Chong Yidong <cyd@gnu.org>
15153
15154 * cus-edit.el (custom-variable-value-create): For mismatched
15155 types, show the current value (Bug#7600).
15156
15157 * custom.el (defcustom): Doc fix.
15158
15159 2012-02-05 Glenn Morris <rgm@gnu.org>
15160
15161 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
15162
15163 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
15164
15165 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
15166 (pp-buffer): Use `ignore-errors', `looking-at-p'.
15167 (pp-last-sexp): Use `looking-at-p'.
15168
15169 2012-02-04 Glenn Morris <rgm@gnu.org>
15170
15171 * files.el (revert-buffer):
15172 Doc fix (mention revert-buffer-in-progress-p).
15173
15174 * emacs-lisp/ert-x.el (ert-simulate-command):
15175 Check deferred-action-list (which is obsolete) is bound.
15176
15177 * subr.el (with-wrapper-hook): Doc fixes.
15178
15179 * simple.el (filter-buffer-substring-functions)
15180 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
15181
15182 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
15183
15184 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
15185 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
15186
15187 2012-02-04 Leo Liu <sdl.web@gmail.com>
15188
15189 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
15190
15191 2012-02-04 Glenn Morris <rgm@gnu.org>
15192
15193 * image.el (image-extension-data): Add obsolete alias.
15194
15195 * isearch.el (isearch-update): Doc fix.
15196
15197 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
15198
15199 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
15200
15201 2012-02-03 Glenn Morris <rgm@gnu.org>
15202
15203 * image.el (image-animated-p): Doc fix. Use image-animated-types.
15204 (image-animate-timeout): Doc fix.
15205
15206 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
15207
15208 2012-02-02 Glenn Morris <rgm@gnu.org>
15209
15210 * server.el (server-auth-dir): Doc fix.
15211 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
15212
15213 * subr.el (run-mode-hooks): Doc fix.
15214
15215 2012-02-02 Juri Linkov <juri@jurta.org>
15216
15217 * image-mode.el (image-toggle-display-image): Remove tautological
15218 `major-mode' from the `derived-mode-p' test.
15219
15220 2012-02-02 Kenichi Handa <handa@m17n.org>
15221
15222 * composite.el (compose-region): Cancel previous change.
15223
15224 2012-02-02 Kenichi Handa <handa@m17n.org>
15225
15226 * composite.el (compose-region, compose-string): Signal error for
15227 a null string component (Bug#6988).
15228
15229 2012-02-01 Chong Yidong <cyd@gnu.org>
15230
15231 * view.el (view-buffer-other-window, view-buffer-other-frame):
15232 Handle special modes like view-buffer (Bug#10650).
15233 (view-buffer): Simplify.
15234
15235 * frame.el (set-frame-font): Tweak meaning of third argument.
15236
15237 * dynamic-setting.el (font-setting-change-default-font):
15238 Use set-frame-font (Bug#9982).
15239
15240 2012-02-01 Glenn Morris <rgm@gnu.org>
15241
15242 * progmodes/compile.el (compilation-internal-error-properties):
15243 Respect compilation-first-column in the "*compilation*" buffer.
15244
15245 * emacs-lisp/easy-mmode.el (define-minor-mode):
15246 Relax :variable's test for a named function.
15247
15248 2012-01-31 Alan Mackenzie <acm@muc.de>
15249
15250 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
15251 off by one error.
15252
15253 2012-01-31 Chong Yidong <cyd@gnu.org>
15254
15255 * frame.el (set-frame-font): New arg ALL-FRAMES.
15256
15257 * menu-bar.el (menu-set-font): Use set-frame-font.
15258
15259 * faces.el (face-spec-reset-face): Don't apply unspecified
15260 attribute values to the default face.
15261
15262 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
15263
15264 * progmodes/cwarn.el (cwarn): Remove dead link.
15265 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
15266 Remove * from defcustom docstrings.
15267 (turn-on-cwarn-mode): Make obsolete.
15268 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
15269 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
15270
15271 2012-01-31 Glenn Morris <rgm@gnu.org>
15272
15273 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
15274 Fix :variable handling of mode a symbol not equal to modefun.
15275 Allow named functions to be used as the cdr of :variable.
15276
15277 2012-01-30 Glenn Morris <rgm@gnu.org>
15278
15279 * emacs-lisp/authors.el (authors-fixed-entries):
15280 Remove reference to deleted file rnewspost.el.
15281
15282 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
15283
15284 * window.el (window-with-parameter): Remove unused variable `windows'.
15285 (window--side-check): Remove unused variable `code'.
15286 (window--resize-siblings): Remove unused variable `first'.
15287 (adjust-window-trailing-edge): Remove unused variable `failed'.
15288 (window-deletable-p, window--delete): Remove unused variable `buffer'.
15289 Use `let', not `let*'.
15290 (balance-windows-2): Remove unused variable `found'.
15291 (window--state-put-2): Remove unused variable `splits'.
15292 (window-state-put): Remove unused variable `selected'.
15293 (same-window-p): Use `string-match-p'.
15294 (display-buffer-assq-regexp): Remove unused variable `value'.
15295 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15296 Mark argument ALIST as ignored.
15297 (pop-to-buffer): Remove unused variable `old-window'.
15298
15299 2012-01-29 Eli Zaretskii <eliz@gnu.org>
15300
15301 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
15302 and .lzma compressed files.
15303
15304 2012-01-29 Chong Yidong <cyd@gnu.org>
15305
15306 * frame.el (window-system-default-frame-alist): Doc fix.
15307
15308 * dynamic-setting.el (font-setting-change-default-font): Don't
15309 change the default face if SET-FONT argument is non-nil (Bug#9982).
15310
15311 2012-01-29 Samuel Bronson <naesten@gmail.com>
15312
15313 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
15314
15315 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
15316
15317 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
15318 breakpoints in files outside current directory (Bug#6098).
15319
15320 2012-01-29 Chong Yidong <cyd@gnu.org>
15321
15322 * progmodes/python.el: Require ansi-color at top-level.
15323
15324 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
15325 Define and use in Emacs Lisp mode (Bug#9360).
15326 (lisp-mode-abbrev-table): Add doc.
15327 (lisp-mode-variables): Don't set local-abbrev-table.
15328 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
15329
15330 2012-01-28 Roland Winkler <winkler@gnu.org>
15331
15332 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
15333
15334 2012-01-28 Roland Winkler <winkler@gnu.org>
15335
15336 * textmodes/bibtex.el (bibtex-entry-alist): New function.
15337 (bibtex-set-dialect): Use it. Either set global values of
15338 dialect-dependent variables or bind these variables buffer-locally
15339 (Bug#10254).
15340 (bibtex-mode): Call bibtex-set-dialect via
15341 hack-local-variables-hook.
15342 (bibtex-dialect): Update docstring.
15343 Add safe-local-variable predicate.
15344 (bibtex-entry-alist, bibtex-field-alist): Initialize via
15345 bibtex-set-dialect.
15346 (bibtex-mode-map): Define menu for each dialect.
15347 (bibtex-entry): Fix docstring.
15348
15349 2012-01-28 Chong Yidong <cyd@gnu.org>
15350
15351 * eshell/esh-arg.el (eshell-quote-argument): New function.
15352
15353 * eshell/esh-ext.el (eshell-invoke-batch-file):
15354 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
15355 first arg to eshell-parse-command (Bug#10523).
15356
15357 2012-01-28 Drew Adams <drew.adams@oracle.com>
15358
15359 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
15360 `default-directory' is non-nil.
15361
15362 2012-01-28 Eli Zaretskii <eliz@gnu.org>
15363
15364 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
15365 line that displays system-configuration-options. (Bug#9924)
15366
15367 2012-01-28 Drew Adams <drew.adams@oracle.com>
15368
15369 * descr-text.el (describe-char): Show information about POS, in
15370 addition to information about the character at POS. Improve and
15371 update the doc string. Change "code point" to "code point in
15372 charset", to avoid confusion with the character's Unicode code
15373 point shown above that. (Bug#10129)
15374
15375 2012-01-28 Eli Zaretskii <eliz@gnu.org>
15376
15377 * descr-text.el (describe-char): Show the raw character, not only
15378 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
15379 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
15380 for the reasons.
15381
15382 2012-01-28 Phil Hagelberg <phil@hagelb.org>
15383
15384 * emacs-lisp/package.el (package-install):
15385 Run package-refresh-contents if there is no archive yet (Bug#9798).
15386
15387 2012-01-28 Chong Yidong <cyd@gnu.org>
15388
15389 * emacs-lisp/package.el (package-maybe-load-descriptor):
15390 New function, split from package-maybe-load-descriptor.
15391 (package-maybe-load-descriptor): Use it.
15392 (package-download-transaction): Fully load required packages
15393 inside the loop, so that `require' calls work (Bug#10593).
15394 (package-install): No need to call package-initialize now.
15395
15396 2012-01-28 Chong Yidong <cyd@gnu.org>
15397
15398 * simple.el (deactivate-mark): Doc fix (Bug#8614).
15399
15400 * tooltip.el (tooltip-mode): Doc fix.
15401 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
15402
15403 * frame.el (set-cursor-color): Doc fix (Bug#352).
15404
15405 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
15406 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
15407
15408 * cus-edit.el (custom-buffer-create-internal): Fix search button
15409 action (Bug#10542).
15410 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
15411
15412 2012-01-27 Eduard Wiebe <usenet@pusto.de>
15413
15414 * dired.el (dired-mark-files-regexp):
15415 Include any subdirectory components. (Bug#10445)
15416
15417 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
15418
15419 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
15420 Handle [host]:port syntax. (Bug#10533)
15421
15422 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
15423
15424 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
15425
15426 2012-01-26 Glenn Morris <rgm@gnu.org>
15427
15428 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
15429 * term.el (term-raw-escape-map): Use Control-X-prefix.
15430 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
15431
15432 2012-01-25 Martin Rudalics <rudalics@gmx.at>
15433
15434 * window.el (window-state-get, window--state-get-1): Don't deal
15435 with fixed-sizeness of windows. Simplify code.
15436
15437 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
15438
15439 * window.el (window--state-get-1, window--state-put-2):
15440 Don't save and restore the mark.
15441
15442 2012-01-25 Chong Yidong <cyd@gnu.org>
15443
15444 * custom.el (custom-variable-p): Doc fix.
15445
15446 2012-01-25 Glenn Morris <rgm@gnu.org>
15447
15448 * dired.el (dired-goto-file): Handle some of the more common
15449 characters that `ls -b' escapes. (Bug#10596)
15450
15451 * progmodes/compile.el (compilation-next-error-function):
15452 Respect compilation-first-column in the "*compilation*" buffer.
15453 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
15454
15455 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
15456
15457 2012-01-24 Glenn Morris <rgm@gnu.org>
15458
15459 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
15460
15461 2012-01-24 Julien Danjou <julien@danjou.info>
15462
15463 * color.el (color-rgb-to-hsl): Fix value computing.
15464 (color-hue-to-rgb): New function.
15465 (color-hsl-to-rgb): New function.
15466 (color-clamp, color-saturate-hsl, color-saturate-name)
15467 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
15468 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
15469
15470 2012-01-24 Glenn Morris <rgm@gnu.org>
15471
15472 * vc/vc-rcs.el (vc-rcs-create-tag):
15473 * vc/vc-sccs.el (vc-sccs-create-tag):
15474 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
15475
15476 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
15477
15478 * eshell/esh-util.el (eshell-read-hosts-file):
15479 Skip comment lines. (Bug#10549)
15480
15481 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
15482
15483 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
15484
15485 * subr.el (display-delayed-warnings): Doc fix.
15486 (collapse-delayed-warnings): New function to collapse identical
15487 adjacent warnings.
15488 (delayed-warnings-hook): Add it.
15489
15490 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
15491
15492 * net/tramp.el (tramp-action-login): Set connection property "login-as".
15493
15494 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
15495 (tramp-default-user-alist): Don't add "pscp".
15496 (tramp-do-copy-or-rename-file-out-of-band): Use connection
15497 property "login-as", if set. (Bug#10530)
15498
15499 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
15500
15501 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
15502 "plink1" and "psftp". (Bug#10530)
15503
15504 2012-01-21 Kenichi Handa <handa@m17n.org>
15505
15506 * international/mule-cmds.el (prefer-coding-system): Show a
15507 warning message if the default value of file-name-coding-system
15508 was not changed.
15509
15510 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
15511
15512 * windmove.el (windmove-reference-loc):
15513 Fix windmove-reference-loc miscalculation.
15514
15515 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
15516
15517 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
15518 default unit.
15519
15520 2012-01-21 Glenn Morris <rgm@gnu.org>
15521
15522 * international/mule.el (auto-coding-alist): Add .tbz.
15523
15524 * files.el (local-enable-local-variables): Doc fix.
15525 (inhibit-local-variables-regexps): Rename from
15526 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
15527 Doc fix. Add some extensions from auto-coding-alist.
15528 (inhibit-local-variables-suffixes):
15529 Rename from inhibit-first-line-modes-suffixes. Doc fix.
15530 (inhibit-local-variables-p):
15531 New function, extracted from set-auto-mode-1.
15532 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
15533 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
15534 (hack-local-variables): Doc fix. Make the mode-only case
15535 respect enable-local-variables and friends.
15536 Respect inhibit-local-variables-regexps for file-locals, but
15537 not for directory-locals.
15538 (set-visited-file-name):
15539 Take account of inhibit-local-variables-regexps.
15540 Whether it applies may change as the file name is changed.
15541 * jka-cmpr-hook.el (jka-compr-install):
15542 * jka-compr.el (jka-compr-uninstall):
15543 Update for inhibit-first-line-modes-suffixes name change.
15544
15545 2012-01-20 Martin Rudalics <rudalics@gmx.at>
15546
15547 * help-macro.el (make-help-screen): Temporarily restore original
15548 binding for minor-mode-map-alist (Bug#10454).
15549
15550 2012-01-19 Julien Danjou <julien@danjou.info>
15551
15552 * color.el (color-name-to-rgb): Use the white color to find the max
15553 color component value and return correctly computed values.
15554 (color-name-to-rgb): Add missing float conversion for max value.
15555
15556 2012-01-19 Martin Rudalics <rudalics@gmx.at>
15557
15558 * window.el (window--state-get-1, window-state-get): Do not use
15559 special state value for window-persistent-parameters.
15560 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
15561 (window--state-put-2): Reset all window parameters to nil before
15562 assigning values of persistent parameters.
15563
15564 2012-01-18 Alan Mackenzie <acm@muc.de>
15565
15566 Eliminate sluggishness and hangs in fontification of "semicolon
15567 deserts".
15568
15569 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
15570 Change value 10000 -> 3000.
15571 (c-state-safe-place): Reformulate so it doesn't stack up an
15572 infinite number of wrong entries in c-state-nonlit-pos-cache.
15573 (c-determine-limit-get-base, c-determine-limit): New functions to
15574 determine backward search limits disregarding literals.
15575 (c-find-decl-spots): Amend commenting.
15576 (c-cheap-inside-bracelist-p): New function which detects "={".
15577
15578 * progmodes/cc-fonts.el
15579 (c-make-font-lock-BO-decl-search-function): Give a limit to a
15580 backward search.
15581 (c-font-lock-declarations): Fix an occurrence of point being
15582 undefined. Check additionally for point being in a bracelist or
15583 near a macro invocation without a semicolon so as to avoid a
15584 fruitless time consuming search for a declarator. Give a more
15585 precise search limit for declarators using the new
15586 c-determine-limit.
15587
15588 2012-01-18 Glenn Morris <rgm@gnu.org>
15589
15590 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
15591 (set-auto-mode): Doc fixes.
15592
15593 2012-01-17 Glenn Morris <rgm@gnu.org>
15594
15595 * isearch.el (search-nonincremental-instead): Fix doc typo.
15596
15597 * dired.el (dired-insert-directory): Handle newlines in directory name.
15598 (dired-build-subdir-alist): Unescape newlines in directory name.
15599
15600 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
15601
15602 * net/tramp.el (tramp-local-end-of-line): New defcustom.
15603 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
15604 (tramp-action-terminal): Use it. (Bug#10530)
15605
15606 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
15607
15608 * minibuffer.el (completion--replace): Strip properties (bug#10062).
15609
15610 2012-01-16 Martin Rudalics <rudalics@gmx.at>
15611
15612 * window.el (window-state-ignored-parameters): Remove variable.
15613 (window--state-get-1): Rename argument MARKERS to IGNORE.
15614 Handle persistent window parameters. Make copy of clone-of
15615 parameter only if requested. (Bug#10348)
15616 (window--state-put-2): Install a window parameter only if it has
15617 a non-nil value or an existing parameter shall be overwritten.
15618
15619 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
15620
15621 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
15622
15623 2012-01-14 Eli Zaretskii <eliz@gnu.org>
15624
15625 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
15626 don't pass the (nil) value of `upnode' to string-match.
15627
15628 2012-01-14 Chong Yidong <cyd@gnu.org>
15629
15630 * startup.el (command-line): Fix X resource class for cursorColor.
15631 Fix values recognized by the cursorBlink resource.
15632
15633 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
15634
15635 * epg.el (epg--make-temp-file): Avoid permission race condition
15636 when running on old Emacs versions (bug#10403).
15637
15638 2012-01-14 Glenn Morris <rgm@gnu.org>
15639
15640 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
15641
15642 2012-01-13 Alan Mackenzie <acm@muc.de>
15643
15644 Fix filling for when filladapt mode is enabled.
15645
15646 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
15647 c-mask-paragraph, pass in `fill-paragraph' rather than
15648 `fill-region-as-paragraph'. (This is a reversion of a previous
15649 change.)
15650 * progmodes/cc-mode.el (c-basic-common-init):
15651 Make fill-paragraph-handle-comment buffer local and set it to nil.
15652
15653 2012-01-13 Glenn Morris <rgm@gnu.org>
15654
15655 * dired.el (dired-switches-escape-p): New function.
15656 (dired-insert-directory): Use dired-switches-escape-p.
15657 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
15658
15659 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
15660
15661 2012-01-12 Glenn Morris <rgm@gnu.org>
15662
15663 * mail/sendmail.el (mail-mode): Update paragraph-separate for
15664 changes in adaptive-fill-regexp. (Bug#10276)
15665
15666 2012-01-11 Alan Mackenzie <acm@muc.de>
15667
15668 Fix Emacs bug #10463 - put `widen's around the critical spots.
15669
15670 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
15671 widen around each invocation of c-state-pp-to-literal. Remove an
15672 unused let variable.
15673
15674 2012-01-11 Glenn Morris <rgm@gnu.org>
15675
15676 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
15677 Doc fix.
15678
15679 2012-01-10 Chong Yidong <cyd@gnu.org>
15680
15681 * net/network-stream.el (network-stream-open-starttls):
15682 Avoid emitting a confusing error message when the server gives a bad
15683 response to the capability command.
15684
15685 2012-01-10 Glenn Morris <rgm@gnu.org>
15686
15687 * mail/unrmail.el (unrmail): Tweak previous change.
15688
15689 2012-01-09 Chong Yidong <cyd@gnu.org>
15690
15691 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
15692
15693 2012-01-08 Alan Mackenzie <acm@muc.de>
15694
15695 Optimize font locking in long enum definitions.
15696
15697 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
15698 arm to a cond form to handle enums.
15699 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
15700 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
15701
15702 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
15703
15704 * files.el (move-file-to-trash): Preserve default file modes on error.
15705 (Bug#10401)
15706
15707 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15708
15709 * faces.el (set-face-attribute): Clarify the meaning of the nil
15710 frame (bug#10294).
15711
15712 * subr.el (with-selected-frame): Mention that the selected frame
15713 is restored (bug#9980).
15714
15715 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
15716 (bug#9759).
15717
15718 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
15719 (password-read): Don't autoload unused function.
15720
15721 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
15722
15723 * progmodes/which-func.el (which-func-mode): Turn into a
15724 non-interactive function and mark as obsolete (bug#10428).
15725
15726 2012-01-06 Chong Yidong <cyd@gnu.org>
15727
15728 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
15729 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
15730 functions, along with 1 and -1.
15731
15732 2012-01-06 Eli Zaretskii <eliz@gnu.org>
15733
15734 * time.el (display-time-load-average)
15735 (display-time-default-load-average): Doc fixes. See the thread
15736 starting at
15737 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
15738 for the details.
15739
15740 2012-01-06 Glenn Morris <rgm@gnu.org>
15741
15742 * mail/unrmail.el (unrmail): Give an explicit error if the input file
15743 has no messages. (Bug#10377)
15744
15745 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
15746 than Info-edit. (Bug#10385)
15747
15748 * time.el (display-time-load-average, display-time-next-load-average):
15749 Doc fixes.
15750
15751 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
15752 local setting of buffer-read-only to the input buffer. (Bug#10419)
15753
15754 * calendar/calendar.el (calendar-mode):
15755 Locally set scroll-margin to 0. (Bug#10379)
15756
15757 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
15758
15759 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
15760
15761 2012-01-05 Glenn Morris <rgm@gnu.org>
15762
15763 * eshell/em-unix.el (diff-no-select): Autoload it.
15764 (eshell/diff): Use diff-no-select. (Bug#10420)
15765
15766 2012-01-05 Chong Yidong <cyd@gnu.org>
15767
15768 * shell.el (shell-dynamic-complete-functions): Revert last change.
15769 (shell-command-completion-function): New function.
15770 (shell-completion-vars): Use it to implement
15771 shell-completion-execonly (Bug#10417).
15772
15773 * custom.el (enable-theme): Don't set custom-safe-themes.
15774
15775 * cus-theme.el (custom-theme-merge-theme):
15776 Ignore custom-enabled-themes and custom-safe-themes.
15777
15778 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
15779
15780 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
15781 first prompt in `sql-interacive-mode'.
15782 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
15783 keywords.
15784 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
15785 (sql-product-interactive): Bug fix: Set `sql-buffer' in
15786 context of original buffer. Invoke `sql-login-hook'.
15787
15788 2012-01-04 Eli Zaretskii <eliz@gnu.org>
15789
15790 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
15791 letters in cite-prefix.
15792
15793 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15794
15795 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
15796
15797 2012-01-03 Chong Yidong <cyd@gnu.org>
15798
15799 * shell.el (shell-dynamic-complete-functions):
15800 Put pcomplete-completions-at-point, so as to try
15801 comint-filename-completion first (Bug#10417).
15802
15803 2012-01-02 Richard Stallman <rms@gnu.org>
15804
15805 * battery.el (battery-status-function):
15806 Detect when to use battery-yeeloong-sysfs.
15807 (battery-echo-area-format): Add string for Yeeloong.
15808 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
15809 (battery-yeeloong-sysfs): New function.
15810
15811 2012-01-02 Chong Yidong <cyd@gnu.org>
15812
15813 * dirtrack.el (dirtrack-list): Eliminate unused third element.
15814 (dirtrack): Merge code for handling relative filenames in prompt
15815 from shell-dir-cookie-watcher.
15816 (dirtrack-debug-message): New arg to avoid excess format calls.
15817
15818 * shell.el (shell-dir-cookie-re): Variable deleted.
15819 (shell-dir-cookie-watcher): Function deleted.
15820 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
15821 with dirtrack-mode.
15822
15823 2012-01-01 Eli Zaretskii <eliz@gnu.org>
15824
15825 * term/w32-win.el (dynamic-library-alist) <gnutls>:
15826 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
15827 libgnutls-26.dll.
15828
15829 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
15830
15831 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
15832
15833 2011-12-31 Eli Zaretskii <eliz@gnu.org>
15834
15835 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
15836 headers of non-MIME messages, when rmail-enable-mime is non-nil.
15837
15838 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
15839
15840 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
15841 also for alternative shells.
15842 (tramp-open-connection-setup-interactive-shell): Check, whether
15843 the shell is a busybox.
15844 (tramp-send-command): Don't suppress multiple prompts for
15845 busyboxes, it hurts.
15846
15847 2011-12-28 Chong Yidong <cyd@gnu.org>
15848
15849 * progmodes/gdb-mi.el (gdb-get-source-file-list)
15850 (gdb-get-source-file): Move mode line update to
15851 gdb-get-source-file (Bug#10087).
15852
15853 2011-12-25 Chong Yidong <cyd@gnu.org>
15854
15855 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
15856 gud-gdb-marker-filter without taking it as an argument.
15857 (gud-gdb-run-command-fetch-lines): Caller changed.
15858 (gud-gdb-completion-function): New variable.
15859 (gud-gdb-completion-at-point): Use it.
15860 (gud-gdb-completions-1): Split from gud-gdb-completions.
15861
15862 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
15863 function as separate arguments.
15864 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
15865 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
15866 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
15867 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
15868 (gdb-stopped, def-gdb-auto-update-trigger)
15869 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
15870 (gdb-get-changed-registers, gdb-get-main-selected-frame):
15871 Callers changed.
15872 (gud-gdbmi-completions): New function.
15873 (gdb): Use it for generating the completion table.
15874
15875 2011-12-24 Alan Mackenzie <acm@muc.de>
15876
15877 Introduce a mechanism to widen the region used in context font
15878 locking. Use this to protect declarations from losing their contexts.
15879
15880 * progmodes/cc-langs.el (c-before-font-lock-functions):
15881 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
15882 (c-before-context-fontification-functions): New defvar, a list of
15883 functions to be run just before context (etc.) font locking.
15884
15885 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
15886 New, functionality extracted from
15887 c-neutralize-syntax-in-and-mark-CPP.
15888 (c-in-after-change-fontification): New variable.
15889 (c-after-change): Set c-in-after-change-fontification.
15890 (c-set-fl-decl-start): Rejig its interface, so it can be called
15891 from both after-change and context fontifying.
15892 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
15893 New functions.
15894 (c-standard-font-lock-fontify-region-function): New variable.
15895 (c-font-lock-fontify-region): New function.
15896
15897 2011-12-24 Juri Linkov <juri@jurta.org>
15898
15899 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
15900 (Bug#10348)
15901
15902 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
15903
15904 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
15905 existence of source file. (Bug#10325)
15906
15907 2011-12-23 Alan Mackenzie <acm@muc.de>
15908
15909 Fix unstable fontification inside templates.
15910
15911 * progmodes/cc-langs.el (c-before-font-lock-functions):
15912 Newly created from the singular version. The (c c++ objc) entry now
15913 additionally has c-set-fl-decl-start. The other languages (apart
15914 from AWK) have that as a single entry.
15915
15916 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15917 The functionality for "local" declarations has been extracted to
15918 c-set-fl-decl-start.
15919
15920 * progmodes/cc-mode.el (c-common-init, c-after-change):
15921 Changes due to pluralisation of c-before-font-lock-functions.
15922 (c-set-fl-decl-start): New function, extracted from
15923 c-font-lock-enclosing-decls and enhanced.
15924
15925 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
15926
15927 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
15928
15929 2011-12-22 Juri Linkov <juri@jurta.org>
15930
15931 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
15932
15933 2011-12-22 Chong Yidong <cyd@gnu.org>
15934
15935 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
15936
15937 2011-12-21 Drew Adams <drew.adams@oracle.com>
15938
15939 * files.el (file-remote-p): Fix docstring. (Bug#10319)
15940
15941 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
15942
15943 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
15944
15945 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
15946
15947 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
15948 highlighting and support. Fix up comments for capitalization.
15949 (cfengine-mode-debug): New var.
15950 (cfengine3-mode): Change the modeline indicator to "CFE3".
15951 (cfengine3-font-lock-keywords): Improve defun highlighting.
15952 (cfengine2-actions): Rename from `cfengine-actions'.
15953 (cfengine2-font-lock-keywords): Rename from
15954 `cfengine-font-lock-keywords'.
15955 (cfengine2-imenu-expression): Rename from
15956 `cfengine-imenu-expression'.
15957 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
15958 (cfengine2-beginning-of-defun): Rename from
15959 `cfengine-beginning-of-defun'.
15960 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
15961 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
15962 (cfengine2-mode): Rename from `cfengine-mode'. Change the
15963 modeline indicator to "CFE2".
15964 (cfengine-mode): Defalias to `cfengine-auto-mode'.
15965 (cfengine-mode-abbrevs): Mark obsolete.
15966
15967 2011-12-21 Chong Yidong <cyd@gnu.org>
15968
15969 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
15970 filename argument.
15971
15972 2011-12-20 Martin Rudalics <rudalics@gmx.at>
15973
15974 * window.el (window-normalize-buffer-to-display): Remove.
15975 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
15976
15977 2011-12-19 Chong Yidong <cyd@gnu.org>
15978
15979 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
15980 Don't signal an error in a predicate function; return non-nil.
15981 (vc-dir-mark-file): Move the error here.
15982 (vc-dir-mark-unmark): If acting on the region, keep going if one
15983 of the entries cannot be marked/unmarked.
15984 (vc-dir-mark-all-files): If current entry is a directory, mark
15985 only child files, as documented.
15986
15987 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
15988
15989 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
15990 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
15991 addition.
15992
15993 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
15994
15995 * term/ns-win.el (ns-get-selection-internal)
15996 (ns-store-selection-internal): Declare.
15997 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
15998 Declare as obsolete.
15999 (ns-get-pasteboard, ns-paste-secondary):
16000 Use ns-get-selection-internal.
16001 (ns-set-pasteboard, ns-copy-including-secondary):
16002 Use ns-store-selection-internal.
16003
16004 2011-12-17 Chong Yidong <cyd@gnu.org>
16005
16006 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
16007 (vc-deduce-fileset): Doc fix.
16008
16009 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
16010
16011 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
16012
16013 2011-12-13 Sam Steingold <sds@gnu.org>
16014
16015 * man.el (Man-getpage-in-background): When running under a
16016 window-system, ignore $MANWIDTH and $COLUMNS.
16017
16018 2011-12-15 Kenichi Handa <handa@m17n.org>
16019
16020 * language/ethio-util.el: Change coding tag to utf-8-emacs.
16021 (setup-ethiopic-environment-internal): Comment out key-binding for
16022 ethio-toggle-punctuation.
16023
16024 2011-12-13 Alan Mackenzie <acm@muc.de>
16025
16026 Add the switch statement to AWK Mode.
16027
16028 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
16029 "default" to the keywords regexp.
16030
16031 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
16032 expression as the rest.
16033 (c-nonlabel-token-key): Allow string literals for AWK.
16034 Refactor for the other modes.
16035
16036 Large brace-block initialisation makes CC Mode slow: Fix.
16037 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
16038 routines. Limit backward searching in c-font-lock-enclosing.decl.
16039
16040 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
16041 pp-state and literal type in addition to the limits.
16042 (c-state-safe-place): New defun, extracted from c-state-literal-at.
16043 (c-state-literal-at): Use the above new defun.
16044 (c-slow-in-literal, c-fast-in-literal): Remove.
16045 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
16046
16047 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
16048 being in a literal. Add a limit for backward searching.
16049
16050 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
16051 c-slow-in-literal.
16052
16053 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
16054
16055 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
16056
16057 2011-12-13 Martin Rudalics <rudalics@gmx.at>
16058
16059 * window.el (delete-other-windows): Use correct frame in call to
16060 window-with-parameter.
16061
16062 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
16063
16064 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
16065 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
16066 (makefile-gmake-statements, makefile-makepp-statements):
16067 Use it and add new makepp keywords.
16068 (makefile-makepp-font-lock-keywords): Add new patterns.
16069 (makefile-match-function-end): Match new [...] and [[...]].
16070
16071 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
16072
16073 * ses.el (ses-call-printer-return, ses-cell-property-get)
16074 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
16075 (ses-create-cell-variable, ses-reset-header-string)
16076 (ses-cell-set-formula, ses-repair-cell-reference-all)
16077 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
16078 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
16079 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
16080 (ses-aset-with-undo, ses-load, ses-truncate-cell)
16081 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
16082 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
16083 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
16084 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
16085 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
16086 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
16087 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
16088 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
16089
16090 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
16091
16092 * ses.el: The overall change is to add cell renaming, that is
16093 setting fancy names for cell symbols other than name matching
16094 "\\`[A-Z]+[0-9]+\\'" regexp .
16095 (ses-create-cell-variable): New defun.
16096 (ses-relocate-formula): Relocate formulas only for cells the
16097 symbols of which are not renamed, i.e. symbols whose names do not
16098 match regexp "\\`[A-Z]+[0-9]+\\'".
16099 (ses-relocate-all): Relocate values only for cells the symbols of
16100 which are not renamed.
16101 (ses-load): Create cells variables as the (ses-cell ...) are read,
16102 in order to check row col consistency with cell symbol name only
16103 for cells that are not renamed.
16104 (ses-replace-name-in-formula): New defun.
16105 (ses-rename-cell): New defun.
16106
16107 2011-12-11 Chong Yidong <cyd@gnu.org>
16108
16109 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
16110 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
16111
16112 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
16113
16114 * window.el (other-window): Fix docstring.
16115
16116 2011-12-10 Eli Zaretskii <eliz@gnu.org>
16117
16118 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
16119 `from' or `to' address before taking its substring.
16120 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
16121 encoded name is chopped in the middle of the encoded string, and
16122 thus displayed encoded.
16123
16124 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
16125
16126 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
16127
16128 2011-12-10 Eli Zaretskii <eliz@gnu.org>
16129
16130 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
16131 to use texinfo-update-node and commands that call it if the
16132 Texinfo file uses @node lines without next/prev/up pointers.
16133 Correct outdated description about texinfo-master-menu.
16134 (texinfo-all-menus-update, texinfo-master-menu)
16135 (texinfo-update-node, texinfo-every-node-update)
16136 (texinfo-multiple-files-update): Doc fix. Warn against updating
16137 all the @node lines.
16138 (texinfo-master-menu): Only call texinfo-update-node if the prefix
16139 argument is numeric. Explain better in the doc string what the
16140 function really does.
16141 (texinfo-insert-master-menu-list): Improve the error message
16142 displayed if there's no menu in the Top node.
16143 (Bug#2975) See also this thread:
16144 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
16145
16146 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
16147
16148 * speedbar.el (speedbar-supported-extension-expressions):
16149 Add .adb and .ads, commonly used for Ada source code (bug#10256).
16150
16151 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
16152
16153 * printing.el (pr-mode-alist):
16154 * simple.el (filter-buffer-substring-functions)
16155 (completion-list-insert-choice-function):
16156 * window.el (window-with-parameter, window-atom-root)
16157 (window-sides-slots, window-size-fixed, window-min-delta)
16158 (window-max-delta, window--resize-mini-window)
16159 (window--resize-child-windows-normal, window-tree)
16160 (delete-other-windows, quit-window, split-window)
16161 (display-buffer-record-window, special-display-buffer-names)
16162 (special-display-regexps, special-display-popup-frame)
16163 (same-window-p, split-window-sensibly)
16164 (display-buffer-overriding-action, display-buffer-alist)
16165 (display-buffer-base-action, display-buffer, switch-to-buffer)
16166 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
16167 (fit-window-to-buffer, recenter-positions)
16168 (mouse-autoselect-window-state, mouse-autoselect-window-select):
16169 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
16170 and remove unneeded backslashes in docstrings.
16171
16172 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
16173
16174 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
16175
16176 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
16177 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
16178 end in ".mk".
16179 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
16180 when reading the makefile (bug#10116).
16181
16182 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
16183
16184 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
16185 (bug#10116).
16186
16187 2011-12-06 Glenn Morris <rgm@gnu.org>
16188
16189 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
16190
16191 2011-12-06 Chong Yidong <cyd@gnu.org>
16192
16193 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
16194
16195 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
16196
16197 * textmodes/table.el (table-shorten-cell): Fix typo.
16198
16199 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
16200
16201 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
16202
16203 2011-12-05 Eli Zaretskii <eliz@gnu.org>
16204
16205 * descr-text.el (describe-char): Fix display of strong
16206 right-to-left characters and directional embeddings and overrides.
16207
16208 * simple.el (what-cursor-position): Fix display of codepoints of
16209 strong right-to-left characters.
16210
16211 2011-12-05 Chong Yidong <cyd@gnu.org>
16212
16213 * faces.el (read-color): Doc fix.
16214
16215 2011-12-05 Glenn Morris <rgm@gnu.org>
16216
16217 * align.el (align--set-marker): Add doc-string.
16218 Don't try to move something that is not a marker. (Bug#10216)
16219
16220 2011-12-04 Glenn Morris <rgm@gnu.org>
16221
16222 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
16223 overly zealous deletion of trailing whitespace.
16224
16225 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
16226
16227 * server.el (server-delete-client): On Windows, do not try to delete
16228 the only terminal.
16229 (server-process-filter): On Windows, treat requests for a tty frame as
16230 if they were for a GUI frame if the running server is in GUI mode.
16231
16232 2011-12-03 Glenn Morris <rgm@gnu.org>
16233
16234 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
16235
16236 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
16237
16238 * electric.el: Streamline electric-indent's hook.
16239 (electric-indent-chars): Revert to simple list.
16240 (electric-indent-functions): New var.
16241 (electric-indent-post-self-insert-function): Use it.
16242
16243 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
16244 there's no inferior buffer (bug#10196).
16245 (prolog-consult-compile): Don't use toggle-read-only.
16246
16247 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
16248
16249 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
16250 interrupt. (Bug#10187)
16251
16252 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
16253
16254 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
16255 (bug#9160).
16256
16257 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
16258 (bug#10191).
16259
16260 2011-12-02 Juri Linkov <juri@jurta.org>
16261
16262 * info.el (Info-search): Display "end of manual" when Isearch
16263 reaches the end of single-file Info manual. (Bug#9918)
16264
16265 2011-12-02 Eli Zaretskii <eliz@gnu.org>
16266
16267 * isearch.el (isearch-message-prefix): Run the input method part
16268 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
16269
16270 2011-12-02 Juri Linkov <juri@jurta.org>
16271
16272 * isearch.el (isearch-occur): Use `word-search-regexp' for
16273 `isearch-word'.
16274 (isearch-search-and-update): Add condition for `isearch-word' and
16275 call `word-search-regexp'. (Bug#10145)
16276
16277 2011-12-01 Glenn Morris <rgm@gnu.org>
16278
16279 * eshell/em-hist.el (eshell-hist-initialize):
16280 Handle eshell-history-size nil and HISTSIZE set or unset.
16281 (eshell-history-file-name, eshell-history-size): Fix custom type.
16282
16283 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
16284
16285 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
16286
16287 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
16288
16289 * progmodes/verilog-mode.el (verilog-pretty-expr):
16290 Rework verilog-pretty-expr to handle new assignment operators in system
16291 verilog, such as += *= and the like.
16292 (verilog-assignment-operator-re): Regular expression to find the
16293 assigment operator in a verilog assignment.
16294 (verilog-assignment-operation-re): Regular expression to find an
16295 assignment statement for pretty-expr.
16296 (verilog-in-attribute-p): Query returns true if point is in an
16297 attribute context; used to skip these for expression line up from
16298 pretty-expr.
16299 (verilog-in-parameter-p): Query returns true if point is in an
16300 parameter definition context; used to skip these for expression
16301 line up from pretty-expr.
16302 (verilog-in-parenthesis-p): Query returns true if point is in a
16303 parenthetical expression, specifically ( ) but not [ ] or { };
16304 used by pretty-expr.
16305 (verilog-just-one-space): If there is no space, don't add one.
16306 (verilog-get-lineup-indent-2): Specifically skip just attribute
16307 contexts for expression lineup, rather than skipping all
16308 parenthetical expressions.
16309 (verilog-calculate-indent): Fix comment, and fix indent.
16310 (verilog-do-indent): Indent declarations in lists (suggested by
16311 Joachim Lechner).
16312 (verilog-mode-abbrev-table): Populate abbrev mode with the various
16313 skeleton items.
16314 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
16315 by Alain Mellan).
16316
16317 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
16318
16319 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
16320 parameters with embedded comments. Reported by Ray Stevens.
16321 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
16322 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
16323 Reported by Tim Holt.
16324 (verilog-auto): Fix AUTOing a upper module then AUTOing module
16325 instantiated by upper module causing wrong expansion until AUTOed a
16326 second time. Reported by K C Buckenmaier.
16327 (verilog-diff-auto): Fix showing .* as a difference when
16328 `verilog-auto-star-save' off. Reported by Dan Dever.
16329 (verilog-auto-reset, verilog-read-always-signals)
16330 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
16331 temporary signals in reset list if
16332 verilog-auto-reset-blocking-in-non is nil, and match assignment
16333 style to each signal's assignment type, bug381.
16334 Reported by Thomas Esposito.
16335 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
16336 (verilog-uvm-statement-re): Support UVM indentation and
16337 highlighting, with old OVM keywords only.
16338 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
16339 Support AUTOTIEOFF creating non-wire data types.
16340 Suggested by Jonathan Greenlaw.
16341 (verilog-auto-insert-lisp, verilog-delete-to-paren)
16342 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
16343 (verilog-inject-sense, verilog-read-inst-pins)
16344 (verilog-read-sub-decls, verilog-read-sub-decls-line):
16345 Fix mismatching parenthesis inside commented out code when deleting
16346 AUTOINST, bug383. Reported by Jonathan Greenlaw.
16347 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
16348 non-numeric vector width. Reported by Alex Reed.
16349 (verilog-auto-ascii-enum): Add "onehot" option to work around not
16350 detecting signals with parameter widths. Reported by Alex Reed.
16351 (verilog-auto-delete-trailing-whitespace):
16352 With `verilog-auto-delete-trailing-whitespace' remove trailing
16353 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
16354 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
16355 Fix verilog-scan-cache corruption when running user AUTO expansion
16356 hooks that call indentation routines.
16357 (verilog-simplify-range-expression): Fix typo ignoring lower case
16358 identifiers.
16359 (verilog-delete-auto): Fix delete-autos to also remove user created
16360 automatics, as long as they start with AUTO.
16361 (verilog-batch-diff-auto, verilog-diff-auto)
16362 (verilog-diff-function): Add `verilog-diff-auto' and bind to
16363 "C-c?" to report differences in AUTO expansion, ignoring spaces.
16364 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
16365 (verilog-in-paren-quick, verilog-re-search-backward-quick)
16366 (verilog-re-search-forward-quick, verilog-syntax-ppss):
16367 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
16368 is disabled and its cache will get corrupt, causing AUTOS not to
16369 expand. Instead use only -quick functions.
16370 (verilog-scan-region): Fix scanning over escaped quotes.
16371 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
16372 (verilog-re-search-backward-quick)
16373 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
16374 related functions now ignore strings, to fix misparsing of strings
16375 with magic comments embedded in them.
16376 (verilog-read-auto-template):
16377 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
16378 Reported by Brad Dobbie.
16379 (verilog-read-auto-template):
16380 Fix 'verilog-auto-inst-template-numbers' with comments.
16381 Reported by Brad Dobbie.
16382 (verilog-auto-inst, verilog-auto-inst-param)
16383 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
16384 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
16385 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
16386 debugging templates without merge conflicts, bug357.
16387 Reported by Brad Dobbie.
16388 (verilog-read-auto-template):
16389 Fix verilog-auto-inst-template-numbers with multiple templates.
16390 Reported by Brad Dobbie.
16391 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
16392 abbrevs so user won't be asked to save.
16393 (verilog-read-auto-lisp-present): Fix to start at beginning of
16394 buffer in case called outside of verilog-auto.
16395 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
16396 to "X-2". Reported by Matthew Myers.
16397 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
16398 all inputs from module templates. Reported by Leith Johnson.
16399 (verilog-module-inside-filename-p): Fix locating programs as with
16400 modules.
16401 (verilog-auto-inst-port): Fix vl-width expressions when using
16402 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
16403 (verilog-decls-get-regs, verilog-decls-get-signals,
16404 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
16405 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
16406 verilog-read-decls): Combine reg and wire structures into one var
16407 structure to represent SystemVerilog concepts.
16408 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
16409 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
16410 (verilog-auto-wire-type, verilog-insert-definition):
16411 Add verilog-auto-wire-type and AUTOLOGIC to support using
16412 SystemVerilog "logic" keyword instead of "wire"/"reg".
16413 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
16414 to declares outputs that also have assignments (presumably in an
16415 ifdef or generate if so there's not a driver conflict).
16416 Reported by Matthew Myers.
16417 (verilog-auto-declare-nettype, verilog-insert-definition):
16418 Add verilog-auto-declare-nettype to fix declarations using
16419 `default_nettype none. Reported by Julian Gorfajn.
16420 (verilog-read-always-signals-recurse, verilog-read-decls)
16421 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
16422 malformed end statement, bug325. Reported by Joshua Wise and
16423 Andrew Drake.
16424 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
16425 (verilog-inst-comment-re): Fix not deleting Interfaced comment
16426 when expanding .* in interfaces, bug320.
16427 Reported by Pierre-David Pfister.
16428 (verilog-read-module-name): Fix import statements between module
16429 name and open parenthesis, bug317.
16430 Reported by Pierre-David Pfister.
16431 (verilog-simplify-range-expression): Fix simplification of
16432 multiplications inside AUTOWIRE connections, bug303.
16433 (verilog-auto-inst-port): Support parameter expansion in
16434 multidimensional arrays.
16435 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
16436 after "assert property". Reported by Julian Gorfajn.
16437 (verilog-simplify-range-expression): Fix "couldn't merge" errors
16438 with multiplication, bug303.
16439 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
16440 Reported by Jan Frode Lonnum.
16441
16442 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
16443
16444 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
16445 (hfy-shell-file-name, hfy-shell):
16446 * international/fontset.el (x-decompose-font-name): Fix typos.
16447
16448 2011-11-29 Ken Brown <kbrown@cornell.edu>
16449
16450 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
16451 (gdb-version): Remove defvar.
16452 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
16453 (gdb-gud-context-command, gdb-non-stop-handler)
16454 (gdb-current-context-command, gdb-stopped): Use it.
16455 (gdb-init-1): Enable pretty printing here.
16456 (gdb-non-stop-handler): Don't enable pretty-printing here.
16457 Check to see if the target supports non-stop mode; if not, turn off
16458 non-stop mode. Use the following.
16459 (gdb-check-target-async): New defun.
16460 (gud-watch, gdb-stopped): Fix whitespace.
16461 (gdb-get-source-file): Don't try to display the source file if
16462 `gdb-main-file' is nil.
16463
16464 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
16465
16466 * align.el: Try to generate fewer markers (bug#10047).
16467 (align--set-marker): New macro.
16468 (align-region): Use it.
16469
16470 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
16471
16472 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
16473
16474 2011-11-29 Chong Yidong <cyd@gnu.org>
16475
16476 * indent.el (indent-for-tab-command, indent-according-to-mode):
16477 Doc fix.
16478 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
16479
16480 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
16481
16482 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
16483 aware of remote file names. (Bug#10124)
16484
16485 2011-11-29 Chong Yidong <cyd@gnu.org>
16486
16487 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
16488
16489 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
16490
16491 * files.el (find-file): Don't use force-same-window (bug#10144).
16492 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
16493 use pop-to-buffer if the selected window can't be used.
16494 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
16495
16496 2011-11-28 Eli Zaretskii <eliz@gnu.org>
16497
16498 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
16499 special-mode-map.
16500
16501 2011-11-28 Chong Yidong <cyd@gnu.org>
16502
16503 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
16504
16505 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
16506
16507 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
16508 gdb-get-source-file-list on gdb-create-source-file-list.
16509
16510 2011-11-26 Eli Zaretskii <eliz@gnu.org>
16511
16512 * whitespace.el (whitespace-newline): Use a different foreground
16513 color for 16-color light-background displays.
16514
16515 2011-11-24 Chong Yidong <cyd@gnu.org>
16516
16517 * window.el (display-buffer--special-action): Doc fix.
16518
16519 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
16520
16521 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
16522 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
16523 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
16524 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
16525 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
16526 (avl-tree-stack-first):
16527 * emacs-lisp/cconv.el (cconv--analyse-use):
16528 * net/gnutls.el (gnutls-negotiate): Fix typos.
16529
16530 2011-11-24 Glenn Morris <rgm@gnu.org>
16531
16532 * lpr.el (lpr-windows-system, lpr-lp-system):
16533 * mail/binhex.el (binhex-begin-line):
16534 * progmodes/grep.el (grep-history, grep-find-history):
16535 * textmodes/flyspell.el:
16536 * vc/pcvs-defs.el (cvs-global-menu):
16537 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
16538 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
16539 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
16540
16541 * net/tls.el: Fix case of "GnuTLS".
16542
16543 * paths.el (rmail-file-name): Format doc-string for make-docfile.
16544
16545 * version.el (emacs-build-system): Give it a doc-string.
16546
16547 2011-11-24 Juri Linkov <juri@jurta.org>
16548
16549 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
16550
16551 2011-11-24 Glenn Morris <rgm@gnu.org>
16552
16553 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
16554 if called on a non-mime message just toggle the headers. (Bug#8006)
16555
16556 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
16557
16558 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
16559 (allout-lead-with-comment-string, allout-structure-deleted-hook)
16560 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
16561 (allout-rebullet-heading, allout-open-sibtopic)
16562 (allout-toggle-current-subtree-encryption)
16563 (allout-toggle-subtree-encryption, allout-encrypt-string)
16564 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
16565 (allout-distinctive-bullets-string, allout-auto-activation):
16566 * window.el (window-normalize-buffer-to-display):
16567 * progmodes/verilog-mode.el (verilog-batch-indent):
16568 * textmodes/bibtex.el (bibtex-field-braces-opt)
16569 (bibtex-field-strings-opt):
16570 * vc/cvs-status.el (cvs-tree-merge):
16571 Fix typos.
16572
16573 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
16574
16575 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
16576 `non-essential' to t, in order to avoid remote connections.
16577
16578 2011-11-23 Eli Zaretskii <eliz@gnu.org>
16579
16580 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
16581 On MS-DOS and MS-Windows, compare with loaddefs.el
16582 case-insensitively.
16583
16584 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
16585
16586 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
16587
16588 2011-11-23 Glenn Morris <rgm@gnu.org>
16589
16590 * paths.el (rmail-file-name): Reformat the doc-string so that it
16591 is picked up.
16592
16593 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
16594 (rmail-auto-file): Ignore case in the "special" field names,
16595 as mail-fetch-field does for all others.
16596
16597 * mail/rmail.el (rmail-forward):
16598 * mail/rmailkwd.el (rmail-set-label):
16599 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
16600 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
16601
16602 * mail/rmail.el (rmail-current-message): Doc fix.
16603
16604 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
16605
16606 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
16607
16608 * server.el (server-eval-and-print): Allow C-g (bug#6585).
16609
16610 2011-11-22 Glenn Morris <rgm@gnu.org>
16611
16612 * mail/rmailmm.el (test-rmail-mime-handler)
16613 (test-rmail-mime-bulk-handler)
16614 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
16615
16616 2011-11-21 Juri Linkov <juri@jurta.org>
16617
16618 * calc/calc.el (calc-read-key-sequence):
16619 Let-bind `input-method-function' to nil. (Bug#10018)
16620
16621 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
16622
16623 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
16624 Tell the caller that the next line needs recomputation, even
16625 though it doesn't start a sexp (bug#10094).
16626
16627 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
16628
16629 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
16630
16631 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
16632
16633 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
16634 Use force-same-window.
16635
16636 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
16637
16638 * descr-text.el (describe-char-unicode-data):
16639 * json.el (json-string-escape):
16640 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
16641 (Footnote-unicode, Footnote-style-p):
16642 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
16643
16644 2011-11-20 Chong Yidong <cyd@gnu.org>
16645
16646 * window.el (replace-buffer-in-windows): Restore interactive spec.
16647
16648 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
16649
16650 * electric.el (electric-indent-mode): Fix last change (too optimistic).
16651
16652 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
16653 (byte-compile-global-not-obsolete-vars): New var.
16654 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
16655 Use it.
16656 (byte-compile-warn-obsolete): Align text with the one in *Help*.
16657
16658 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
16659
16660 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
16661 * progmodes/pascal.el (electric-pascal-equal):
16662 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
16663 * xml.el (xml-substitute-special): Fix typos.
16664
16665 2011-11-20 Glenn Morris <rgm@gnu.org>
16666
16667 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
16668 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
16669 Doc fixes.
16670 (rmail-decode-mime-charset): Mark as obsolete.
16671
16672 * mail/rmailsum.el (rmail-message-regexp-p-1):
16673 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
16674 Before using mime functions, check they are set. (Bug#10077)
16675
16676 2011-11-19 Juri Linkov <juri@jurta.org>
16677
16678 * info.el (Info-finder-find-node): Use `package--builtins' instead
16679 of `package-alist'. Use node names formed by the pattern "Keyword "
16680 and the keyword name.
16681
16682 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
16683
16684 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
16685
16686 2011-11-19 Juri Linkov <juri@jurta.org>
16687
16688 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
16689 that calls `revert-buffer' on all Info buffers. (Bug#9915)
16690 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
16691 `old-history', `old-history-forward'. Add let-binding
16692 `window-selected'. Remove calls to `kill-buffer',
16693 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
16694 before calling `Info-find-node', so `Info-find-node-2' will reread
16695 the Info file. Restore window positions only when `window-selected'
16696 is non-nil.
16697
16698 2011-11-19 Juri Linkov <juri@jurta.org>
16699
16700 * isearch.el (isearch-lazy-highlight-new-loop):
16701 Remove condition `(not isearch-error)'. (Bug#9918)
16702
16703 * misearch.el (multi-isearch-search-fun): Add condition
16704 `(not bound)' to ignore lazy-highlighting search.
16705 Add the search-failed message "end of multi" when the end of
16706 multi-sequence is reached. Uncapitalize the search-failed
16707 message "Repeat for next buffer".
16708
16709 * info.el (Info-search): Add the search-failed message
16710 "end of the manual" when the end of the manual is reached
16711 in Isearch mode.
16712
16713 2011-11-19 Juri Linkov <juri@jurta.org>
16714
16715 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
16716 Use non-destructive `remove' instead of `delete' because
16717 `Info-history-list' stored to `Info-isearch-initial-history-list' in
16718 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
16719
16720 2011-11-19 Juri Linkov <juri@jurta.org>
16721
16722 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
16723 to nil instead of binding `search-ring' and `regexp-search-ring'.
16724 (Bug#9185)
16725
16726 2011-11-19 Eli Zaretskii <eliz@gnu.org>
16727
16728 * simple.el (line-move): Force movement by logical lines for any
16729 hscrolled window, not only when auto-hscroll-mode is on.
16730 (line-move-visual): Update doc string to that effect. (Bug#10076)
16731
16732 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
16733
16734 * language/european.el (macintosh): Define as alias for mac-roman.
16735
16736 2011-11-19 Eli Zaretskii <eliz@gnu.org>
16737
16738 * mail/rmailmm.el (rmail-mime-display-header)
16739 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
16740 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
16741 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
16742 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
16743 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
16744 of a raw aref.
16745 (rmail-mime-entity-segment): To get past the tagline, move forward
16746 2 more lines, to account for the 2 empty lines that precede and
16747 follow the line with the buttons.
16748 (rmail-mime-update-tagline): Move one more line, to get past the
16749 empty line that follows the buttons in the tagline. (Bug#9520)
16750
16751 2011-11-19 Martin Rudalics <rudalics@gmx.at>
16752
16753 * window.el (window-max-delta-1, window-min-delta-1)
16754 (window-min-size-1, window-state-get-1, window-state-put-1)
16755 (window-state-put-2): Use "window--" prefix.
16756
16757 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
16758
16759 * emacs-lisp/smie.el: Improve warnings and conflict detection.
16760 (smie-warning-count): New var.
16761 (smie-set-prec2tab): Use it.
16762 (smie-bnf->prec2): Improve warnings. Add docstring.
16763 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
16764 (smie-bnf--set-class): New function.
16765 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
16766 corner case.
16767
16768 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
16769 (compilation-error-properties, compilation-move-to-column):
16770 Handle compilation-first-column while in the target buffer.
16771
16772 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
16773 Don't hardcode point-min==1.
16774
16775 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
16776 (eshell-rewrite-for-command): Remove workaround.
16777 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
16778 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
16779 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
16780
16781 * files-x.el (modify-file-local-variable): Obey commenting conventions.
16782
16783 2011-11-17 Glenn Morris <rgm@gnu.org>
16784
16785 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
16786 Ignore buffer-local generated-autoload-file if it is the same
16787 as the global value. (Bug#10049)
16788
16789 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
16790
16791 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
16792 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
16793 (reftex-toc-previous-heading, reftex-toc-max-level)
16794 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
16795 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
16796 (reftex-toc-do-promote, reftex-toc-promote-prepare)
16797 (reftex-toc-promote-action, reftex-toc-extract-section-number)
16798 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
16799 (reftex-toc-rename-label, reftex-toc-visit-location)
16800 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
16801 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
16802 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
16803 leaving "*toc*" only for references to the buffer.
16804
16805 2011-11-17 Martin Rudalics <rudalics@gmx.at>
16806
16807 * window.el (window-resize, delete-window, split-window):
16808 Replace window-splits by window-combination-resize.
16809 * cus-start.el (window-splits): Replace by window-combination-resize.
16810
16811 2011-11-17 Glenn Morris <rgm@gnu.org>
16812
16813 * progmodes/sh-script.el (sh-font-lock-keywords-var):
16814 Make bash entry derive from sh entry, not shell entry.
16815
16816 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
16817
16818 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
16819 local file name.
16820
16821 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
16822
16823 * menu-bar.el (menu-bar-file-menu):
16824 * printing.el (pr-ps-utility):
16825 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
16826 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
16827 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
16828 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
16829 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
16830 (icalendar--convert-cyclic-to-ical)
16831 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
16832 (icalendar--convert-ical-to-diary)
16833 (icalendar--convert-recurring-to-diary)
16834 (icalendar--convert-non-recurring-all-day-to-diary)
16835 (icalendar-import-format-sample):
16836 * progmodes/idlw-shell.el (idlwave-shell-mode):
16837 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
16838 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
16839 (vhdl-ps-print-init): Fix typos.
16840
16841 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
16842
16843 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
16844 FSF and collapse date sequence, obscure author/maintainer email address
16845 better, remove extra version line, track relocation of author's webpage.
16846
16847 * progmodes/python.el (python-pdbtrack-input-prompt)
16848 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
16849 regular python pdb prompts. Adjustments shamelessly taken exactly as
16850 suggested in EmacsWiki page (tiny change):
16851 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
16852
16853 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
16854
16855 * expand.el (expand-pos, expand-index, expand-point):
16856 Remove redundant info from docstring.
16857 (expand-add-abbrevs): Doc fix.
16858 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
16859 (expand-sample-perl-mode-expand-list): Fix typos.
16860
16861 * net/dbus.el (dbus-event-member-name):
16862 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
16863 * term/pc-win.el (msdos-create-frame-with-faces):
16864 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
16865
16866 2011-11-16 Martin Rudalics <rudalics@gmx.at>
16867
16868 * window.el (split-window, window-state-get-1)
16869 (window-state-put-1, window-state-put-2): Rename occurrences of
16870 window-nest to window-combination-limit.
16871 * cus-start.el (window-nest): Rename to window-combination-limit.
16872
16873 2011-11-16 Chong Yidong <cyd@gnu.org>
16874
16875 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
16876 regexp (Bug#10033).
16877
16878 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
16879
16880 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
16881 `completing-read' will remove *Completions* and will preserve
16882 current-buffer for us.
16883 (tmm-add-prompt): Users of *Completions* will always (re)set its
16884 major mode.
16885 (tmm-old-comp-map): Remove.
16886
16887 2011-11-16 Glenn Morris <rgm@gnu.org>
16888
16889 * mail/rmailedit.el: Require rmailmm when compiling.
16890 (rmail-old-mime-state): New declaration.
16891 (rmail-edit-current-message): If editing a mime message,
16892 edit the "raw" message from the mbox buffer.
16893 (rmail-cease-edit): Handle mime messages. (Bug#9840)
16894
16895 2011-11-15 Glenn Morris <rgm@gnu.org>
16896
16897 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
16898 which wasn't being used. Add optional arg to force given state.
16899 (rmail-mime): Add optional arg to force given state.
16900
16901 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
16902
16903 * allout.el (allout-encryption-plaintext-sanitization-regexps):
16904 * frame.el (display-mm-dimensions-alist):
16905 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
16906 (outline-move-subtree-down):
16907 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
16908 (newsticker--treeview-do-get-node):
16909 * net/quickurl.el (quickurl-list-buffer-name):
16910 * progmodes/dcl-mode.el (dcl-mode):
16911 * progmodes/gdb-mi.el (gdb-mapcar*):
16912 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
16913
16914 2011-11-15 Glenn Morris <rgm@gnu.org>
16915
16916 * mail/rmail.el (rmail-file-coding-system): It's only ever used
16917 in a boolean sense, so just make it a boolean, and fix the doc.
16918 (rmail-show-mime-function, rmail-mime-feature)
16919 (rmail-require-mime-maybe): Doc fixes.
16920 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
16921
16922 * mail/rmailmm.el (rmail-show-mime): Doc fix.
16923
16924 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
16925
16926 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
16927 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
16928 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
16929 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
16930
16931 2011-11-15 Glenn Morris <rgm@gnu.org>
16932
16933 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
16934 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
16935 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
16936 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
16937 (rmail-mime, rmail-show-mime): Doc fixes.
16938
16939 * term/ns-win.el (mode-line-frame-identification):
16940 Leave it alone. (Bug#10051)
16941
16942 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
16943
16944 * mail/rmailout.el (rmail-output-to-rmail-buffer):
16945 Handle empty buffers. (Bug#9978)
16946
16947 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
16948
16949 * international/mule.el (define-charset):
16950 * mail/rmailmm.el (rmail-mime-find-header-encoding):
16951 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
16952 * progmodes/verilog-mode.el (verilog-backward-token):
16953 * textmodes/ispell.el (lookup-words):
16954 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
16955
16956 2011-11-14 Glenn Morris <rgm@gnu.org>
16957
16958 * progmodes/executable.el
16959 (executable-make-buffer-file-executable-if-script-p):
16960 Handle file-modes returning nil.
16961
16962 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
16963 message - not necessary, and causes problems. (Bug#9831)
16964
16965 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
16966
16967 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
16968
16969 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
16970 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
16971 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
16972
16973 2011-11-12 Martin Rudalics <rudalics@gmx.at>
16974
16975 * window.el (window-resize, delete-window): Use window-splits
16976 variable instead of function.
16977 (window-state-get-1, window-state-put-2, window-state-put):
16978 Don't deal with windows' splits status.
16979
16980 2011-11-12 Glenn Morris <rgm@gnu.org>
16981
16982 * apropos.el (apropos-do-all, apropos-library, apropos-value)
16983 (apropos-documentation): Doc fixes.
16984
16985 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
16986
16987 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
16988 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
16989
16990 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
16991
16992 * electric.el (electric-indent-post-self-insert-function): Make it
16993 possible for a char to only indent in some circumstances.
16994 (electric-indent-mode): Simplify.
16995
16996 2011-11-11 Martin Rudalics <rudalics@gmx.at>
16997
16998 * window.el (windows-with-parameter): Remove unused function.
16999 (windows-at-side): Rename to window-at-side-list.
17000 (window-check, window-atom-check, window-atom-check-1)
17001 (window-side-check, window-size-ignore, window-size-fixed-1)
17002 (window-in-direction-2): Prefix with "window--".
17003 (window-tree-1): Rename to window--subtree, fix doc-string.
17004
17005 2011-11-11 Glenn Morris <rgm@gnu.org>
17006
17007 * subr.el (eval-after-load): If FILE is already loaded,
17008 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
17009
17010 2011-11-10 Glenn Morris <rgm@gnu.org>
17011
17012 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
17013 Call svn via vc-svn-command rather than vc-do-command.
17014 (vc-svn-command): Add --non-interactive. (Bug#9993)
17015 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
17016
17017 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
17018 Add toggle-read-only. (Bug#7292)
17019 * files.el (toggle-read-only): Mention that it should only
17020 be used interactively. (Bug#10006)
17021
17022 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
17023
17024 * progmodes/compile.el (compilation-error-regexp-alist-alist):
17025 Adjust regexp for OCaml warnings.
17026
17027 * electric.el (electric-pair-post-self-insert-function): Let user
17028 turn it off buffer-locally (bug#9932).
17029
17030 * progmodes/python.el (python-beginning-of-statement):
17031 Rewrite (bug#2703).
17032
17033 * progmodes/compile.el: Better handle TABs (bug#9749).
17034 (compilation-internal-error-properties)
17035 (compilation-next-error-function): Obey the target buffer's
17036 compilation-error-screen-columns.
17037
17038 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
17039
17040 * progmodes/meta-mode.el: Remove obsolete comments.
17041 (meta-right-comment-regexp, meta-ignore-comment-regexp):
17042 Fix typos in docstrings.
17043
17044 2011-11-09 Martin Rudalics <rudalics@gmx.at>
17045
17046 * window.el (window-size-fixed-p): Rewrite doc-string.
17047 (window-resizable-p): Rename to window--resizable-p. Update callers.
17048 (window--resizable): New function. Make all callers of
17049 window-resizable call window--resizable instead.
17050 (window-resizable): Rewrite in terms of window--resizable.
17051
17052 2011-11-08 Glenn Morris <rgm@gnu.org>
17053
17054 * progmodes/delphi.el (delphi-mode-syntax-table):
17055 Let define-derived-mode define a proper syntax table. (Bug#9994)
17056
17057 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
17058
17059 * window.el: Stay away from defsubst.
17060 (window-list-no-nils): Remove.
17061 (window-state-get-1, window-state-get): Use backquote instead.
17062
17063 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17064
17065 * emacs-lisp/find-func.el (find-function-read):
17066 Fix incorrect use of default argument in `completing-read'.
17067
17068 2011-11-08 Martin Rudalics <rudalics@gmx.at>
17069
17070 * window.el (display-buffer-function, special-display-function):
17071 Mention display-buffer-record-window but do not mention
17072 help-setup parameter in doc-strings.
17073 (window-min-delta): Fix doc-string typo.
17074
17075 2011-11-08 Chong Yidong <cyd@gnu.org>
17076
17077 * window.el (window-total-height, window-total-width): Doc fix.
17078 (window-body-size): Move from C.
17079 (window-body-height, window-body-width): Move to C.
17080
17081 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
17082
17083 * window.el: Make special-display like display-buffer-alist (bug#9532).
17084 (display-buffer--special-action): New function, morphed
17085 from display-buffer--special.
17086 (display-buffer): Use it to handle special-display-buffers at higher
17087 priority (just after display-buffer-alist).
17088 (display-buffer-fallback-action, display-buffer--other-frame-action)
17089 (pop-to-buffer-same-window): Remove display-buffer--special.
17090
17091 2011-11-07 Glenn Morris <rgm@gnu.org>
17092
17093 * calendar/cal-menu.el (cal-menu-set-date-title):
17094 Do nothing if not in a calendar. (Bug#9976)
17095
17096 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
17097
17098 * files.el (find-file): Always use selected-window.
17099
17100 2011-11-07 Martin Rudalics <rudalics@gmx.at>
17101
17102 * window.el (window-combinations): Make WINDOW argument
17103 mandatory. Rewrite doc-string.
17104 (walk-window-subtree, window-atom-check, window-min-delta)
17105 (window-max-delta, window--resize-this-window)
17106 (window--resize-root-window-vertically, window-tree)
17107 (balance-windows, window-state-put): Rewrite doc-strings as to
17108 not mention the term "subwindow".
17109 (window--resize-subwindows-skip-p): Rename to
17110 window--resize-child-windows-skip-p.
17111 (window--resize-subwindows-normal): Rename to
17112 window--resize-child-windows-normal.
17113 (window--resize-subwindows): Rename to
17114 window--resize-child-windows.
17115 (window-or-subwindow-p): Rename to window--in-subtree-p.
17116
17117 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
17118
17119 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
17120 Ensure that mbox format messages end in two newlines (Bug#9974).
17121
17122 2011-11-06 Chong Yidong <cyd@gnu.org>
17123
17124 * window.el (window-combination-p): Function deleted; its
17125 side-effect is not used in any existing code.
17126 (window-combinations, window-combined-p): Call window-*-child
17127 directly.
17128
17129 2011-11-05 Chong Yidong <cyd@gnu.org>
17130
17131 * window.el (window-valid-p): Rename from window-any-p.
17132 (window-size-ignore, window-state-get): Callers changed.
17133 (window-normalize-window): Rename from window-normalize-any-window.
17134 New arg LIVE-ONLY, replacing window-normalize-live-window.
17135 (window-normalize-live-window): Delete.
17136 (window-combination-p, window-combined-p, window-combinations)
17137 (walk-window-subtree, window-atom-root, window-min-size)
17138 (window-sizable, window-sizable-p, window-size-fixed-p)
17139 (window-min-delta, window-max-delta, window-resizable)
17140 (window-resizable-p, window-full-height-p, window-full-width-p)
17141 (window-current-scroll-bars, window-point-1, set-window-point-1)
17142 (window-at-side-p, window-in-direction, window-resize)
17143 (adjust-window-trailing-edge, maximize-window, minimize-window)
17144 (window-deletable-p, delete-window, delete-other-windows)
17145 (record-window-buffer, unrecord-window-buffer)
17146 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
17147 (quit-window, split-window, window-state-put)
17148 (set-window-text-height, fit-window-to-buffer)
17149 (shrink-window-if-larger-than-buffer): Callers changed.
17150
17151 2011-11-04 Eli Zaretskii <eliz@gnu.org>
17152
17153 * mail/rmail.el (rmail-simplified-subject): Decode subject with
17154 rfc2047-decode-string.
17155 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
17156 warnings.
17157
17158 * window.el (window-body-height, window-body-width): Mention in
17159 the doc string that the return values are in frame's canonical
17160 units. (Bug#9949)
17161
17162 2011-11-03 Alan Mackenzie <acm@muc.de>
17163
17164 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
17165 change in cc-engine.el.
17166
17167 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
17168
17169 * window.el (switch-to-buffer): Use `force-same-window' interactively.
17170
17171 2011-11-02 Martin Rudalics <rudalics@gmx.at>
17172
17173 * window.el (quit-window): Call unrecord-window-buffer after
17174 showing another buffer in the window. (Bug#9937)
17175 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
17176
17177 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
17178
17179 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
17180 Accept status with more than 9 shelves. (Bug#9935)
17181 Reported by Colin D Bennett <colin@gibibit.com>.
17182
17183 2011-11-01 Martin Rudalics <rudalics@gmx.at>
17184
17185 * help.el (with-help-window): Don't reference
17186 temp-buffer-show-specifiers in doc-string.
17187
17188 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
17189
17190 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
17191 menu-item.
17192
17193 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17194
17195 * whitespace.el: New version 13.2.2.
17196 (whitespace-newline-mode): Disable properly. Reported by Sarah
17197 <EmacsWiki>.
17198
17199 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
17200
17201 * net/newst-treeview.el: Remove "Time-stamp".
17202 (newsticker--group-manage-orphan-feeds): Do not call
17203 newsticker--treeview-tree-update.
17204 (newsticker-treeview-update, newsticker-treeview):
17205 Call newsticker--treeview-tree-update if necessary.
17206
17207 2011-10-30 Martin Rudalics <rudalics@gmx.at>
17208
17209 * window.el (window-iso-combination-p, window-iso-combined-p)
17210 (window-iso-combinations): Remove "iso-" infix.
17211 Suggested by Chong Yidong.
17212 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
17213 (window-max-delta-1, window-resize, window--resize-siblings)
17214 (window--resize-this-window, adjust-window-trailing-edge)
17215 (split-window, balance-windows-1)
17216 (shrink-window-if-larger-than-buffer):
17217 * calendar/calendar.el (calendar-generate-window):
17218 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
17219
17220 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
17221
17222 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
17223 in place (bug#9907).
17224 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
17225 (eshell-rewrite-if-command, eshell-rewrite-for-command)
17226 (eshell-structure-basic-command, eshell-rewrite-while-command)
17227 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
17228 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
17229 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
17230 (eshell-do-pipelines-synchronously, eshell-eval-command):
17231 Use backquotes and prefer setq to set.
17232 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
17233 (eshell-macrop): Use functionp.
17234 (eshell-do-eval): Handle multiple expressions in `while' body.
17235
17236 2011-10-30 Chong Yidong <cyd@gnu.org>
17237
17238 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
17239 instead of set-mark (Bug#9810).
17240
17241 2011-10-30 Chong Yidong <cyd@gnu.org>
17242
17243 * window.el (split-window-below, split-window-right): Rename from
17244 split-window-above-each-other and split-window-side-by-side
17245 respectively. All callers changed.
17246 (split-window-sensibly, split-window-sensibly): Use them.
17247 (split-window-keep-point): Doc fix.
17248
17249 * isearch.el: Add isearch-scroll property to split-window-below
17250 and split-window-right.
17251
17252 * follow.el (follow-mode):
17253 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
17254 * progmodes/ada-xref.el (ada-gdb-application):
17255 * emulation/vip.el (vip-buffer-in-two-windows):
17256 * image-dired.el (image-dired-dired-with-window-configuration):
17257 * dired-x.el (dired-do-find-marked-files):
17258 * dired.el (dired-pop-to-buffer):
17259 * bs.el (bs--show-with-configuration):
17260 * vc/emerge.el (emerge-setup-windows):
17261 * textmodes/two-column.el (2C-two-columns):
17262 * textmodes/reftex-toc.el (reftex-toc):
17263 * progmodes/gdb-mi.el (gdb-setup-windows):
17264 * progmodes/fortran.el (fortran-window-create):
17265 * net/newst-treeview.el (newsticker--treeview-window-init):
17266 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
17267 * emulation/tpu-edt.el (tpu-gold-map):
17268 * emulation/crisp.el (crisp-mode-map):
17269 * calendar/calendar.el (calendar-basic-setup): Callers changed.
17270
17271 2011-10-29 Chong Yidong <cyd@gnu.org>
17272
17273 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
17274
17275 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
17276
17277 * textmodes/flyspell.el (flyspell-word): Fix char offset for
17278 forged Ispell output (Bug#7904).
17279
17280 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
17281
17282 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17283
17284 * doc-view.el: Avoid ugly errors about not finding nil.
17285 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
17286 (doc-view-dvipdf-program, doc-view-unoconv-program)
17287 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
17288 Avoid nil or absolute file name as default value.
17289 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
17290
17291 2011-10-28 Alan Mackenzie <acm@muc.de>
17292
17293 * progmodes/cc-defs.el (c-version): -> 5.32.2.
17294
17295 2011-10-28 Alan Mackenzie <acm@muc.de>
17296
17297 Amend the handling of c-beginning/end-of-defun in nested declaration
17298 scopes.
17299
17300 * progmodes/cc-vars.el (c-defun-tactic): Move here from
17301 cc-langs.el. Change it to a defcustom.
17302
17303 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
17304 cc-vars.el.
17305
17306 * progmodes/cc-engine.el (c-beginning-of-statement-1):
17307 Prevent "class foo : bar" being spuriously recognized as a label.
17308
17309 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
17310 Add parameter `inclusive' (to include enclosing braces in the region).
17311 (c-widen-to-enclosing-decl-scope): New function.
17312 (c-while-widening-to-decl-block): New macro.
17313 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
17314 outward for defun boundaries, and correspondingly change symbol
17315 `respect-enclosure' to `go-outward'.
17316 (c-declaration-limits): Change algorithm to report only the "innermost"
17317 defun's boundaries.
17318
17319 2011-10-28 Deniz Dogan <deniz@dogan.se>
17320
17321 * net/rcirc.el (rcirc-mode): Use hard newlines.
17322
17323 2011-10-28 Alan Mackenzie <acm@muc.de>
17324
17325 Amend to indent and fontify macros "which include their own semicolon"
17326 correctly, using the "virtual semicolon" mechanism.
17327
17328 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
17329
17330 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
17331 Recode to scan one line at a time rather than having \n and \r
17332 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
17333 (c-forward-label): Amend for virtual semicolons.
17334 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
17335
17336 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
17337 of the new C macros.
17338
17339 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
17340 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
17341 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
17342 (c-opt-cpp-macro-define): Make into a full language variable.
17343 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
17344 AWK Mode (including \n, \r) removed, no longer needed.
17345
17346 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
17347 Invoke c-make-macro-with-semi-re.
17348
17349 * progmodes/cc-vars.el (c-macro-with-semi-re):
17350 (c-macro-names-with-semicolon): New variables.
17351 (c-make-macro-with-semi-re): New function.
17352
17353 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17354
17355 * vc/log-edit.el: Fill empty field rather than adding new one.
17356 (log-edit-add-field): New function.
17357 (log-edit-insert-changelog): Use it.
17358
17359 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
17360
17361 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
17362
17363 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17364
17365 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
17366 (gdb--check-interpreter): New function.
17367 (gdb): Use it.
17368
17369 2011-10-27 Glenn Morris <rgm@gnu.org>
17370
17371 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
17372 (least-positive-float, least-negative-float)
17373 (least-positive-normalized-float, least-negative-normalized-float)
17374 (float-epsilon, float-negative-epsilon):
17375 Remove unnecessary declarations.
17376
17377 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
17378 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
17379 (least-positive-float, least-negative-float)
17380 (least-positive-normalized-float, least-negative-normalized-float)
17381 (float-epsilon, float-negative-epsilon): Add doc-strings,
17382 based on those in cl.texi.
17383
17384 * files.el (set-visited-file-name): If the major-mode changed,
17385 reload the local variables. (Bug#9796)
17386
17387 2011-10-27 Chong Yidong <cyd@gnu.org>
17388
17389 * subr.el (change-major-mode-after-body-hook): New hook.
17390 (run-mode-hooks): Run it.
17391
17392 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
17393 Use change-major-mode-before-body-hook.
17394
17395 * simple.el (fundamental-mode):
17396 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
17397 change introducing fundamental-mode-hook.
17398
17399 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
17400
17401 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
17402
17403 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
17404
17405 * ido.el (ido-file-name-all-completions-1): Do not require
17406 tramp.el explicitly. (Bug#7583)
17407
17408 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
17409
17410 * progmodes/octave-mod.el:
17411 * progmodes/octave-inf.el: Update maintainer.
17412
17413 2011-10-26 Chong Yidong <cyd@gnu.org>
17414
17415 * subr.el (with-wrapper-hook): Rewrite doc.
17416
17417 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
17418
17419 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
17420 filenames "/method:foo:". (Bug#9793)
17421
17422 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
17423
17424 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
17425 (bug#9865).
17426
17427 2011-10-24 Glenn Morris <rgm@gnu.org>
17428
17429 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
17430
17431 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
17432
17433 * notifications.el: Add the requirement of a running D-Bus session
17434 bus to the Commentary.
17435
17436 2011-10-24 Juri Linkov <juri@jurta.org>
17437
17438 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
17439 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
17440 (Bug#9364)
17441
17442 2011-10-24 Juri Linkov <juri@jurta.org>
17443
17444 * info.el (Info-following-node-name-re): Add newline to the list
17445 of allowed characters for leading space. (Bug#9824)
17446
17447 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
17448
17449 * progmodes/octave-inf.el (inferior-octave-mode-map):
17450 Fix C-c C-h binding.
17451 * progmodes/octave-mod.el (octave-help): Remove.
17452
17453 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
17454
17455 Sync with Tramp 2.2.3.
17456
17457 * net/tramp-cache.el (top): Pacify byte-compiler using
17458 `init-file-user' and `site-run-file'.
17459
17460 * net/trampver.el: Update release number.
17461
17462 2011-10-23 Chong Yidong <cyd@gnu.org>
17463
17464 * files.el (toggle-read-only): Remove obsolete comment about
17465 version control.
17466
17467 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
17468 for toggle-read-only. Note that this hasn't called vc-next-action
17469 since 2008-05-02, though it wasn't documented at the time.
17470
17471 * vc/ediff-init.el (ediff-toggle-read-only-function):
17472 Use toggle-read-only.
17473
17474 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
17475
17476 Fix bug #9560, sporadic wrong indentation; improve instrumentation
17477 of c-parse-state.
17478
17479 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
17480 correct faulty logical expression.
17481 (c-parse-state-state, c-record-parse-state-state):
17482 (c-replay-parse-state-state): New defvar/defuns.
17483 (c-debug-parse-state): Use new functions.
17484
17485 2011-10-22 Martin Rudalics <rudalics@gmx.at>
17486
17487 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
17488 last fix. Use window-in-direction correctly.
17489
17490 2011-10-21 Chong Yidong <cyd@gnu.org>
17491
17492 * progmodes/idlwave.el (idlwave-mode):
17493 * progmodes/vera-mode.el (vera-mode): No need to set
17494 require-final-newline; that's done in prog-mode.
17495 Suggested by Stefan Monnier.
17496
17497 2011-10-21 Martin Rudalics <rudalics@gmx.at>
17498
17499 * mouse.el (mouse-drag-window-above)
17500 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
17501 (mouse-drag-mode-line-1, mouse-drag-header-line)
17502 (mouse-drag-vertical-line-rightward-window): Remove.
17503 (mouse-drag-line): New function.
17504 (mouse-drag-mode-line, mouse-drag-header-line)
17505 (mouse-drag-vertical-line): Call mouse-drag-line.
17506 * window.el (window-at-side-p, windows-at-side): New functions.
17507
17508 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
17509
17510 * tar-mode.el (tar-grind-file-mode):
17511 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
17512
17513 2011-10-21 Chong Yidong <cyd@gnu.org>
17514
17515 * progmodes/idlwave.el (idlwave-mode):
17516 * progmodes/vera-mode.el (vera-mode):
17517 Use mode-require-final-newline.
17518
17519 2011-10-20 Glenn Morris <rgm@gnu.org>
17520
17521 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
17522
17523 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
17524
17525 * emulation/cua-base.el (cua-set-mark): Fix case of string.
17526
17527 2011-10-20 Chong Yidong <cyd@gnu.org>
17528
17529 * emulation/cua-base.el (cua-mode):
17530 * mail/footnote.el (footnote-mode):
17531 * mail/mailabbrev.el (mail-abbrevs-mode):
17532 * net/xesam.el (xesam-minor-mode):
17533 * progmodes/bug-reference.el (bug-reference-mode):
17534 * progmodes/cap-words.el (capitalized-words-mode):
17535 * progmodes/compile.el (compilation-minor-mode)
17536 (compilation-shell-minor-mode):
17537 * progmodes/gud.el (gud-tooltip-mode):
17538 * progmodes/hideif.el (hide-ifdef-mode):
17539 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
17540 * progmodes/subword.el (subword-mode):
17541 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
17542 * progmodes/which-func.el (which-function-mode):
17543 * term/tvi970.el (tvi970-set-keypad-mode):
17544 * term/vt100.el (vt100-wide-mode):
17545 * textmodes/flyspell.el (flyspell-mode):
17546 * textmodes/ispell.el (ispell-minor-mode):
17547 * textmodes/nroff-mode.el (nroff-electric-mode):
17548 * textmodes/paragraphs.el (use-hard-newlines):
17549 * textmodes/refill.el (refill-mode):
17550 * textmodes/reftex.el (reftex-mode):
17551 * textmodes/rst.el (rst-minor-mode):
17552 * textmodes/sgml-mode.el (html-autoview-mode)
17553 (sgml-electric-tag-pair-mode):
17554 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
17555 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
17556 * emulation/crisp.el (crisp-mode):
17557 * emacs-lisp/eldoc.el (eldoc-mode):
17558 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
17559 minor mode behavior.
17560
17561 2011-10-19 Juri Linkov <juri@jurta.org>
17562
17563 * descr-text.el (describe-char): Add #x2010 and #x2011 to
17564 the list of hard-coded chars with escape-glyph face.
17565
17566 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
17567
17568 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
17569
17570 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
17571
17572 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
17573 running process.
17574
17575 2011-10-19 Glenn Morris <rgm@gnu.org>
17576
17577 * vc/vc-bzr.el (vc-bzr-after-dir-status):
17578 Ignore ignored files. (Bug#9726)
17579
17580 2011-10-19 Chong Yidong <cyd@gnu.org>
17581
17582 Doc fix for minor modes, stating that an omitted argument enables
17583 the mode unconditionally when called from Lisp.
17584
17585 * abbrev.el (abbrev-mode):
17586 * allout.el (allout-mode):
17587 * autoinsert.el (auto-insert-mode):
17588 * autoarg.el (autoarg-mode, autoarg-kp-mode):
17589 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
17590 (global-auto-revert-mode):
17591 * battery.el (display-battery-mode):
17592 * composite.el (global-auto-composition-mode)
17593 (auto-composition-mode):
17594 * delsel.el (delete-selection-mode):
17595 * desktop.el (desktop-save-mode):
17596 * dired-x.el (dired-omit-mode):
17597 * dirtrack.el (dirtrack-mode):
17598 * doc-view.el (doc-view-minor-mode):
17599 * double.el (double-mode):
17600 * electric.el (electric-indent-mode, electric-pair-mode):
17601 * emacs-lock.el (emacs-lock-mode):
17602 * epa-hook.el (auto-encryption-mode):
17603 * follow.el (follow-mode):
17604 * font-core.el (font-lock-mode):
17605 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
17606 * help.el (temp-buffer-resize-mode):
17607 * hilit-chg.el (highlight-changes-mode)
17608 (highlight-changes-visible-mode):
17609 * hi-lock.el (hi-lock-mode):
17610 * hl-line.el (hl-line-mode, global-hl-line-mode):
17611 * icomplete.el (icomplete-mode):
17612 * ido.el (ido-everywhere):
17613 * image-file.el (auto-image-file-mode):
17614 * image-mode.el (image-minor-mode):
17615 * iswitchb.el (iswitchb-mode):
17616 * jka-cmpr-hook.el (auto-compression-mode):
17617 * linum.el (linum-mode):
17618 * longlines.el (longlines-mode):
17619 * master.el (master-mode):
17620 * mb-depth.el (minibuffer-depth-indicate-mode):
17621 * menu-bar.el (menu-bar-mode):
17622 * minibuf-eldef.el (minibuffer-electric-default-mode):
17623 * mouse-sel.el (mouse-sel-mode):
17624 * msb.el (msb-mode):
17625 * mwheel.el (mouse-wheel-mode):
17626 * outline.el (outline-minor-mode):
17627 * paren.el (show-paren-mode):
17628 * recentf.el (recentf-mode):
17629 * reveal.el (reveal-mode, global-reveal-mode):
17630 * rfn-eshadow.el (file-name-shadow-mode):
17631 * ruler-mode.el (ruler-mode):
17632 * savehist.el (savehist-mode):
17633 * scroll-all.el (scroll-all-mode):
17634 * scroll-bar.el (scroll-bar-mode):
17635 * server.el (server-mode):
17636 * shell.el (shell-dirtrack-mode):
17637 * simple.el (auto-fill-mode, transient-mark-mode)
17638 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
17639 (line-number-mode, column-number-mode, size-indication-mode)
17640 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
17641 * strokes.el (strokes-mode):
17642 * time.el (display-time-mode):
17643 * t-mouse.el (gpm-mouse-mode):
17644 * tool-bar.el (tool-bar-mode):
17645 * tooltip.el (tooltip-mode):
17646 * type-break.el (type-break-mode-line-message-mode)
17647 (type-break-query-mode):
17648 * view.el (view-mode):
17649 * whitespace.el (whitespace-mode, whitespace-newline-mode)
17650 (global-whitespace-mode, global-whitespace-newline-mode):
17651 * xt-mouse.el (xterm-mouse-mode): Doc fix.
17652
17653 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
17654 Fix autogenerated docstring.
17655
17656 2011-10-19 Juri Linkov <juri@jurta.org>
17657
17658 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
17659 by checking environment variables "DESKTOP_SESSION" and
17660 "XDG_CURRENT_DESKTOP". (Bug#9779)
17661
17662 2011-10-19 Juri Linkov <juri@jurta.org>
17663
17664 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
17665 (browse-url-chromium-program, browse-url-chromium-arguments):
17666 New defcustoms.
17667 (browse-url-default-browser): Check for `browse-url-chromium' and
17668 call `browse-url-chromium-program'.
17669 (browse-url-chromium): New command. (Bug#9779)
17670
17671 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
17672
17673 * facemenu.el (list-colors-duplicates): On Windows, detect more
17674 duplicates by assuming that only colors matching "^System" are
17675 special "system colors". (Bug#9722)
17676
17677 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
17678
17679 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
17680 to distinguish the author from the committer.
17681
17682 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
17683
17684 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
17685
17686 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
17687
17688 * international/mule.el (sgml-html-meta-auto-coding-function):
17689 Add support for detecting encoding in HTML5 specified only as
17690 <meta charset="UTF-8">. Implementation just makes http-equiv and
17691 content-type parts from HTML4 encoding string optional. (Bug#9716)
17692
17693 2011-10-18 Glenn Morris <rgm@gnu.org>
17694
17695 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
17696
17697 2011-10-18 Chong Yidong <cyd@gnu.org>
17698
17699 * faces.el (cursor): Doc fix.
17700
17701 2011-10-17 Chong Yidong <cyd@gnu.org>
17702
17703 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
17704
17705 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
17706
17707 * dirtrack.el (dirtrack): Support shell buffers with path
17708 prefixes, e.g. tramp-based remote shells. (Bug#9647)
17709
17710 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
17711
17712 * json.el: Bump version to 1.3 and note change in History.
17713 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
17714
17715 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
17716
17717 * comint.el (comint-insert-input, comint-send-input)
17718 (comint-get-old-input-default, comint-backward-matching-input)
17719 (comint-next-prompt): Use nil instead of `input' for field property of
17720 past user input (bug#114).
17721
17722 * minibuffer.el (completion--replace): Inherit surrounding properties
17723 (bug#114).
17724 (minibuffer-complete-and-exit): Use it.
17725
17726 * comint.el (comint--table-subvert): Quote the all-completions output
17727 (bug#9160).
17728
17729 2011-10-17 Martin Rudalics <rudalics@gmx.at>
17730
17731 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
17732
17733 * menu-bar.el (menu-bar-file-menu): Add entry for making new
17734 window on right of selected. (Bug#9350) Reword other window
17735 entries and separate them from frame entries.
17736
17737 2011-10-15 Glenn Morris <rgm@gnu.org>
17738
17739 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
17740 Doc fixes.
17741
17742 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
17743
17744 * net/network-stream.el (network-stream-open-starttls):
17745 Improve detection of failure due to lack of TLS support.
17746
17747 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
17748 putting the input text in front and in bold.
17749
17750 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
17751
17752 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
17753
17754 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
17755 empty buffer.
17756
17757 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
17758 unread-command-events rather than pushing yet-another event.
17759
17760 2011-10-14 Eli Zaretskii <eliz@gnu.org>
17761
17762 * mail/sendmail.el (sendmail-query-once): Improve the wording of
17763 the explanation of the possible choices. Make the options passed
17764 to completing-read shorter.
17765
17766 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
17767
17768 * textmodes/flyspell.el (flyspell-large-region): Make sure
17769 extended character mode is used if defined (Bug#1339).
17770
17771 2011-10-13 Eli Zaretskii <eliz@gnu.org>
17772
17773 * simple.el (what-cursor-position): Fix the display of the
17774 character info for LRE, LRO, RLE, and RLO characters by appending
17775 an invisible PDF.
17776
17777 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
17778
17779 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
17780 even in case of error; add debug spec; simplify data flow.
17781 (with-timeout-handler): Remove.
17782
17783 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
17784
17785 Fix Bug#6019, Bug#9315.
17786
17787 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
17788 complete `buffer-file-name', the local file name part could look
17789 remotely (for example on VMS).
17790
17791 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
17792 `tramp-run-real-handler'.
17793 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
17794 already quoted by '"'.
17795
17796 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
17797 Let `file-name-handler-alist' be nil, the local file name part
17798 could look remotely (for example on VMS).
17799
17800 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
17801
17802 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
17803 from here...
17804 (flyspell-post-command-hook): ...to here.
17805
17806 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
17807
17808 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
17809 if not needed.
17810 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
17811 using completion. Protect against "slow" callers.
17812 Remove the "message hack".
17813
17814 2011-10-11 Juri Linkov <juri@jurta.org>
17815
17816 * isearch.el (isearch-lazy-highlight-word): New variable.
17817 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
17818 Use it. (Bug#9727)
17819
17820 2011-10-11 Glenn Morris <rgm@gnu.org>
17821
17822 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
17823 like f90-previous-statement does.
17824
17825 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17826
17827 * eshell/eshell.el (eshell-command): History should be saved
17828 only in interactive use, to avoid error.
17829
17830 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
17831
17832 * minibuffer.el (completion-file-name-table): Fix last change,
17833 i.e. ignore normal errors but not the other ones.
17834
17835 2011-10-10 Martin Rudalics <rudalics@gmx.at>
17836
17837 * window.el (special-display-buffer-names)
17838 (special-display-regexps): Remove some remnants of earlier
17839 changes from doc-strings.
17840 (quit-windows-on): New function.
17841
17842 * vc/vc.el (vc-revert, vc-rollback):
17843 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
17844 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
17845 (Bug#6183) (Bug#7074) (Bug#7447)
17846
17847 2011-10-09 Martin Rudalics <rudalics@gmx.at>
17848
17849 * window.el (frame-auto-hide-function): Add version tag.
17850 (Bug#9699)
17851
17852 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
17853
17854 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
17855 condition.
17856
17857 2011-10-09 Leo Liu <sdl.web@gmail.com>
17858
17859 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
17860 (Bug#9701)
17861
17862 2011-10-08 Glenn Morris <rgm@gnu.org>
17863
17864 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
17865 before the first code statement zero indent. (Bug#9690)
17866
17867 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
17868
17869 * simple.el (count-words-region): Always count in the region.
17870 Report the number of lines and characters too.
17871 (count-words): New command, which counts in the buffer if the
17872 region is inactive, as count-words-region used to.
17873 (count-words--message): New function. Handle plurals.
17874 (count-lines-region): Make it an alias for count-words-region.
17875
17876 * bindings.el (esc-map): Replace count-lines-region with
17877 count-words-region.
17878
17879 2011-10-08 Martin Rudalics <rudalics@gmx.at>
17880
17881 * window.el (window--delete): Delete dedicated frame
17882 unconditionally when argument KILL is non-nil. (Bug#9699)
17883 (switch-to-buffer): Fix doc-string typo.
17884
17885 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17886
17887 * eshell/eshell.el (eshell-command): Avoid using hooks.
17888
17889 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
17890
17891 * bindings.el ([M-left],[M-right]): Bind to left-word and
17892 right-word respectively.
17893
17894 2011-10-07 Glenn Morris <rgm@gnu.org>
17895
17896 * cus-start.el (debug-on-quit): Fix custom type.
17897
17898 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
17899
17900 * subr.el (define-key-after): Clarify that the function is not
17901 useful for non-menu keymaps.
17902
17903 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
17904
17905 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17906
17907 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
17908 in current minibuffer (Fix bug with recursive minibuffers).
17909
17910 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
17911
17912 * progmodes/gdb-mi.el (gdb): Doc fix.
17913
17914 2011-10-05 Martin Rudalics <rudalics@gmx.at>
17915
17916 * window.el (frame-auto-hide-function): New option replacing
17917 frame-auto-delete. Suggested by Stefan Monnier.
17918 (window--delete): Call frame-auto-hide-function instead of
17919 investigating frame-auto-delete.
17920 (window-point-1, set-window-point-1): New functions.
17921 (window-in-direction, record-window-buffer, window-state-get-1)
17922 (display-buffer-record-window): Use window-point-1 instead of
17923 window-point.
17924 (set-window-buffer-start-and-point): Use set-window-point-1.
17925
17926 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
17927
17928 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
17929
17930 2011-10-05 Glenn Morris <rgm@gnu.org>
17931
17932 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
17933 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
17934
17935 2011-10-05 Leo Liu <sdl.web@gmail.com>
17936
17937 * subr.el (read-char-choice): Fix argument to buffer-live-p which
17938 works with buffer object.
17939
17940 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
17941
17942 * mpc.el (mpc-tool-bar-map): Add labels.
17943
17944 2011-10-04 Glenn Morris <rgm@gnu.org>
17945
17946 * calendar/holidays.el (calendar-check-holidays): Doc fix.
17947
17948 2011-10-04 Martin Rudalics <rudalics@gmx.at>
17949
17950 * window.el (window--delete): New function.
17951 (frame-auto-delete): Resuscitate option.
17952 (bury-buffer, replace-buffer-in-windows)
17953 (quit-window): Rewrite using window--delete.
17954 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
17955 Pass display-buffer-mark-dedicated to window--display-buffer-2
17956 (Bug#9639).
17957
17958 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
17959
17960 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
17961 returns a list (bug#9554). Add remote file name completion.
17962 * comint.el (comint--table-subvert): Curry and get quote&unquote
17963 functions as arguments.
17964 (comint--complete-file-name-data): Adjust call accordingly.
17965 * pcomplete.el (pcomplete--table-subvert): Remove.
17966 (pcomplete-completions-at-point): Use comint--table-subvert instead.
17967
17968 * minibuffer.el (completion-table-case-fold): Use currying.
17969 (completion--styles-type, completion--cycling-threshold-type):
17970 New constants.
17971 (completion-styles, completion-category-overrides)
17972 (completion-cycle-threshold): Use them.
17973 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
17974 completion-table-case-fold.
17975
17976 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
17977
17978 * minibuffer.el (completion-category-overrides): Fix type of styles
17979 and add more user friendly tags (bug#9660).
17980
17981 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
17982
17983 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
17984 (mule-input-method-string): New widget.
17985 (default-input-method, language-info-custom-alist): Use it.
17986
17987 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
17988
17989 * pcomplete.el: Require comint.
17990 (pcomplete--common-suffix): Remove.
17991 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
17992 (pcomplete--table-subvert): Sync with comint--table-subvert.
17993 (pcomplete--entries): Use comint-completion-file-name-table.
17994 * comint.el (comint-unquote-filename): Simplify.
17995 (comint-completion-file-name-table): New function (bug#9616).
17996 (comint--complete-file-name-data): Use it.
17997
17998 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
17999 (pcmpl-gnu-tar-buffer): Remove.
18000 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
18001 around. Make sure pcomplete-suffix-list is only changed temporarily.
18002 Don't look inside the tar's file if it's too large.
18003
18004 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
18005
18006 * cus-edit.el (custom-mode-map):
18007 * epa.el (epa-key-list-mode-map):
18008 * man.el (Man-mode-map):
18009 * startup.el (splash-screen-keymap):
18010 * simple.el (special-mode-map): Use scroll-up-command and
18011 scroll-down-command.
18012
18013 * progmodes/idlw-help.el (idlwave-help-mode-map):
18014 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
18015 * net/newst-plainview.el (newsticker-mode-map):
18016 * emulation/ws-mode.el (wordstar-mode-map):
18017 * emulation/vi.el (vi-com-map):
18018 * calc/calc-graph.el (calc-graph-show-dumb):
18019 * term/sun.el (terminal-init-sun):
18020 * term/ns-win.el (global-map):
18021 * progmodes/grep.el (grep-mode-map):
18022 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
18023 * mail/rmail.el (rmail-mode-map):
18024 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
18025
18026 * custom.el (custom-safe-themes, load-theme): Treat value of t for
18027 custom-safe-themes as special.
18028
18029 2011-10-01 Julien Danjou <julien@danjou.info>
18030
18031 * notifications.el (notifications-notify): Fix docstring.
18032
18033 2011-10-01 Per Starbäck <per@starback.se>
18034
18035 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
18036
18037 2011-09-30 Martin Rudalics <rudalics@gmx.at>
18038
18039 * startup.el (command-line-1): Fix last fix by inserting
18040 initial-scratch-message into *scratch* before displaying it.
18041 (Bug#9605) and (Bug#9636)
18042
18043 2011-09-29 Eli Zaretskii <eliz@gnu.org>
18044
18045 * simple.el (line-move): If auto-hscroll-mode is disabled and the
18046 window is hscrolled, move by logical lines. (Bug#9607)
18047 (line-move-visual): Update the doc string to the above effect.
18048
18049 2011-09-29 Martin Rudalics <rudalics@gmx.at>
18050
18051 * window.el (display-buffer-record-window): When WINDOW is the
18052 selected window use `point' instead of `window-point'. (Bug#9626)
18053
18054 * startup.el (command-line-1): Use insert-before-markers when
18055 inserting initial-scratch-message. (Bug#9605)
18056
18057 * help.el (help-window): Remove variable.
18058
18059 2011-09-29 Glenn Morris <rgm@gnu.org>
18060
18061 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
18062
18063 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
18064
18065 * descr-text.el (describe-char-categories): Accept category
18066 descriptions more than one line long.
18067
18068 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
18069
18070 * simple.el (delete-trailing-whitespace): Fix last change.
18071
18072 * progmodes/perl-mode.el (perl-syntax-propertize-function):
18073 Don't confuse "y => 3" as the beginning of a `y' operation.
18074
18075 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
18076 object has more than 4 slots (bug#9613).
18077
18078 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
18079
18080 * subr.el (with-output-to-temp-buffer):
18081 * net/quickurl.el (quickurl, quickurl-browse-url):
18082 Fix typos in docstrings.
18083
18084 2011-09-27 Eli Zaretskii <eliz@gnu.org>
18085
18086 * minibuffer.el (completion-styles)
18087 (completion-category-overrides): Cross reference each other in doc
18088 strings.
18089
18090 2011-09-27 Glenn Morris <rgm@gnu.org>
18091
18092 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
18093 to split-string. (Bug#9606)
18094
18095 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
18096
18097 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
18098 (bug#9615).
18099
18100 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
18101
18102 * emacs-lisp/package.el (list-packages): Fix echo area message.
18103
18104 2011-09-27 Leo Liu <sdl.web@gmail.com>
18105
18106 * ido.el (ido-read-internal): Accept cons cell HIST arg.
18107
18108 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
18109
18110 * net/dbus.el (dbus-unregister-object): Don't release services for
18111 registered signals. (Bug#9581)
18112
18113 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
18114
18115 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
18116 function that picks between cfengine 2 and 3 support
18117 automatically. Update docs accordingly.
18118
18119 2011-09-22 Kenichi Handa <handa@m17n.org>
18120
18121 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
18122 ZERO.
18123 (indian-itrans-v5-table-for-tamil): New variable.
18124 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
18125
18126 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
18127
18128 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
18129 that's true if the current command involved collapsing of text.
18130 It's reset to false at the beginning of the next command.
18131 (allout-post-command-business): Move the cursor to the beginning
18132 of entry if the cursor is hidden and collapsing activity just
18133 happened.
18134
18135 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
18136
18137 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
18138 tracking (Bug#9541).
18139
18140 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
18141
18142 * net/newst-reader.el (newsticker-html-renderer)
18143 (newsticker-show-news): Automatically load html rendering package
18144 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
18145 because w3m-fill-column is let-bound" and the error "Symbol's value
18146 as variable is void: w3m-fill-column".
18147
18148 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
18149
18150 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
18151 Release services only if they are defined. (Bug#9581)
18152
18153 2011-09-23 Richard Stallman <rms@gnu.org>
18154
18155 * textmodes/paragraphs.el (forward-sentence): For backwards case,
18156 distinguish start of paragraph from start of its text.
18157
18158 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
18159
18160 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
18161 (rmail-generate-viewer-buffer): Put that hook on view buffer.
18162 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
18163
18164 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
18165
18166 * international/mule-diag.el (mule-diag): Insert a newline after
18167 each fontset description.
18168
18169 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
18170
18171 * simple.el (delete-trailing-whitespace):
18172 Document last change; simplify.
18173
18174 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
18175
18176 * simple.el (delete-trailing-whitespace): Also delete
18177 extra newlines at the end of the buffer.
18178
18179 * textmodes/picture.el: Make motion commands obey shift-select-mode.
18180 (picture-newline): Use forward-line so as to ignore fields.
18181
18182 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
18183
18184 * subr.el (with-wrapper-hook): Fix edebug spec.
18185
18186 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
18187
18188 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
18189 (bug#4538).
18190
18191 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
18192
18193 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
18194 Fix nasty bug using wrong cached values.
18195
18196 2011-09-23 Alan Mackenzie <acm@muc.de>
18197
18198 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
18199
18200 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
18201
18202 * window.el (pop-to-buffer): Ensure right window is selected if we
18203 chose another frame.
18204
18205 2011-09-22 Eli Zaretskii <eliz@gnu.org>
18206
18207 * simple.el (what-cursor-position): Use get-char-property-change
18208 and next-single-char-property-change, to be able to show display
18209 properties that come from overlays as well as text properties.
18210
18211 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
18212
18213 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
18214
18215 * cmuscheme.el (run-scheme, switch-to-scheme):
18216 * cus-edit.el (customize-group, custom-buffer-create)
18217 (customize-browse):
18218 * info.el (info):
18219 * shell.el (shell):
18220 * mail/sendmail.el (mail):
18221 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
18222
18223 2011-09-22 Richard Stallman <rms@gnu.org>
18224
18225 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
18226 move back only to line beg, don't move back over blank lines.
18227
18228 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
18229
18230 * files.el (copy-directory): Set directory attributes only in case
18231 they could be retrieved from the source directory. (Bug#9565)
18232
18233 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
18234
18235 * progmodes/hideshow.el (hs-looking-at-block-start-p)
18236 (hs-find-block-beginning, hs-hide-level-recursive):
18237 Ignore strings as well as comments. (Bug#9502)
18238
18239 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
18240
18241 * progmodes/sql.el (sql-comint-postgres):
18242 Convert port number to a string. (Bug#9566)
18243
18244 2011-09-22 Martin Rudalics <rudalics@gmx.at>
18245
18246 * window.el (quit-window): Undedicate window when switching to
18247 previous buffer. Reported by Thierry Volpiatto
18248 <thierry.volpiatto@gmail.com>.
18249 (special-display-popup-frame): When popping up a new frame reset
18250 its previous buffers to nil. Simplify code.
18251
18252 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
18253
18254 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
18255 and process filter, as done also in `shell-command'.
18256
18257 2011-09-21 Martin Rudalics <rudalics@gmx.at>
18258
18259 * window.el (set-window-buffer-start-and-point):
18260 Call set-window-start with NOFORCE argument t.
18261 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
18262 (quit-window): Reword doc-string. Handle new format of
18263 quit-restore parameter. Don't delete window if it has a
18264 previous buffer we can show instead of the present one.
18265 (display-buffer-record-window): Rewrite using a new format for
18266 the quit-restore window parameter
18267 (special-display-popup-frame, display-buffer-same-window)
18268 (display-buffer-reuse-window, display-buffer-pop-up-frame)
18269 (display-buffer-pop-up-window, display-buffer-use-some-window):
18270 Adapt symbol passed to display-buffer-record-window.
18271 * help.el (help-window-setup): Handle new format of quit-restore
18272 parameter.
18273
18274 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
18275
18276 * faces.el (face-list): Fix docstring (bug#9564).
18277
18278 * window.el (display-buffer--action-function-custom-type):
18279 Don't include internal functions in the Custom interface.
18280
18281 2011-09-20 Juri Linkov <juri@jurta.org>
18282
18283 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
18284 (Info-forward-node, Info-backward-node, Info-next-preorder)
18285 (Info-last-preorder): Use it. (Bug#9528)
18286
18287 2011-09-20 Juri Linkov <juri@jurta.org>
18288
18289 * info.el (Info-last-preorder): Visit last menu item only when
18290 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
18291
18292 2011-09-20 Julien Danjou <julien@danjou.info>
18293
18294 * password-cache.el (password-cache-remove): Remove entries even if the
18295 value is nil, so that password with a nil value (negative caching) is
18296 possible to invalidate.
18297
18298 2011-09-20 Lawrence Mitchell <wence@gmx.li>
18299
18300 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
18301 all whitespace around breakpoint. (Bug#9553)
18302 (f90-find-breakpoint): Only break at whitespace inside a comment.
18303
18304 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
18305
18306 * minibuffer.el (completion-file-name-table): Keep track of errors.
18307 (completion-table-with-predicate): Handle the case where pred1 is nil.
18308 * pcomplete.el (pcomplete-completions-at-point): Simplify.
18309
18310 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
18311
18312 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
18313 (debugger-return-value): Signal an error if the debugging context does
18314 not await any return value.
18315
18316 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
18317 * image-mode.el (image-toggle-display-text)
18318 (image-toggle-display-image): Stay away from evil `intangible'.
18319
18320 2011-09-19 Leo Liu <sdl.web@gmail.com>
18321
18322 * replace.el (occur-revert-arguments): Make it permanent-local.
18323 (occur-mode): Don't call font-lock-defontify.
18324
18325 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
18326
18327 * net/ldap.el (ldap-search-internal): Don't push empty search
18328 result (Bug#9508).
18329
18330 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
18331
18332 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
18333
18334 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
18335
18336 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
18337 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
18338
18339 2011-09-18 Juri Linkov <juri@jurta.org>
18340
18341 * buff-menu.el (Buffer-menu-mode-map):
18342 * dired.el (dired-mode-map):
18343 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
18344 (lisp-interaction-mode-map):
18345 * emacs-lisp/package.el (package-menu-mode-map):
18346 * epa.el (epa-key-list-mode-map):
18347 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
18348 (menu-bar-options-menu):
18349 * outline.el (outline-mode-menu-bar-map):
18350 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
18351 * vc/vc-dir.el (vc-dir-menu-map):
18352 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
18353 Capitalize non-function content words in menu item strings.
18354
18355 * dired.el (dired-mode-map): Add menu item for
18356 `image-dired-dired-toggle-marked-thumbs'.
18357
18358 2011-09-18 Juri Linkov <juri@jurta.org>
18359
18360 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
18361 to `isearch-case-fold-search' and restore its original value
18362 after the `isearch-mode' call.
18363
18364 2011-09-18 Juri Linkov <juri@jurta.org>
18365
18366 * progmodes/grep.el (grep-process-setup): Don't check code for 1
18367 because `zgrep' returns 1 for successful matches (bug#9226).
18368
18369 2011-09-18 Juri Linkov <juri@jurta.org>
18370
18371 * info.el (Info-extract-menu-node-name): Check the second match
18372 for empty string (second test-case of bug#9528).
18373 (Info-last-preorder): Let-bind `Info-history' to nil to not add
18374 intermediate nodes to the history (first test-case of bug#9528).
18375
18376 2011-09-18 Juri Linkov <juri@jurta.org>
18377
18378 * info.el (Info-mode-syntax-table): New variable.
18379 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
18380
18381 2011-09-18 Juri Linkov <juri@jurta.org>
18382
18383 * info.el (Info-file-supports-index-cookies):
18384 Increment line-beginning-position's arg from 3 to 4 because makeinfo
18385 outputs one more line for long file names (bug#4142).
18386
18387 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
18388
18389 * newcomment.el (comment-normalize-vars): If prompting for
18390 comment-start, set comment-start-skip too (Bug#8424).
18391
18392 2011-09-18 Johan Bockgård <bojohan@gnu.org>
18393
18394 * icomplete.el: Fix previous fix of Bug#5849.
18395 (icomplete-mode): Don't set completion-show-inline-help.
18396 (icomplete-minibuffer-setup): Set completion-show-inline-help
18397 locally during icompletion.
18398
18399 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
18400
18401 * woman.el (woman2-process-escapes): Don't delete unrecognized
18402 escapes (Bug#7843).
18403
18404 * files.el (inhibit-first-line-modes-regexps): Add image files.
18405 (hack-local-variables-prop-line): Return nil for malformed
18406 prop-lines (Bug#9044).
18407
18408 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
18409
18410 * net/tramp.el (top): Don't require 'shell.
18411 (tramp-methods): Fix docstring.
18412 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
18413 Return complete remote file name. Handle "smb" case.
18414 Use `tramp-tmpdir', if defined for the respective method.
18415 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
18416
18417 * net/tramp-compat.el (top): Require 'shell.
18418
18419 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
18420 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
18421 `tramp-current-host'.
18422 (tramp-get-remote-tmpdir): Remove.
18423
18424 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
18425 `tramp-tmpdir' entries.
18426 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
18427 (tramp-smb-handle-file-attributes): Ignore errors.
18428 (tramp-smb-wait-for-output): Check also for process end.
18429
18430 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
18431
18432 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
18433 when sending QUIT (bug#9312).
18434
18435 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
18436
18437 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
18438 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
18439 occur-mode-display-occurrence.
18440 (occur-edit-mode): Add usage message.
18441 (occur-cease-edit): New command.
18442 (occur-after-change-function): Use text properties to find the
18443 position of the prefix text.
18444 (occur-engine): Set stickiness of prefix text properties.
18445
18446 2011-09-17 Glenn Morris <rgm@gnu.org>
18447
18448 * progmodes/etags.el (complete-tag):
18449 Fix call to completion-in-region. (Bug#9526)
18450
18451 2011-09-17 Juri Linkov <juri@jurta.org>
18452
18453 * textmodes/ispell.el (ispell-word): Add to the error message
18454 the word, ispell program name and current dictionary (bug#9121).
18455 (ispell-tex-arg-end): Capitalize "error" in the error message.
18456
18457 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
18458
18459 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
18460 check. (Bug#4251)
18461
18462 2011-09-17 Juri Linkov <juri@jurta.org>
18463
18464 * window.el (window-safe-min-height, window-safe-min-width):
18465 Fix typos (followup to bug#9522).
18466
18467 2011-09-17 Sven Joachim <svenjoac@gmx.de>
18468
18469 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
18470
18471 2011-09-16 Eli Zaretskii <eliz@gnu.org>
18472
18473 * simple.el (line-move): If goal-column is set, move by logical
18474 lines, not by display lines. (Bug#971)
18475 (next-line, previous-line, goal-column, line-move-visual): Doc fix
18476 to reflect the above change.
18477
18478 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
18479
18480 * image.el (imagemagick-register-types): Use regexp-opt.
18481
18482 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
18483
18484 * window.el (display-buffer-base-action): Rename from
18485 display-buffer-default-action. Make default value empty.
18486 (display-buffer-overriding-action): Convert to defvar.
18487 (display-buffer-fallback-action): New var.
18488
18489 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
18490
18491 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
18492 declaration.
18493 (package--add-to-archive-contents): If there is a duplicate entry
18494 with an older version, remove it.
18495 (package-menu-mark-delete, package-menu-mark-install)
18496 (package-menu-mark-unmark): Make unused args optional.
18497 (package-menu-mark-obsolete-for-deletion):
18498 Use package-menu-get-status instead of a regexp search.
18499 (package-menu-get-status): Use tabulated-list-entry.
18500 (package-menu-mark-upgrades): New command.
18501 (package-menu-mode-map): Bind it to U. Add it to menu bar.
18502 (package-menu-execute): Do installation before deletion.
18503 (package-menu-refresh, package-menu-execute): Use derived-mode-p
18504 instead of checking major-mode.
18505 (package-menu--find-upgrades): New function.
18506
18507 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18508
18509 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
18510 passwords in the log buffer.
18511 (smtpmail-process-filter): Update the process marker so that the
18512 "broken by peer" status message is inserted in the right place.
18513
18514 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
18515
18516 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
18517 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
18518 bibtex-completion-at-point-function.
18519 (bibtex-completion-at-point-function): Use them.
18520
18521 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
18522
18523 * mpc.el (mpc-constraints-tag-lookup): New function.
18524 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
18525 also to browser "album|playlist".
18526
18527 2011-09-14 Juri Linkov <juri@jurta.org>
18528
18529 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
18530 (isearch-edit-string): Use length of `isearch-string' when
18531 `isearch-fail-pos' returns nil.
18532 (isearch-message): Remove duplicate code and call
18533 `isearch-fail-pos' with arg `t'.
18534
18535 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
18536
18537 * replace.el (occur-mode-goto-occurrence): Don't force using other
18538 window (Bug#9499).
18539
18540 * dired-aux.el (dired-do-chmod): Don't provide initial input.
18541
18542 2011-09-14 Martin Rudalics <rudalics@gmx.at>
18543
18544 * window.el (display-buffer-window): Remove.
18545 (display-buffer-record-window): Use help-setup window parameter
18546 instead of variable display-buffer-window.
18547 (display-buffer-function, special-display-buffer-names)
18548 (special-display-function): Mention help-setup parameter instead
18549 of display-buffer-window in doc-string.
18550 * help.el (help-window-setup): New argument help-window.
18551 Use help-window-setup parameter instead of display-buffer-window.
18552 Reword some messages.
18553 (with-help-window): Pass window used for displaying the buffer
18554 to help-window-setup. Don't set display-buffer-window.
18555
18556 2011-09-13 Glenn Morris <rgm@gnu.org>
18557
18558 * emacs-lisp/debug.el (debugger-make-xrefs):
18559 Preserve point. (Bug#9462)
18560
18561 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
18562
18563 * window.el (window-deletable-p): Use next-frame.
18564
18565 2011-09-13 Martin Rudalics <rudalics@gmx.at>
18566
18567 * window.el (window-auto-delete): Remove.
18568 (window-deletable-p): Remove argument FORCE. Don't deal with
18569 dedication and previous buffers.
18570 (switch-to-prev-buffer): Don't delete window.
18571 (delete-windows-on): Delete a window's frame if and only if the
18572 window is dedicated.
18573 (replace-buffer-in-windows): Delete buffer's window or frame if
18574 and only if window is dedicated.
18575 (quit-window): Handle quit-restore as before last change.
18576 (bury-buffer): Delete window only if window-deletable-p returns t.
18577
18578 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
18579
18580 * window.el (window-deletable-p): Never delete the last frame on a
18581 given terminal.
18582
18583 2011-09-13 Glenn Morris <rgm@gnu.org>
18584
18585 * help.el (describe-key-briefly): Copy previous standard-output change.
18586
18587 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
18588
18589 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
18590
18591 2011-09-13 Glenn Morris <rgm@gnu.org>
18592
18593 * emacs-lisp/lisp-mode.el (lisp-indent-function):
18594 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
18595
18596 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
18597
18598 * dired-aux.el (dired-mark-read-string): Don't return default
18599 value on empty input (Bug#9361).
18600 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
18601 Omit initial minibuffer contents.
18602 (dired-do-chmod): Signal an error on empty input.
18603 (dired-mark-read-string): Don't return default on empty input.
18604
18605 * files.el (file-modes-symbolic-to-number): Doc fix.
18606
18607 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
18608
18609 * international/mule-cmds.el (ucs-completions): Remove.
18610 (read-char-by-name): Use complete-with-action instead; add metadata.
18611
18612 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
18613
18614 * window.el (display-buffer--action-function-custom-type)
18615 (display-buffer--action-custom-type): New vars.
18616 (display-buffer-alist, display-buffer-default-action)
18617 (display-buffer-overriding-action): Add defcustom types.
18618
18619 * frame.el (delete-other-frames): Doc fix (Bug#276).
18620
18621 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
18622
18623 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
18624
18625 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
18626
18627 Change modes that used same-window-* vars to use switch-to-buffer.
18628
18629 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
18630 Use switch-to-buffer.
18631
18632 * cus-edit.el (customize-group, custom-buffer-create)
18633 (customize-browse, custom-buffer-create-other-window):
18634 Use switch-to-buffer or switch-to-buffer-other-window.
18635
18636 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
18637 (Info-prev, Info-up, Info-speedbar-goto-node)
18638 (info-display-manual): Use switch-to-buffer.
18639 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
18640
18641 * mail/sendmail.el (mail): Use switch-to-buffer.
18642 (mail-recover): Use switch-to-buffer-other-window.
18643
18644 * cmuscheme.el (run-scheme, switch-to-scheme):
18645 * ielm.el (ielm):
18646 * shell.el (shell):
18647 * net/rlogin.el (rlogin):
18648 * net/telnet.el (telnet, rsh):
18649 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
18650
18651 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
18652
18653 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
18654
18655 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
18656
18657 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
18658 so don't mention it (bug#9301).
18659 (dired-sort-toggle-or-edit): Clarify string further.
18660
18661 * faces.el (face-spec-set-match-display): Make `(type graphic)'
18662 match `x', `w32' and `ns', like the manual says (bug#9029).
18663
18664 * subr.el (eval-after-load): Doc string clarification (bug#9125).
18665 (process-kill-buffer-query-function): Mention the buffer name in
18666 the query.
18667
18668 * image-mode.el (image-next-line): The line parameter is mandatory
18669 (bug#9258).
18670
18671 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
18672 which can be useful (bug#9301).
18673
18674 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
18675
18676 * subr.el (match-string): Mention that the current buffer should
18677 be the same as the search was done in (bug#9282).
18678
18679 * facemenu.el: Disable the remove-* commands if the mark isn't
18680 active (bug#9162).
18681
18682 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
18683
18684 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
18685 of display-buffer.
18686 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
18687
18688 * replace.el (occur-mode-goto-occurrence)
18689 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
18690 and display-buffer.
18691
18692 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
18693 display-buffer.
18694
18695 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
18696 special-display and same-window variables.
18697 (mail-other-window): Use switch-to-buffer-other-window.
18698 (mail-other-frame): USe switch-to-buffer-other-frame.
18699
18700 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
18701 Use display-buffer-other-frame.
18702 (gdb-display-gdb-buffer): Use pop-to-buffer.
18703
18704 * progmodes/gud.el (gud-goto-info): Use info-other-window.
18705
18706 * progmodes/python.el: Don't set same-window-buffer-names.
18707
18708 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
18709
18710 * window.el (display-buffer-alist): Add *Python*.
18711
18712 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
18713
18714 * window.el (display-buffer-alist): Add entry for buffers
18715 previously handled same-window-*.
18716 (display-buffer-alist, display-buffer-default-action)
18717 (display-buffer-overriding-action): Mark as risky.
18718 (display-buffer-alist): Document action function changes.
18719 (display-buffer--same-window-action)
18720 (display-buffer--other-frame-action): New variables.
18721 (switch-to-buffer, display-buffer-other-frame): Use them.
18722 (display-buffer): Rename reuse-frame entry to reusable-frames.
18723 (display-buffer-reuse-selected-window): Function deleted.
18724 (display-buffer-reuse-window): Handle reusable-frames alist entry.
18725 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
18726 (display-buffer-special): New function.
18727 (display-buffer--maybe-pop-up-frame-or-window): Rename from
18728 display-buffer-reuse-or-pop-window. Split off special-display
18729 part into display-buffer-special.
18730 (display-buffer-use-some-window): Don't perform any special
18731 pop-up-frames handling.
18732 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
18733 (display-buffer--maybe-same-window): Rename from
18734 display-buffer-maybe-same-window.
18735
18736 * info.el: Don't set same-window-regexps.
18737 (info-setup): New function.
18738 (info-other-window, info): Call it.
18739
18740 * cus-edit.el: Don't set same-window-regexps.
18741 (customize-group): New argument.
18742 (customize-group-other-window): Use it.
18743 (customize-face, customize-face-other-window): Likewise.
18744 (custom-buffer-create-other-window): Use pop-to-buffer directly.
18745
18746 * net/rlogin.el:
18747 * net/telnet.el:
18748 * progmodes/gud.el: Don't set same-window-regexps.
18749
18750 * cmuscheme.el:
18751 * ielm.el:
18752 * shell.el:
18753 * mail/sendmail.el:
18754 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
18755
18756 2011-09-10 Juri Linkov <juri@jurta.org>
18757
18758 * isearch.el (isearch-edit-string): Remove obsolete mention of
18759 `C-w' (`isearch-yank-word-or-char') from docstring.
18760 (isearch-query-replace): Fix typo in docstring (bug#9466).
18761
18762 2011-09-10 Juri Linkov <juri@jurta.org>
18763
18764 * paren.el (show-paren-function): Don't show escaped parens.
18765 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
18766
18767 2011-09-10 Eli Zaretskii <eliz@gnu.org>
18768
18769 * mail/sendmail.el (mml-to-mime, mml-attach-file)
18770 (mm-default-file-encoding): Remove autoload forms, they are
18771 replaced with autoload cookies in mml.el and mm-encode.el.
18772 (mail-add-attachment): New command.
18773 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
18774 (mail-mode): Mention mail-insert-file and mail-add-attachment in
18775 the doc string.
18776 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
18777
18778 2011-09-10 Reuben Thomas <rrt@sc3d.org>
18779
18780 * simple.el (count-words-region): Use buffer if there's no region
18781 (bug#9429).
18782
18783 2011-09-09 Juri Linkov <juri@jurta.org>
18784
18785 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
18786 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
18787 (wdired-isearch-filter-read-only): New function. (Bug#6362)
18788
18789 2011-09-09 Alan Mackenzie <acm@muc.de>
18790
18791 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
18792 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
18793
18794 2011-09-09 Eli Zaretskii <eliz@gnu.org>
18795
18796 Fix for Savannah bug#9392.
18797 * simple.el (mail-encode-mml): New defvar.
18798
18799 * mail/rmail.el (mail-encode-mml): Add a defvar.
18800 (rmail-enable-mime-composing): Default to t.
18801 (rmail-forward): Use MIME method of forwarding only if both
18802 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
18803 Set mail-encode-mml non-nil if the MIME method was used.
18804
18805 * mail/sendmail.el (mml-to-mime): Add autoload form.
18806 (mail-encode-mml): Add a defvar.
18807 (mail-mode): Make mail-encode-mml buffer-local and initialize it
18808 to nil.
18809 (mail-send): If mail-encode-mml is non-nil, run the outgoing
18810 message through mml-to-mime, and reset mail-encode-mml to nil.
18811
18812 2011-09-09 Glenn Morris <rgm@gnu.org>
18813
18814 * woman.el (woman-if-body): When processing an .el block,
18815 do not delete the next .el block as well. (Bug#9447)
18816 (woman-special-characters): Add oq, cq, and hy characters.
18817
18818 2011-09-08 Martin Rudalics <rudalics@gmx.at>
18819
18820 * window.el (window-deletable-p): Make sure window is live before
18821 invoking window-prev-buffers.
18822
18823 2011-09-08 Leo Liu <sdl.web@gmail.com>
18824
18825 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
18826
18827 2011-09-08 Juri Linkov <juri@jurta.org>
18828
18829 * progmodes/compile.el (compilation-environment): Make it
18830 a defcustom (bug#8340).
18831
18832 2011-09-08 Martin Rudalics <rudalics@gmx.at>
18833
18834 * window.el (frame-auto-delete): Rename to window-auto-delete.
18835 Make it control auto-deletion of windows and/or frames.
18836 (window-deletable-p): New argument FORCE. Rewrite conditions
18837 for deleting window/frame. (Bug#9419)
18838 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
18839 Rewrite handling of case when window/frame can be deleted.
18840 (delete-windows-on): Call window-deletable-p with new FORCE
18841 argument t. (Bug#9456)
18842
18843 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
18844
18845 * help-mode.el (help-mode): Restore autoload.
18846
18847 2011-09-07 Juri Linkov <juri@jurta.org>
18848
18849 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
18850 `compilation-environment'. Set buffer-local
18851 `compilation-environment' to `thisenv' later after (funcall mode).
18852 (Bug#8340)
18853
18854 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
18855 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
18856 instead of replacing its value. (Bug#8340)
18857
18858 2011-09-07 Juri Linkov <juri@jurta.org>
18859
18860 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
18861 based on text properties put by `grep-filter' instead of matching
18862 escape sequences.
18863 (grep-mode): Set buffer-local `compilation-error-screen-columns'
18864 to the value of `grep-error-screen-columns' (bug#9438).
18865
18866 2011-09-07 Juri Linkov <juri@jurta.org>
18867
18868 * simple.el (next-error-highlight, next-error-highlight-no-select):
18869 Doc fix (bug#9432).
18870
18871 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
18872
18873 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
18874 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
18875
18876 2011-09-07 Leo Liu <sdl.web@gmail.com>
18877
18878 * net/rcirc.el (rcirc-mode): Conditionally initialize
18879 rcirc-input-ring.
18880
18881 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
18882
18883 * emacs-lisp/find-func.el (find-function-C-source): Only set
18884 find-function-C-source-directory after checking that we found a source
18885 file there (bug#9440).
18886
18887 2011-09-06 Alan Mackenzie <acm@muc.de>
18888
18889 * isearch.el (isearch-other-meta-char): Wherever a key list is
18890 unread, "unread" the prefix arg, too. This fixes bug #8901.
18891
18892 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
18893
18894 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
18895
18896 2011-09-05 Juri Linkov <juri@jurta.org>
18897
18898 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
18899
18900 2011-09-05 Juri Linkov <juri@jurta.org>
18901
18902 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
18903 keeping point where processing of grep matches begins, and
18904 continue to delete remaining escape sequences from the same point.
18905 (grep-filter): Make leading zero optional in "0?1;31m" because
18906 git-grep emits "\033[1;31m" escape sequences unlike expected
18907 "\033[01;31m" as GNU Grep does (bug#9408).
18908 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
18909
18910 2011-09-05 Juri Linkov <juri@jurta.org>
18911
18912 * subr.el (y-or-n-p): Capitalize "yes".
18913
18914 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
18915
18916 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
18917 `tramp-cache-unload-hook' where appropriate.
18918 (tramp-methods): Rename `tramp-remote-sh' to
18919 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
18920 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
18921
18922 * net/tramp-sh.el (top): Don't require 'shell.
18923 (tramp-methods): Add `tramp-remote-shell' and
18924 `tramp-remote-shell-args' entries.
18925 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
18926 (tramp-sh-handle-shell-command): Remove.
18927 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
18928 Use `tramp-remote-shell'.
18929
18930 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
18931
18932 * mail/sendmail.el (sendmail-query-once-function): Delete.
18933 (sendmail-query-once): Save directly to send-mail-function.
18934 Update message-send-mail-function too.
18935
18936 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
18937
18938 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
18939
18940 * progmodes/python.el (python-mode-map): Use correct function to
18941 start python interpreter from menu-bar (as reported by Geert
18942 Kloosterman).
18943 (inferior-python-mode-map): Fix typo.
18944 (python-shell-map): Remove.
18945
18946 2011-09-03 Deniz Dogan <deniz@dogan.se>
18947
18948 * net/rcirc.el (rcirc-print): Simplify code for
18949 rcirc-scroll-show-maximum-output. There is no need to walk
18950 through all windows to find the right one.
18951
18952 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
18953
18954 * help.el (help-return-method): Doc fix.
18955
18956 2011-09-03 Martin Rudalics <rudalics@gmx.at>
18957
18958 * window.el (window-deletable-p): Don't return a non-nil value
18959 when there's a buffer that was shown in the window before.
18960 (Bug#9419)
18961 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
18962 Set window's previous buffers to nil.
18963
18964 2011-09-03 Eli Zaretskii <eliz@gnu.org>
18965
18966 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
18967 newline before and after the tag line, so it doesn't interfere
18968 with determining the paragraph direction of bidirectional text.
18969
18970 2011-09-03 Leo Liu <sdl.web@gmail.com>
18971
18972 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
18973
18974 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
18975
18976 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
18977 (pop-to-buffer): Change interactive spec. Pass second argument
18978 directly to display-buffer.
18979 (display-buffer): Fix interactive spec. Use functionp to
18980 distinguish between a function and a list of functions.
18981
18982 * abbrev.el (edit-abbrevs):
18983 * arc-mode.el (archive-extract):
18984 * autoinsert.el (auto-insert):
18985 * bookmark.el (bookmark-bmenu-list):
18986 * files.el (find-file):
18987 * view.el (view-buffer):
18988 * progmodes/compile.el (compilation-goto-locus):
18989 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
18990
18991 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
18992
18993 * window.el (display-buffer-alist): Doc fix.
18994 (display-buffer): Add docstring. Don't treat
18995 display-buffer-default specially.
18996 (display-buffer-reuse-selected-window)
18997 (display-buffer-same-window, display-buffer-maybe-same-window)
18998 (display-buffer-reuse-window, display-buffer-pop-up-frame)
18999 (display-buffer-pop-up-window)
19000 (display-buffer-reuse-or-pop-window)
19001 (display-buffer-use-some-window): New functions.
19002 (display-buffer-default-action): Use them.
19003 (display-buffer-default): Delete.
19004 (pop-to-buffer-1): Fix choice of actions.
19005
19006 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
19007
19008 * minibuffer.el (completion--insert-strings): Don't get confused by
19009 completion entries that end with an LF char.
19010
19011 2011-09-01 Eli Zaretskii <eliz@gnu.org>
19012
19013 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
19014
19015 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
19016
19017 * window.el (display-buffer): Restore interactive spec.
19018 (display-buffer-same-window, display-buffer-other-window):
19019 New functions.
19020 (pop-to-buffer-1): New function. Use the above.
19021 (pop-to-buffer, pop-to-buffer-same-window): Use it.
19022 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
19023
19024 * view.el (view-buffer-other-window, view-buffer-other-frame):
19025 Just use pop-to-buffer.
19026
19027 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
19028
19029 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
19030
19031 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
19032
19033 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
19034
19035 2011-08-31 Richard Stallman <rms@gnu.org>
19036
19037 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
19038 of the separation of rmail-view-buffer from rmail-buffer.
19039 If you say no to "replace original", the decrypt is in the
19040 view buffer. If you say yes, the decrypt goes into the
19041 rmail buffer also.
19042
19043 2011-08-31 Martin Rudalics <rudalics@gmx.at>
19044
19045 * window.el (display-buffer-window): Rewrite doc-string.
19046 (display-buffer-record-window): New function.
19047 (display-buffer-macro-specifiers)
19048 (display-buffer-even-window-sizes, display-buffer-set-height)
19049 (display-buffer-set-width, display-buffer-in-window)
19050 (display-buffer-reuse-window, display-buffer-split-specifiers)
19051 (display-buffer-side-specifiers, display-buffer-split-window-1)
19052 (display-buffer-split-window, display-buffer-split-atom-window)
19053 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
19054 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
19055 (display-buffer-other-window-means-other-frame)
19056 (display-buffer-normalize-special)
19057 (display-buffer-normalize-default)
19058 (display-buffer-normalize-argument)
19059 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
19060 (display-buffer-normalize-specifiers, display-buffer-frame)
19061 (display-buffer-same-window, display-buffer-same-frame)
19062 (display-buffer-other-window)
19063 (display-buffer-same-frame-other-window)
19064 (display-buffer-other-frame, pop-to-buffer-same-window)
19065 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
19066 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
19067 (switch-to-buffer-same-frame)
19068 (switch-to-buffer-other-window-same-frame)
19069 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
19070 (display-buffer-alist-set-1, display-buffer-alist-set-2)
19071 (display-buffer-alist-set): Remove.
19072 (display-buffer-function, special-display-buffer-names)
19073 (special-display-regexps, special-display-function):
19074 In doc-string refer to display-buffer-window and quit-restore
19075 parameter.
19076 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
19077 (special-display-frame-alist, special-display-popup-frame)
19078 (same-window-buffer-names, same-window-regexps, same-window-p)
19079 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
19080 (split-window-preferred-function, split-height-threshold)
19081 (split-width-threshold, window-splittable-p)
19082 (split-window-sensibly, window--try-to-split-window)
19083 (window--frame-usable-p, even-window-heights)
19084 (window--even-window-heights, window--display-buffer-1)
19085 (window--display-buffer-2, display-buffer-other-frame):
19086 Restore old Emacs 23 code, order and doc-strings where applicable.
19087 (display-buffer-default, display-buffer-assq-regexp): New functions.
19088 (display-buffer-alist): Rewrite doc-string.
19089 (display-buffer-default-action)
19090 (display-buffer-overriding-action): New variables.
19091 (display-buffer, switch-to-buffer): Rewrite.
19092 (pop-to-buffer): Restore Emacs 23 behavior but use
19093 window-normalize-buffer-to-display.
19094 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
19095 Restore Emacs 23 behavior but use
19096 window-normalize-buffer-to-switch-to.
19097 (pop-to-buffer-same-window): Rewrite.
19098 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
19099 Rewrite using Emacs 23 options.
19100
19101 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
19102
19103 * net/tramp.el (tramp-root-regexp): Remove.
19104 (tramp-completion-file-name-regexp-unified)
19105 (tramp-completion-file-name-regexp-separate)
19106 (tramp-completion-file-name-regexp-url): Don't use leading volume
19107 letter on w32 systems. (Bug#5303, Bug#9311)
19108 (tramp-drop-volume-letter): Simplify definition.
19109 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
19110
19111 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
19112
19113 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
19114 (bug#9356).
19115
19116 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
19117
19118 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
19119
19120 2011-08-29 Juri Linkov <juri@jurta.org>
19121
19122 * isearch.el (isearch-done): Don't display message "Mark saved"
19123 when arg `edit' is non-nil to prevent its flicker in the echo area.
19124
19125 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
19126
19127 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
19128 obsolete packages for deletion.
19129
19130 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
19131
19132 * help-mode.el (help-mode-map): Add special-mode-map to parent.
19133 (help-mode): Derive help-mode from special-mode. Don't invoke
19134 view-mode from help-mode.
19135 (help-xref-override-view-map): Remove.
19136 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
19137 view-mode is not used anymore.
19138
19139 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
19140
19141 * server.el (server-port): Doc fix.
19142
19143 * cus-theme.el (custom-theme-choose-mode): Inherit from
19144 special-mode (Bug#9124).
19145 (custom-theme-choose-mode-map): Add special-mode to parent.
19146
19147 2011-08-28 Alan Mackenzie <acm@muc.de>
19148
19149 * progmodes/cc-fonts.el
19150 (c-make-font-lock-BO-decl-search-function): New function.
19151 (c-basic-matchers-after - "Fontify the clauses after various
19152 keywords"): Extract the three keyword lists for the 3 erroneous
19153 constructs from the list of four, and use the new function above
19154 in place of an old one.
19155
19156 2011-08-28 Deniz Dogan <deniz@dogan.se>
19157
19158 * net/rcirc.el (rcirc-insert-prev-input)
19159 (rcirc-insert-next-input): Remove unused argument.
19160
19161 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
19162
19163 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
19164
19165 2011-08-27 Alan Mackenzie <acm@muc.de>
19166
19167 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
19168 handle function pointer parameters properly.
19169
19170 2011-08-27 Martin Rudalics <rudalics@gmx.at>
19171
19172 * window.el (display-buffer-reuse-window): Fix case where
19173 selected window was reused with non-nil OTHER-WINDOW argument.
19174 (Bug#9381)
19175
19176 2011-08-27 Deniz Dogan <deniz@dogan.se>
19177
19178 * net/rcirc.el (rcirc-check-auth-status): Adding support for
19179 oftc's NickServ messages.
19180
19181 2011-08-27 Glenn Morris <rgm@gnu.org>
19182
19183 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
19184
19185 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
19186
19187 * emacs-lisp/package.el (package-install): Call package-initialize
19188 if called interactively.
19189
19190 2011-08-26 Leo Liu <sdl.web@gmail.com>
19191
19192 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
19193
19194 2011-08-25 Juri Linkov <juri@jurta.org>
19195
19196 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
19197 `search-whitespace-regexp' (bug#9364).
19198
19199 2011-08-25 Juri Linkov <juri@jurta.org>
19200
19201 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
19202 `regexp-search-ring' to their global values to protect from
19203 updating by `read-from-minibuffer' (bug#9185).
19204
19205 2011-08-25 Juri Linkov <juri@jurta.org>
19206
19207 * textmodes/ispell.el (ispell-command-loop): Add newline
19208 at the end of the "Use option `i'..." line.
19209
19210 2011-08-25 Juri Linkov <juri@jurta.org>
19211
19212 * battery.el (display-battery-mode): If `battery-status-function'
19213 or `battery-mode-line-format' is nil, display the message and set
19214 `display-battery-mode' to nil (bug#9363).
19215
19216 2011-08-25 Eli Zaretskii <eliz@gnu.org>
19217
19218 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
19219 bidi-string-mark-left-to-right; they are unnecessary now.
19220
19221 2011-08-25 Deniz Dogan <deniz@dogan.se>
19222
19223 * net/quickurl.el: Documentation typo fixes.
19224
19225 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
19226
19227 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
19228
19229 2011-08-25 Glenn Morris <rgm@gnu.org>
19230
19231 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
19232
19233 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
19234 (smtpmail-via-smtp): Handle nil response from smtp.
19235
19236 2011-08-24 Juri Linkov <juri@jurta.org>
19237
19238 * proced.el (proced-marked): Inherit from `error' instead of
19239 `font-lock-warning-face'.
19240
19241 * ibuffer.el (ibuffer-marked-face): Change default face from
19242 `font-lock-warning-face' to `warning'.
19243 (ibuffer-deletion-face): Change default face from
19244 `font-lock-type-face' to `error'.
19245
19246 * battery.el (battery-update): Use the face `error' instead of
19247 `font-lock-warning-face' (bug#6117).
19248
19249 2011-08-24 Juri Linkov <juri@jurta.org>
19250
19251 * faces.el (success): Change face color from "Green3" to
19252 "ForestGreen" on light background (bug#9353).
19253
19254 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
19255
19256 * window.el (quit-window): Rename from quit-restore-window.
19257 Use same arglist as old quit-window.
19258 (frame-auto-delete): Doc fix.
19259
19260 * view.el (view-mode-exit): Use quit-window.
19261
19262 2011-08-24 Juri Linkov <juri@jurta.org>
19263
19264 * isearch.el (isearch-ring-adjust1): Start visiting previous
19265 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
19266 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
19267 for empty search string (when the last search string is reused
19268 automatically) to adjust the isearch ring to the last element and
19269 prepare the correct index for further M-p commands (bug#9185).
19270
19271 2011-08-24 Kenichi Handa <handa@m17n.org>
19272
19273 * international/ucs-normalize.el: If decomposition property of
19274 CHAR is the default one (i.e. a list of CHAR itself), treat it as
19275 nil.
19276 (nfd, nfkd): Likewise.
19277
19278 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
19279
19280 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
19281 from process filters aren't reliably transmitted to the surrounding
19282 accept-process-output.
19283 (mpc-proc-check): New function.
19284 (mpc-proc-sync): Use it (bug#8293)
19285
19286 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
19287
19288 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
19289 Add compatibility functions (bug#9313).
19290
19291 2011-08-23 Eli Zaretskii <eliz@gnu.org>
19292
19293 * cus-start.el (all): Add entry for bidi-paragraph-direction.
19294
19295 * international/uni-bidi.el: Regenerate.
19296
19297 2011-08-23 Kenichi Handa <handa@m17n.org>
19298
19299 * international/charprop.el:
19300 * international/uni-bidi.el:
19301 * international/uni-category.el:
19302 * international/uni-combining.el:
19303 * international/uni-comment.el:
19304 * international/uni-decimal.el:
19305 * international/uni-decomposition.el:
19306 * international/uni-digit.el:
19307 * international/uni-lowercase.el:
19308 * international/uni-mirrored.el:
19309 * international/uni-name.el:
19310 * international/uni-numeric.el:
19311 * international/uni-old-name.el:
19312 * international/uni-titlecase.el:
19313 * international/uni-uppercase.el: Regenerate.
19314
19315 2011-08-23 Martin Rudalics <rudalics@gmx.at>
19316
19317 * help.el (help-window-setup): Fix message displayed when other
19318 window is reused. (Bug#9341)
19319
19320 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
19321
19322 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
19323 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
19324
19325 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
19326 Mark obsolete.
19327 * shell.el (shell-parse-pcomplete-arguments): New function.
19328 (shell-completion-vars): Use it instead (bug#9160).
19329
19330 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
19331
19332 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
19333 strings and comments (bug#9333).
19334
19335 * emacs-lisp/debug.el (debug-arglist): New function.
19336 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
19337 (debug-on-entry-1): Handle interpreted closures (bug#9120).
19338
19339 2011-08-22 Juri Linkov <juri@jurta.org>
19340
19341 * progmodes/compile.el (compilation-mode-font-lock-keywords):
19342 Revert regexp that highlights output switches to its old
19343 pre-2010-10-28 value and remove one `?' from it (bug#9319).
19344
19345 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
19346 to check for empty output (bug#9226).
19347
19348 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
19349
19350 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
19351 symbol-constituent as the default, as that stops font-lock from
19352 working properly (Bug#8843).
19353
19354 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
19355
19356 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
19357 `coding-system-for-*' around the process open call to avoid
19358 auth-source side effects.
19359 (smtpmail-try-auth-methods): Expand the secret password.
19360 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
19361 probe hangs.
19362
19363 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
19364
19365 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
19366
19367 * emacs-lisp/find-func.el (find-function-noselect): New arg
19368 lisp-only.
19369
19370 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
19371 signal an error for built-in functions (Bug#6664).
19372
19373 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
19374
19375 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
19376 (smtpmail-try-auth-methods): Use it.
19377
19378 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
19379
19380 * font-lock.el (font-lock-fontify-region)
19381 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
19382 (font-lock-default-unfontify-buffer)
19383 (font-lock-default-fontify-region)
19384 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
19385
19386 * progmodes/compile.el (compilation-error-properties):
19387 Fix confusion between file struct and message struct (Bug#9319).
19388 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
19389 `ant' regexp.
19390
19391 * net/browse-url.el (browse-url-firefox): Don't call
19392 browse-url-firefox-sentinel unless using -remote (Bug#9328).
19393
19394 2011-08-20 Glenn Morris <rgm@gnu.org>
19395
19396 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
19397
19398 * tutorial.el (tutorial--default-keys): Update some default bindings.
19399
19400 * files.el (hack-local-variables): Fully ignore case for "mode:".
19401
19402 2011-08-20 Alan Mackenzie <acm@muc.de>
19403
19404 Resolve invalid use of a regexp in regexp-opt.
19405
19406 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
19407 detection for a java annotation.
19408
19409 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
19410 detection for a java annotation.
19411
19412 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
19413 handling for java.
19414 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
19415
19416 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
19417
19418 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
19419 (Bug#9274).
19420
19421 2011-08-20 Alan Mackenzie <acm@muc.de>
19422
19423 Fontify CPP expressions correctly when starting in the middle of
19424 such a construct. Mainly for when jit-lock etc. starts a chunk
19425 here.
19426
19427 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
19428 variable.
19429 (c-make-font-lock-search-form): New function, extracted from
19430 c-make-font-lock-search-function.
19431 (c-make-font-lock-search-function): Use the above function.
19432 (c-make-font-lock-context-search-function): New function.
19433 (c-cpp-matchers): Enhance the preprocessor expression case with
19434 the above function
19435 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
19436 which takes an expression.
19437
19438 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
19439
19440 2011-08-20 Martin Rudalics <rudalics@gmx.at>
19441
19442 * window.el (display-buffer-reuse-window)
19443 (display-buffer-pop-up-window): Don't reuse or split a side
19444 window.
19445
19446 2011-08-19 Glenn Morris <rgm@gnu.org>
19447
19448 * files.el (hack-local-variables-prop-line, hack-local-variables):
19449 Downcase "Mode:". (Bug#9331)
19450
19451 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
19452
19453 * international/characters.el: Add L and R categories.
19454
19455 * subr.el (bidi-string-mark-left-to-right): Rename from
19456 string-mark-left-to-right. Use category search.
19457
19458 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
19459
19460 2011-08-18 Juri Linkov <juri@jurta.org>
19461
19462 * faces.el (error, warning, success): New faces with definitions
19463 copied from old default values of `font-lock-warning-face',
19464 `compilation-warning', `compilation-info' (bug#6117).
19465
19466 * font-lock.el (font-lock-warning-face): Inherit from `error'.
19467
19468 * progmodes/compile.el (compilation-error): Inherit from `error'.
19469 (compilation-warning): Inherit from `warning'.
19470 (compilation-info): Inherit from `success'.
19471
19472 * dired.el (dired-marked): Inherit from `warning'.
19473 (dired-flagged): Inherit from `error'.
19474
19475 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
19476
19477 * mail/smtpmail.el (auth-source): Require to avoid problems with
19478 binding variables (bug#9298). Also clean up some unused
19479 autoloads.
19480
19481 * net/network-stream.el (network-stream-open-starttls):
19482 Support using starttls.el without using gnutls-cli.
19483
19484 2011-08-17 Juri Linkov <juri@jurta.org>
19485
19486 * progmodes/grep.el (rgrep): Handle the case when
19487 `grep-find-command' is a cons cell (bug#9278).
19488
19489 2011-08-17 Martin Rudalics <rudalics@gmx.at>
19490
19491 * window.el (display-buffer-pop-up-frame): Run frame creation
19492 function with BUFFER current (as special-display-popup-frame
19493 does). Reported by Drew Adams.
19494
19495 2011-08-17 Daiki Ueno <ueno@unixuser.org>
19496
19497 * epa-mail.el: Simplify GnuPG group expansion using
19498 epg-expand-group.
19499 (epa-mail-group-alist, epa-mail-group-modtime)
19500 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
19501 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
19502 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
19503 Remove.
19504
19505 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
19506
19507 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
19508
19509 2011-08-16 Alan Mackenzie <acm@muc.de>
19510
19511 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
19512 Correct, to avoid the inside of macros.
19513
19514 2011-08-16 Richard Stallman <rms@gnu.org>
19515
19516 * epa-mail.el: Handle GnuPG group definitions.
19517 (epa-mail-group-alist, epa-mail-group-modtime)
19518 (epa-mail-gnupg-conf-file): New variables.
19519 (epa-mail-parse-groups, epa-mail-sync-groups)
19520 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
19521 (epa-mail-expand-recipients): New functions.
19522 (epa-mail-encrypt): Call epa-mail-expand-recipients.
19523
19524 * mail/rmail.el (rmail-epa-decrypt): New command.
19525
19526 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
19527 Don't bind buffer-read-only, just inhibit-read-only.
19528 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
19529 (epa-decrypt-armor-in-region): Make error message clearer.
19530
19531 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
19532
19533 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
19534 and "a2b" to "ab" for `prefix'.
19535
19536 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
19537
19538 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
19539 filter groups.
19540 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
19541 Fourquet (Bug#8804).
19542
19543 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
19544
19545 * startup.el (argi): Declare as global variable (bug#9275).
19546
19547 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
19548
19549 * subr.el (string-mark-left-to-right): Search the entire string
19550 for RTL script, not just the terminating character. Doc fix.
19551
19552 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
19553
19554 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
19555 New function.
19556 (js--regexp-literal, js-syntax-propertize-function): Remove.
19557 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
19558 (js-mode-map): Don't rebind electric keys.
19559 (js-insert-and-indent): Remove.
19560 (js-mode): Setup electric-layout and electric-indent instead.
19561
19562 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
19563
19564 2011-08-12 Daiki Ueno <ueno@unixuser.org>
19565
19566 * epa.el (epa-progress-callback-function): Fix the logic of
19567 displaying progress.
19568 * epa-file.el (epa-file-insert-file-contents): Make progress
19569 display more user-friendly.
19570 (epa-file-write-region): Ditto.
19571
19572 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
19573
19574 * subr.el (string-mark-left-to-right): New function.
19575
19576 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
19577 Use string-mark-left-to-right.
19578 (list-buffers-noselect): Caller changed.
19579
19580 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
19581 Use string-mark-left-to-right.
19582 (tabulated-list-print): Recenter after moving point.
19583
19584 2011-08-10 Juri Linkov <juri@jurta.org>
19585
19586 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
19587 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
19588 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
19589
19590 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
19591
19592 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
19593 (Bug#7554).
19594
19595 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
19596
19597 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
19598 character. (Bug#6594)
19599
19600 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
19601
19602 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
19603 (image-dired--with-db-file): New macro.
19604 (image-dired-write-tags, image-dired-remove-tag)
19605 (image-dired-create-gallery-lists, image-dired-write-comments)
19606 (image-dired-get-comment, image-dired-mark-tagged-files)
19607 (image-dired-list-tags, image-dired-gallery-generate): Use it.
19608 (image-dired-gallery-generate): Use insert-file-contents.
19609
19610 * time.el (display-time-world-list, display-time-world-display):
19611 * time-stamp.el (time-stamp-string):
19612 * vc/add-log.el (add-change-log-entry): Use setenv instead of
19613 set-time-zone-rule (Bug#7337).
19614
19615 2011-08-08 Daiki Ueno <ueno@unixuser.org>
19616
19617 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
19618 (epg-error-to-string, epg-errors-to-string): New function.
19619 (epg-wait-for-completion): Reverse errors list.
19620 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
19621 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
19622 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
19623 (epg-sign-keys, epg-generate-key-from-file)
19624 (epg-generate-key-from-string): Format errors by using
19625 epg-errors-to-string (bug#9255).
19626 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
19627
19628 2011-08-07 Juri Linkov <juri@jurta.org>
19629
19630 * faces.el (list-faces-display): Remove extra angle bracket
19631 from `help-mode-map'.
19632
19633 * info.el (Info-history-toc-nodes): Doc fix.
19634
19635 * longlines.el (longlines-mode): Doc fix.
19636
19637 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
19638
19639 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
19640 of statements and in a few more cases (bug#9183).
19641
19642 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
19643 New functions.
19644 (cl-transform-lambda): Use them (bug#9239).
19645
19646 2011-08-05 Martin Rudalics <rudalics@gmx.at>
19647
19648 * window.el (display-buffer-same-window)
19649 (display-buffer-same-frame, display-buffer-other-window)
19650 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
19651 (pop-to-buffer-other-window)
19652 (pop-to-buffer-same-frame-other-window)
19653 (pop-to-buffer-other-frame): Make them defuns.
19654 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
19655
19656 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
19657
19658 * subr.el (make-composed-keymap): Move from C. Change calling
19659 convention, and improve docstring to bring attention to a subtle point.
19660 * minibuffer.el (completing-read-default): Adjust accordingly.
19661
19662 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
19663
19664 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
19665 (tramp-open-shell): Use `tramp-shell-quote-argument'.
19666
19667 * net/trampver.el: Update release number.
19668
19669 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
19670
19671 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
19672 "in" (bug#9190).
19673
19674 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19675
19676 * mail/sendmail.el (sendmail-query-once): Restore the current
19677 buffer after querying (bug#9074).
19678
19679 * dired.el (dired-flagged): Use different faces for marked and
19680 flagged files (bug#6117).
19681
19682 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
19683 (bug#4433).
19684
19685 * ido.el (ido-mode): Switch off the message if called
19686 non-interactively.
19687
19688 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
19689 before 587, since it appears that that's more likely to work for
19690 more people.
19691
19692 * cus-edit.el (custom-file): When running under emacs -q, always
19693 refuse to save the customizations, even if the .emacs file doesn't
19694 exist.
19695
19696 * info.el: Remove the `Info-beginning-of-buffer' function
19697 (bug#8325).
19698
19699 * net/network-stream.el (network-stream-open-starttls):
19700 Use `starttls-available-p' to see whether starttls.el can be used.
19701
19702 2011-08-01 Martin Rudalics <rudalics@gmx.at>
19703
19704 * window.el (display-buffer-in-window): Don't set dedicated status
19705 of window here (Bug#9215).
19706 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
19707 (display-buffer-pop-up-side-window)
19708 (display-buffer-in-side-window): Set dedicated status of window here.
19709
19710 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
19711
19712 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
19713 before binding generated-autoload-file.
19714
19715 2011-08-01 Deniz Dogan <deniz@dogan.se>
19716
19717 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
19718
19719 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
19720
19721 Sync with Tramp 2.2.2.
19722
19723 * net/trampver.el: Update release number.
19724
19725 2011-07-30 Juri Linkov <juri@jurta.org>
19726
19727 * dired-aux.el (dired-touch-initial): Remove function.
19728 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
19729 current time, and `default' to the last modification time of the
19730 current marked file (bug#6887).
19731
19732 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
19733
19734 * simple.el (goto-line): Use string-to-number to provide a
19735 numeric argument to read-number (bug#9163).
19736
19737 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
19738
19739 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
19740 connection process, it could be nil.
19741
19742 2011-07-27 Leo Liu <sdl.web@gmail.com>
19743
19744 Simplify url handling in rcirc-mode.
19745
19746 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
19747 (rcirc-browse-url-at-mouse): Remove.
19748 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
19749
19750 2011-07-26 Alan Mackenzie <acm@muc.de>
19751
19752 Fontify bitfield declarations properly.
19753
19754 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
19755 (c-symbol-chars): Now exported as a lang variable.
19756 (c-not-primitive-type-keywords): New lang variable.
19757
19758 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
19759 QT keyword "more" to prevent "more slots: ...." being spuriously
19760 parsed as a bitfield declaration.
19761
19762 * progmodes/cc-engine.el (c-beginning-of-statement-1):
19763 Refactor and enhance to handle bitfield declarations.
19764 (c-punctuation-in): New function.
19765 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
19766 declarations properly.
19767
19768 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
19769
19770 * calendar/icalendar.el (icalendar--all-events): Take care of
19771 multiple vcalendars in a single file.
19772 (icalendar--convert-float-to-ical): Checkdoc fixes.
19773
19774 2011-07-25 Deniz Dogan <deniz@dogan.se>
19775
19776 * image.el (insert-image): Clarifying docstring.
19777
19778 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
19779
19780 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
19781 `tramp-send-command-and-check' if there is no error.
19782 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
19783
19784 2011-07-22 Alan Mackenzie <acm@muc.de>
19785
19786 Prevent cc-langs.elc being loaded at run time.
19787
19788 * progmodes/cc-mode.el: Remove two autoload forms which loaded
19789 cc-langs.
19790
19791 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
19792 "(require 'cc-langs)". Quote a form so it will evaluate at
19793 (cc-mode's) compilation time.
19794
19795 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
19796
19797 * net/tramp.el (tramp-file-name-handler): Avoid recursive
19798 loading. (Bug#9114)
19799
19800 2011-07-21 Martin Rudalics <rudalics@gmx.at>
19801
19802 * window.el (display-buffer-pop-up-window)
19803 (display-buffer-pop-up-side-window)
19804 (display-buffer-in-side-window): Call display-buffer-set-height
19805 and display-buffer-set-width after setting the new window's
19806 buffer so `fit-window-to-buffer' and friends work on the right buffer.
19807
19808 2011-07-20 Sam Steingold <sds@gnu.org>
19809
19810 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
19811 (etags-tags-included-tables): Call `convert-standard-filename' on
19812 the file names contained in TAGS so that windows Emacs can handle
19813 TAGS files created by cygwin ctags.
19814
19815 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
19816
19817 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
19818 which apparently didn't work.
19819
19820 2011-07-19 Roland Winkler <winkler@gnu.org>
19821
19822 * proced.el (proced-send-signal): For *Marked Processes* buffer
19823 put point at beginning of buffer.
19824
19825 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
19826
19827 * proced.el (proced-format): Make header lines align with the text
19828 (bug#1779).
19829
19830 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
19831
19832 * view.el (view-buffer): Allow running in `special' modes if we're
19833 visiting a file (bug#8615).
19834
19835 2011-07-19 Martin Rudalics <rudalics@gmx.at>
19836
19837 * window.el (display-buffer-alist-of-strings-p)
19838 (display-buffer-alist-set-1, display-buffer-alist-set-2):
19839 New functions.
19840 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
19841 more accurately.
19842
19843 2011-07-18 Alan Mackenzie <acm@muc.de>
19844
19845 Fontify declarators properly when, e.g., a jit-lock chunk begins
19846 inside a declaration.
19847
19848 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
19849
19850 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
19851 New function.
19852 (c-complex-decl-matchers): Insert reference to
19853 c-font-lock-enclosing-decls.
19854
19855 * progmodes/cc-engine.el (c-backward-single-comment):
19856 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
19857 to nil around calls to (forward-comment -1).
19858
19859 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
19860
19861 * image.el (put-image): Doc typo fix.
19862
19863 * progmodes/etags.el (tags-search): Doc typo fix.
19864
19865 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
19866 password if we get errors 550 to 554.
19867
19868 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
19869
19870 * net/gnutls.el (gnutls-log-level): Remove.
19871
19872 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
19873 indentation character (bug#6380).
19874
19875 * files.el (buffer-offer-save): Made permanently local (bug#6241).
19876
19877 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
19878 to clarify what the problem is (bug#4291).
19879
19880 * simple.el (current-kill): Clarify what
19881 `interprogram-paste-function' does (bug#7500).
19882 (auto-fill-mode): Document `auto-fill-function' in relation to
19883 `auto-fill-mode' (bug#2470).
19884
19885 2011-07-16 Lawrence Mitchell <wence@gmx.li>
19886
19887 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
19888 method if slot is read-only (bug#9035).
19889
19890 2011-07-16 Martin Rudalics <rudalics@gmx.at>
19891
19892 * frame.el (select-frame-set-input-focus): New argument NORECORD.
19893 * window.el (pop-to-buffer): Select window used even if it was
19894 selected before, see discussion of (Bug#8615), (Bug#6954).
19895 Pass argument NORECORD on to select-frame-set-input-focus.
19896
19897 2011-07-15 Glenn Morris <rgm@gnu.org>
19898
19899 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
19900 Respect help-form.
19901
19902 2011-07-09 Lawrence Mitchell <wence@gmx.li>
19903
19904 * net/gnutls.el (gnutls-min-prime-bits): New variable.
19905 (gnutls-negotiate): Use it.
19906
19907 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
19908
19909 * net/gnutls.el (gnutls-negotiate):
19910 Upcase `gnutls-algorithm-priority'.
19911
19912 2011-07-15 Glenn Morris <rgm@gnu.org>
19913
19914 * jka-compr.el (jka-compr-verbose): Move from here...
19915 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
19916 Add missing :version tag.
19917 * info.el: No need to require jka-compr when compiling.
19918
19919 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
19920
19921 * net/gnutls.el (gnutls-algorithm-priority): New variable.
19922 (gnutls-negotiate): Use it.
19923
19924 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
19925
19926 * info.el (Info-beginning-of-buffer): New command.
19927 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
19928 announcing `b' as the key (bug#8325).
19929 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
19930
19931 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
19932
19933 * international/mule-cmds.el
19934 (describe-specified-language-support): Make the error message
19935 clearer (bug#8905).
19936
19937 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
19938
19939 * isearch.el (isearch-barrier): Add a doc string, since it's
19940 mentioned in a function doc string (bug#8678).
19941
19942 2011-07-15 Martin Rudalics <rudalics@gmx.at>
19943
19944 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
19945 buffer argument (Bug#9083) and self-identifying label argument.
19946
19947 2011-07-15 Glenn Morris <rgm@gnu.org>
19948
19949 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
19950
19951 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
19952
19953 * man.el (Man-fontify-manpage): Fix message when formatting the
19954 man page (bug#7929).
19955
19956 2011-07-14 Eli Zaretskii <eliz@gnu.org>
19957
19958 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
19959 argument LRM; if non-nil, append an invisible LRM character to the
19960 buffer name.
19961 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
19962 last argument non-nil, when formatting buffer names.
19963 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
19964 paragraph direction.
19965
19966 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
19967
19968 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
19969 the man page name (bug#7929).
19970
19971 * image.el (put-image): Mention the `put-image' overlay property
19972 (bug#7834).
19973
19974 * scroll-bar.el (set-scroll-bar-mode): Mention that
19975 `scroll-bar-mode' lists the values (bug#7772).
19976
19977 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
19978 command (bug#7729).
19979
19980 * rect.el (apply-on-rectangle): Return the point after the last
19981 operation.
19982 (string-rectangle): Go to the point after the last operation
19983 (bug#7522).
19984
19985 * printing.el (pr-toggle-region): Clarify the documentation
19986 slightly (bug#7493).
19987
19988 * time.el (display-time-update):
19989 Allow `display-time-mail-function' to return nil (bug#7158).
19990 Fix suggested by Detlev Zundel.
19991
19992 * vc/diff.el (diff): Clarify the order the file names are read
19993 (bug#7111).
19994
19995 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
19996 the doc string (bug#7015).
19997
19998 * font-lock.el (font-lock-maximum-decoration): Mention what
19999 numeric levels mean (bug#6935).
20000
20001 * startup.el (initial-buffer-choice): Don't mention the `none'
20002 selection, which is against policy.
20003
20004 2011-07-14 Martin Rudalics <rudalics@gmx.at>
20005
20006 * window.el (display-buffer-normalize-special):
20007 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
20008
20009 2011-07-14 Eli Zaretskii <eliz@gnu.org>
20010
20011 * subr.el (version<, version<=, version=): Mention "-CVS" and
20012 "-12345" alpha version numbers.
20013
20014 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
20015
20016 * bindings.el: Add advertised binding for set-mark-command
20017 (Bug#5772).
20018
20019 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
20020
20021 * bindings.el (mode-line-other-buffer):
20022 * bookmark.el (bookmark-bmenu-2-window):
20023 * bs.el (bs-cycle-next, bs-cycle-previous):
20024 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
20025 switch-to-buffer.
20026
20027 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20028 Delete.
20029
20030 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
20031
20032 * follow.el (follow-debug-message, follow-redisplay):
20033 * jka-cmpr-hook.el (with-auto-compression-mode):
20034 Fix typos in docstrings.
20035
20036 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20037
20038 * subr.el (with-silent-modifications): Clarify somewhat what the
20039 macro inhibits (bug#6525).
20040
20041 * simple.el (eval-expression): Note what it does if called
20042 interactively (bug#6495).
20043
20044 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
20045
20046 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
20047 Use pop-to-buffer buffer-or-name if it is nil.
20048
20049 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20050 Remove switch-to-buffer.
20051
20052 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20053
20054 * files.el (make-directory): Clarify that an error will be raised
20055 if there's an error (bug#6397).
20056
20057 * startup.el (initial-buffer-choice): Add `none' as a choice
20058 (bug#6234).
20059
20060 * subr.el (add-hook): Clarify section about buffer-local hooks
20061 (bug#6218).
20062
20063 * dired.el (dired-flagged): Clarify doc string (bug#6117).
20064
20065 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
20066
20067 * tabify.el (untabify): Preserve the current column so that point
20068 doesn't move (bug#6032).
20069
20070 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20071
20072 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
20073 Rewrite to avoid awkward possessive "s" (bug#5986).
20074
20075 2011-07-13 Glenn Morris <rgm@gnu.org>
20076
20077 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
20078 (dired-insert-directory): Give a message the first time
20079 if ls is found not to support --dired.
20080
20081 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20082
20083 * simple.el (toggle-truncate-lines): Clarify what is toggled
20084 (bug#5580). Text by Drew Adams.
20085
20086 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
20087
20088 * simple.el (blink-matching-open): Make the error message from the
20089 last change less verbose.
20090
20091 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
20092
20093 * font-lock.el (font-lock-comment-face): Use the high contrast
20094 "yellow" color for font-lock-comment-face on low color terminals
20095 using a dark background color (bug#4221).
20096
20097 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20098
20099 * dired.el (dired-insert-set-properties): Make the doc string
20100 reflect what it does now (bug#5325).
20101
20102 * simple.el (blink-matching-open): Say that we were unable to find
20103 the match within the limit, if we're limited (bug#5122).
20104
20105 * international/mule-cmds.el (prefer-coding-system): Add an
20106 example (bug#4869).
20107
20108 * progmodes/etags.el (tags-search): Document `file-list-form'
20109 (bug#4731).
20110
20111 2011-07-13 Lawrence Mitchell <wence@gmx.li>
20112
20113 * net/browse-url.el (browse-url-default-browser)
20114 (browse-url-browser-function): Make the default browser choice a
20115 bit more logical (bug#4300). Also clean up the doc string.
20116
20117 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
20118
20119 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
20120 binary endings (bug#4440).
20121
20122 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20123
20124 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
20125 which can be pretty annoying (bug#8971).
20126
20127 * jka-compr.el (jka-compr-verbose): New variable, and use
20128 throughout (bug#8971).
20129
20130 * info.el (Info-find-file): Fall back on the installation
20131 directory if we can't find the info node anywhere else.
20132
20133 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
20134
20135 * vc/vc.el (vc-revert-file):
20136 Don't set file time-stamp in the past. (Bug#5181)
20137
20138 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20139
20140 * files.el (after-find-file): Give a better error message when
20141 trying to find a symlink that points to a file that doesn't exist
20142 (bug#4398).
20143
20144 * progmodes/cc-vars.el: Remove (probably) misleading comment
20145 (bug#4396).
20146
20147 2011-07-12 Johan Bockgård <bojohan@gnu.org>
20148
20149 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
20150
20151 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
20152
20153 * mouse-sel.el: Hack restoring functionality, while keeping
20154 compatibility with 2010-07-03 changes to mouse selection.
20155 (mouse-sel-primary-overlay): New var.
20156 (mouse-sel-selection-alist): Use it.
20157 (mouse-sel-mode): Doc fix; remove points that are default features
20158 of mouse.el.
20159
20160 2011-07-12 Johan Bockgård <bojohan@gnu.org>
20161
20162 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20163 Fix previous fix (bug#2490).
20164
20165 2011-07-12 Roland Winkler <winkler@gnu.org>
20166
20167 * textmodes/bibtex.el (bibtex-initialize):
20168 Use pop-to-buffer-same-window.
20169 (bibtex-search-entries): Fix interactive call.
20170
20171 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20172
20173 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20174 Fontise bytecomp Error lines more correctly (bug#2490).
20175 Fix suggested by Johan Bockgård.
20176
20177 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
20178
20179 * dired-x.el (dired-guess-default): Use `delete-dups'.
20180
20181 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
20182
20183 * dired.el (dired-mark-prompt):
20184 * dired-aux.el (dired-read-shell-command): Doc fix.
20185
20186 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20187
20188 * mail/sendmail.el (sendmail-query-once):
20189 Use `customize-save-variable' unconditionally, now that it works under
20190 emacs -Q.
20191
20192 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20193
20194 * cus-edit.el (custom-file): Take an optional no-error variable.
20195 (customize-save-variable): Set the variable, and give a warning if
20196 running under "emacs -q".
20197
20198 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
20199
20200 * loadhist.el (unload-feature-special-hooks):
20201 Add `auto-coding-functions', `fill-nobreak-predicate' and
20202 `find-directory-functions' (bug#5327).
20203
20204 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20205
20206 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
20207
20208 * cus-edit.el (custom-guess-name-alist): -alist variables should
20209 use the `alist' type (bug#3120). Suggested by Drew Adams.
20210
20211 * printing.el: Add documentation to all the `pr-toggle-' commands.
20212
20213 2011-07-11 Leo Liu <sdl.web@gmail.com>
20214
20215 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
20216 backends where it makes sense (bug#2623).
20217
20218 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20219
20220 * dired-x.el (dired-guess-default): Remove duplicate shell command
20221 entries (bug#2028).
20222 (dired-guess-default): Fix grammar in doc string (bug#2028).
20223 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
20224
20225 * subr.el (remove-duplicates): New conveniency function.
20226
20227 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
20228
20229 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
20230 (bug#1526).
20231
20232 2011-07-10 Martin Rudalics <rudalics@gmx.at>
20233
20234 * window.el (display-buffer-normalize-default): Don't invert
20235 meaning of even-window-heights. Reported by Eli Zaretskii
20236 <eliz@gnu.org>.
20237
20238 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
20239
20240 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
20241
20242 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
20243
20244 * window.el (display-buffer): Fix arguments to
20245 display-buffer-reuse-window in last change.
20246
20247 * faces.el (link): Use a less saturated blue on light backgrounds.
20248
20249 * startup.el (fancy-startup-text, fancy-about-text)
20250 (fancy-startup-tail): Use font-lock faces, for background safety.
20251
20252 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
20253
20254 * emulation/viper-cmd.el (viper-change-state-to-vi):
20255 Limit triggering of abbrev expansion (Bug#9038).
20256
20257 2011-07-09 Martin Rudalics <rudalics@gmx.at>
20258
20259 * window.el (display-buffer-default-specifiers): Remove.
20260 (display-buffer-macro-specifiers): Remove default specifiers.
20261 (display-buffer-alist): Default to nil.
20262 (display-buffer-reuse-window): New optional argument other-window.
20263 (display-buffer-pop-up-window): Allow splitting internal
20264 windows. Check whether a live window was created.
20265 (display-buffer-other-window-means-other-frame)
20266 (display-buffer-normalize-arguments): Rename to
20267 display-buffer-normalize-argument and rewrite. Set the
20268 other-window specifier.
20269 (display-buffer-normalize-special): New function.
20270 (display-buffer-normalize-options): Rename to
20271 display-buffer-normalize-default and rewrite.
20272 (display-buffer-normalize-options-inhibit): Remove.
20273 (display-buffer-normalize-specifiers): Rewrite.
20274 (display-buffer): Process other-window specifier and call
20275 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
20276 more faithfully.
20277 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
20278 (display-buffer-alist-set): Don't handle 'unset default values.
20279 (display-buffer-in-window, display-buffer-alist-set):
20280 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
20281 <tassilo@member.fsf.org>.
20282
20283 2011-07-09 Leo Liu <sdl.web@gmail.com>
20284
20285 * register.el (insert-register): Restore accidental change on
20286 2011-06-26. (Bug#9028)
20287
20288 2011-07-09 Glenn Morris <rgm@gnu.org>
20289
20290 * subr.el (remq): Handle the empty list. (Bug#9024)
20291
20292 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
20293
20294 * mail/sendmail.el (send-mail-function): No longer delay custom
20295 initialization.
20296 * custom.el (custom-initialize-delay): Doc fix.
20297
20298 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
20299
20300 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
20301
20302 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
20303
20304 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
20305 human-friendly prompt.
20306
20307 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
20308
20309 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
20310 provided by a particular plugin.
20311
20312 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
20313
20314 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
20315 save customizations (with "emacs -Q"), just set the variable
20316 instead of erroring out.
20317
20318 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20319
20320 2011-07-08 Juri Linkov <juri@jurta.org>
20321
20322 * arc-mode.el (archive-zip-expunge, archive-zip-update)
20323 (archive-zip-update-case): Use 7z if found by `executable-find'.
20324 The order of searching the available programs is the same as in
20325 `archive-zip-extract' (bug#8968).
20326
20327 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20328
20329 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
20330 (menu-bar-options-menu): Tweak descriptions.
20331
20332 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
20333
20334 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
20335 menu items into verb phrases (bug#1421). Also refill to fit under
20336 80 columns.
20337
20338 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20339
20340 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
20341 (Info-read-node-name): Doc fix (Bug#1084).
20342
20343 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
20344 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
20345 (end-of-sexp, beginning-of-sexp)
20346 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
20347 (forward-symbol, forward-same-syntax, word-at-point)
20348 (sentence-at-point): Doc fix (Bug#1144).
20349
20350 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
20351
20352 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
20353 should cover it (bug#1281).
20354
20355 * cus-edit.el (custom-show): Mark as obsolete.
20356
20357 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
20358 negotiation fails, then possibly try again with a non-encrypted
20359 connection (bug#9017).
20360
20361 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
20362 be used.
20363
20364 2011-07-07 Richard Stallman <rms@gnu.org>
20365
20366 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
20367 property, and handle its changed format.
20368 Look for the correct line number.
20369 Use file's line contents (but not past first =) to find
20370 correct line in message.
20371
20372 2011-07-07 Kenichi Handa <handa@m17n.org>
20373
20374 * international/characters.el (build-unicode-category-table):
20375 Delete it.
20376 (unicode-category-table): Set it by unicode-property-table-internal.
20377
20378 * international/mule-cmds.el (char-code-property-alist): Move to
20379 to src/chartab.c.
20380 (get-char-code-property): Call unicode-property-table-internal to
20381 load a file. Call get-unicode-property-internal where necessary.
20382 (put-char-code-property): Call unicode-property-table-internal to
20383 load a file. Call put-unicode-property-internal where necessary.
20384 put-unicode-property-internal where necessary.
20385 (char-code-property-description):
20386 Call unicode-property-table-internal to load a file.
20387
20388 * international/charprop.el:
20389 * international/uni-bidi.el:
20390 * international/uni-category.el:
20391 * international/uni-combining.el:
20392 * international/uni-comment.el:
20393 * international/uni-decimal.el:
20394 * international/uni-decomposition.el:
20395 * international/uni-digit.el:
20396 * international/uni-lowercase.el:
20397 * international/uni-mirrored.el:
20398 * international/uni-name.el:
20399 * international/uni-numeric.el:
20400 * international/uni-old-name.el:
20401 * international/uni-titlecase.el:
20402 * international/uni-uppercase.el: Regenerate.
20403
20404 * loadup.el: Load international/charprop.el before
20405 international/characters.
20406
20407 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20408
20409 * window.el (next-buffer, previous-buffer): Signal an error if
20410 called from a minibuffer window.
20411
20412 * bindings.el: Revert 2011-07-04 change.
20413
20414 2011-07-06 Richard Stallman <rms@gnu.org>
20415
20416 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
20417 (rmail-mime-insert-bulk, rmail-mime-insert-text):
20418 Treat markers like ints.
20419 (rmail-mime-entity): Doc fix.
20420
20421 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
20422
20423 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
20424 defcustom again for backwards compatibility.
20425
20426 * simple.el (shell-command-on-region): Fill.
20427
20428 * dired-aux.el (dired-kill-line): Add a doc string.
20429
20430 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
20431 to "\\sw\\|\\s_" (bug#358).
20432
20433 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
20434 (dired-unmark-backward): Ditto.
20435 (dired-flag-backup-files): Ditto.
20436
20437 * dired-x.el (dired-mark-sexp): Ditto.
20438
20439 2011-07-06 Richard Stallman <rms@gnu.org>
20440
20441 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
20442 (rmail-mime-entity): New arg TRUNCATED.
20443 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
20444 New functions.
20445 (rmail-mime-save): Warn if entity is truncated.
20446 (rmail-mime-toggle-hidden): Likewise, for showing.
20447 (rmail-mime-process-multipart): Record when an entity is truncated.
20448
20449 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
20450 if ENTITY is a string.
20451
20452 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
20453
20454 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
20455 of faces when `M-C-x'-ing their definitions (bug#8378).
20456 Also clean up the code slightly.
20457
20458 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
20459 because that makes the colors go away.
20460
20461 * mail/sendmail.el (send-mail-function): Change the default to
20462 `sendmail-query-once'.
20463 (sendmail-query-once): Add an autoload cookie.
20464
20465 * net/network-stream.el (network-stream-open-starttls): Try using
20466 a plain connection even if the server offered STARTTLS, and we
20467 kinda wanted to use it, if Emacs doesn't have any STARTTLS
20468 capability. This should make smtpmail.el work in slightly more
20469 configurations.
20470
20471 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
20472
20473 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20474 New defun.
20475 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
20476
20477 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
20478
20479 * progmodes/sql.el: Version 3.0
20480 (sql-product-alist): Add product :completion-object,
20481 :completion-column, and :statement attributes.
20482 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
20483 (sql-mode-syntax-table): Mark all punctuation.
20484 (sql-font-lock-keywords-builder): Temporarily remove fallback on
20485 ansi keywords.
20486 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
20487 (sql-mode-oracle-font-lock-keywords): Improve.
20488 (sql-oracle-show-reserved-words): New function for development.
20489 (sql-product-font-lock): Simplify for source code buffers.
20490 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
20491 New functions.
20492 (sql-highlight-product): Set product specific syntax table.
20493 (sql-mode-map): Add statement movement functions.
20494 (sql-ansi-statement-starters, sql-oracle-statement-starters):
20495 New variable.
20496 (sql-statement-regexp, sql-beginning-of-statement)
20497 (sql-end-of-statement, sql-signum): New functions.
20498 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
20499 (sql-show-sqli-buffer): Bug fix.
20500 (sql-interactive-mode): Store connection data as buffer local.
20501 (sql-connect): Add NEW-NAME parameter. Redesign interaction
20502 with sql-interactive-mode.
20503 (sql-save-connection): Save buffer local settings.
20504 (sql-connection-menu-filter): Change menu entry name.
20505 (sql-product-interactive): Bug fix.
20506 (sql-preoutput-hold): New variable.
20507 (sql-interactive-remove-continuation-prompt): Bug fixes.
20508 (sql-debug-redirect): New variable.
20509 (sql-str-literal): New function.
20510 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
20511 Redesign.
20512 (sql-oracle-save-settings, sql-oracle-restore-settings)
20513 (sql-oracle-list-all, sql-oracle-list-table): New functions.
20514 (sql-completion-object, sql-completion-column)
20515 (sql-completion-sqlbuf): New variables.
20516 (sql-build-completions-1, sql-build-completions)
20517 (sql-try-completion): New functions.
20518 (sql-read-table-name): Use them.
20519 (sql-contains-names): New buffer local variable.
20520 (sql-list-all, sql-list-table): Use it.
20521 (sql-oracle-completion-types): New variable.
20522 (sql-oracle-completion-object, sql-sqlite-completion-object)
20523 (sql-postgres-completion-object): New functions.
20524
20525 2011-07-06 Glenn Morris <rgm@gnu.org>
20526
20527 * window.el (pop-to-buffer): Doc fix.
20528
20529 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
20530
20531 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
20532
20533 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
20534
20535 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
20536
20537 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
20538
20539 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
20540
20541 * button.el (button): Inherit from link face. Suggested by Dan
20542 Nicolaescu.
20543
20544 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20545
20546 * progmodes/gdb-mi.el: Fit in 80 columns.
20547 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
20548 switch-to-buffer.
20549
20550 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
20551 if imenu is simply not configured (bug#8941).
20552
20553 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
20554
20555 * allout.el (allout-post-undo-hook): New allout outline-change
20556 event hook to signal undo activity.
20557 (allout-post-command-business): Run allout-post-undo-hook if an
20558 undo just occurred.
20559 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
20560 * allout-widgets.el (allout-widgets-after-undo-function):
20561 Ensure the integrity of the current item's decoration after it has been
20562 in the vicinity of an undo.
20563 (allout-widgets-mode): Include allout-widgets-after-undo-function
20564 on the new allout-post-undo-hook.
20565
20566 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20567
20568 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
20569 Let define-derived-mode define it.
20570 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
20571 cycles of abbrev-table inheritance (bug#8998).
20572
20573 2011-07-05 Roland Winkler <winkler@gnu.org>
20574
20575 * textmodes/bibtex.el: Add support for biblatex.
20576 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
20577 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
20578 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
20579 (bibtex-entry-alist, bibtex-field-alist): New variables.
20580 (bibtex-entry-field-alist): Obsolete alias for
20581 bibtex-BibTeX-entry-alist.
20582 (bibtex-entry-alist, bibtex-field-alist): New widgets.
20583 (bibtex-set-dialect): New command.
20584 (bibtex-entry-type, bibtex-entry-head)
20585 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
20586 Bind via bibtex-set-dialect.
20587 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
20588 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
20589 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
20590 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
20591 Define via bibtex-set-dialect.
20592 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
20593 Obey bibtex-no-opt-remove-re.
20594 (bibtex-vec-push, bibtex-vec-incr): New functions.
20595 (bibtex-format-entry, bibtex-field-list)
20596 (bibtex-print-help-message, bibtex-validate)
20597 (bibtex-search-entries): Use new format of bibtex-entry-alist.
20598
20599 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20600
20601 * progmodes/compile.el (compilation-goto-locus):
20602 * net/tramp-cmds.el (tramp-append-tramp-buffers):
20603 * bs.el (bs-cycle-next, bs-cycle-previous):
20604 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
20605 * bindings.el (mode-line-other-buffer):
20606 * autoinsert.el (auto-insert):
20607 * arc-mode.el (archive-extract):
20608 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
20609
20610 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
20611
20612 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
20613 Fix check of `emacs-lock-unlockable-modes'.
20614 Coerce true values of `emacs-lock--try-unlocking' to t.
20615
20616 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
20617
20618 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
20619 * emacs-lock.el: New file.
20620
20621 2011-07-05 Julien Danjou <julien@danjou.info>
20622
20623 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
20624 than `boundp' to check if face is set.
20625
20626 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
20627
20628 * register.el (registerv-make):
20629 * window.el (window-min-height): Fix typos in docstrings.
20630
20631 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
20632
20633 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
20634 Update doc string.
20635
20636 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
20637
20638 * server.el (server-execute): Catch quit and call
20639 `server-return-error' to pass the error back to emacsclient and
20640 close the connection (bug#8942).
20641
20642 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
20643
20644 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
20645 insecure exception for current topic. Also note that auto-saves
20646 are handled differently.
20647
20648 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
20649 State variables for tracking auto-save inhibition situation.
20650
20651 (allout-write-contents-hook-handler): Rename from
20652 'allout-write-file-hook-handler', and describe how it depends on
20653 write-contents-functions sensitivity to non-nil value to prevent
20654 file write.
20655
20656 (allout-auto-save-hook-handler): Remove. auto-save does not check
20657 this in individual buffers, only in the starting buffer, so this
20658 is not the right way for us to inhibit auto-save in a buffer
20659 according to its condition.
20660
20661 (allout-mode): Use new allout-write-contents-hook-handler, and
20662 only with write-contents-functions. Remove auto-save provisions -
20663 they're implemented elsewhere.
20664
20665 (allout-before-change-handler): If undo is in progress, note that
20666 for attention of allout-post-command-business.
20667
20668 (allout-post-command-business): If the command we're following was
20669 an undo, check for change in the status of encrypted items and
20670 adjust auto-save inhibitions accordingly.
20671
20672 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
20673 according to whether there are or aren't any plain-text topics
20674 pending encryption.
20675
20676 (allout-inhibit-auto-save-info-for-decryption):
20677 Adjust buffer-saved-size and some allout state to inhibit auto-saves
20678 if there are plain-text topics pending encryption.
20679
20680 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
20681 buffer-saved-size and some allout state to not inhibit auto-saves
20682 if there are no longer any plain-text topics pending encryption.
20683
20684 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
20685 No longer provide for exemption of the current topic.
20686
20687 2011-07-04 Juri Linkov <juri@jurta.org>
20688
20689 Add 7z operations to delete and save changed members (bug#8968).
20690 * arc-mode.el (archive-7z-expunge, archive-7z-update):
20691 New defcustoms.
20692 (archive-7z-write-file-member): New function.
20693 (archive-7z-summarize): Fix the number of dashes in the
20694 listing output.
20695
20696 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
20697
20698 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
20699 (bug#8958).
20700
20701 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
20702
20703 * bindings.el: Ignore next-buffer and previous-buffer in
20704 minibuffer-local-map.
20705
20706 * font-lock.el (font-lock-builtin-face): Change light background
20707 color to dark slate blue (Bug#6693).
20708
20709 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
20710
20711 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
20712
20713 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
20714
20715 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
20716 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20717 Add switch-to-buffer.
20718
20719 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
20720
20721 * isearch.el (isearch-search-fun-function): Clarify further the
20722 meaning of the function returned.
20723
20724 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
20725
20726 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
20727
20728 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
20729 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
20730 Use it.
20731 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
20732 `tramp-default-remote-path' does not exist.
20733 (tramp-send-command-and-read): New optional argument NOERROR.
20734 (tramp-open-connection-setup-interactive-shell)
20735 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
20736 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
20737 (tramp-process-sentinel): Flush also process' connection property.
20738 (tramp-sh-handle-start-file-process): Do not set process
20739 sentinel. It is done now ...
20740 (tramp-maybe-open-connection): ... here. (Bug#8929)
20741
20742 2011-07-04 MON KEY <monkey@sandpframing.com>
20743
20744 * play/animate.el (animate-string): Doc fixes and allow changing
20745 the buffer name (bug#5417).
20746
20747 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
20748
20749 * play/animate.el (animation-buffer-name): Rename from *animate*.
20750
20751 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
20752
20753 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
20754 This is simpler and helps future-proof the code.
20755 (timer-until): Use time-subtract and float-time.
20756 (timer--time-less-p): Use time-less-p.
20757
20758 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
20759
20760 * type-break.el (timep): Use the value of `float-time' to avoid a
20761 byte-compiler warning.
20762
20763 * server.el (server-eval-and-print): Return any result, even nil.
20764
20765 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
20766
20767 * type-break.el: Accept time formats that the builtins accept.
20768 (timep, type-break-time-difference): Accept any format that
20769 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
20770 This is simpler and helps future-proof the code.
20771 (type-break-time-difference): Round rather than ignoring
20772 subseconds components.
20773
20774 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20775
20776 * info.el (Info-apropos-matches): Make non-interactive, since it
20777 doesn't seem to do anything useful as a command (bug#8829).
20778
20779 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
20780
20781 * frame.el (frame-background-mode, frame-set-background-mode):
20782 Move from faces.el.
20783 (frame-default-terminal-background): New function.
20784
20785 * custom.el (custom-push-theme): Don't record faces in `changed'
20786 theme; this doesn't work correctly for per-frame face settings.
20787 (disable-theme): Use face-set-after-frame-default to reset faces.
20788 (custom--frame-color-default): New function.
20789
20790 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20791
20792 * dired.el (dired-flagging-regexp): Remove unused variable
20793 (bug#8769).
20794
20795 2011-03-29 Kevin Ryde <user42@zip.com.au>
20796
20797 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20798 `perl-Test2' extend to match possible "fail #N" rep count
20799 (bug#8377).
20800
20801 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20802
20803 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
20804 `smtpmail-via-smtp' now returns the error instead of nil.
20805
20806 * isearch.el (isearch-search-fun-function): Clarify the doc string
20807 (bug#8101).
20808
20809 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
20810
20811 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
20812 unnecessary spaces (bug#8987).
20813
20814 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20815
20816 * net/network-stream.el (open-network-stream): Use the
20817 :end-of-capability command thoughout.
20818
20819 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
20820
20821 * net/network-stream.el (open-network-stream): Add the
20822 :end-of-capability command parameter, used by pop3.el.
20823
20824 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20825
20826 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
20827
20828 * fringe.el (fringe-query-style): Remove redundant text " (type ?
20829 for list)" (bug#6475).
20830
20831 * files.el (file-expand-wildcards): Ignore non-readable
20832 sub-directories while trying to find matches instead of signaling
20833 an error (bug#6297).
20834
20835 * man.el (Man-reference-regexp): Allow matching possible
20836 word-wrapped references (bug#6289).
20837
20838 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
20839 for consistency with the other vc buffers (bug#6197).
20840 (vc-checkin): Ditto.
20841
20842 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
20843
20844 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
20845
20846 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
20847
20848 * custom.el (defcustom): Clarify that :set is only used in the
20849 Customize user interface (bug#6089).
20850
20851 * progmodes/flymake.el (flymake-mode): If the buffer isn't
20852 associated with a file, refuse to run instead of erroring out
20853 (bug#6084).
20854
20855 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
20856 the doc string, since it appears that using `fill-column' always
20857 controls the width (bug#7845).
20858
20859 * simple.el (shell-command-on-region): Say where the error output
20860 went if `shell-command-default-error-buffer' is set (bug#6857).
20861
20862 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
20863
20864 * allout.el (allout-yank-processing): Adjust cursor position for
20865 backwards-deleted space.
20866
20867 (allout-rebullet-heading): Register changes with
20868 allout-exposure-changed-hook, so the modified topic is properly
20869 decorated.
20870
20871 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
20872
20873 * minibuffer.el (completion-in-region): Document PREDICATE
20874 (bug#7136).
20875
20876 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
20877 of keyword/argument pairs (bug#6904).
20878
20879 * replace.el (multi-occur):
20880 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
20881
20882 2011-07-02 Drew Adams <drew.adams@oracle.com>
20883
20884 * dired.el (dired-mark-if): Make the message about whether it's
20885 marking or unmarking clearer (bug#8523).
20886
20887 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
20888
20889 * disp-table.el (display-table-print-array): New function.
20890 (describe-display-table): Use it to print the vectors more pretty
20891 (Bug#8859).
20892
20893 2011-07-02 Martin Rudalics <rudalics@gmx.at>
20894
20895 * window.el (window-state-get-1): Don't assign clone numbers.
20896 Add clone-of item to list of window parameters.
20897 (window-state-put-2): Don't process clone numbers.
20898 (display-buffer-alist): Fix doc-string.
20899
20900 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
20901
20902 * subr.el (remq): Don't allocate if it's not needed.
20903 (keymap--menu-item-binding, keymap--menu-item-with-binding)
20904 (keymap--merge-bindings): New functions.
20905 (keymap-canonicalize): Use them to refine the canonicalization.
20906 * minibuffer.el (minibuffer-local-completion-map)
20907 (minibuffer-local-must-match-map): Move initialization from C.
20908 (minibuffer-local-filename-completion-map): Move initialization from C;
20909 don't inherit from anything here.
20910 (minibuffer-local-filename-must-match-map): Make obsolete.
20911 (completing-read-default): Use make-composed-keymap to combine
20912 minibuffer-local-filename-completion-map with either
20913 minibuffer-local-must-match-map or
20914 minibuffer-local-filename-completion-map.
20915
20916 2011-07-01 Glenn Morris <rgm@gnu.org>
20917
20918 * type-break.el (type-break-time-sum): Use dolist.
20919
20920 * textmodes/flyspell.el (flyspell-word-search-backward):
20921 Replace CL function.
20922
20923 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
20924
20925 * mouse.el (mouse--strip-first-event): New function.
20926 (function-key-map): Use it to map fringe clicks to normal clicks
20927 by default.
20928
20929 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
20930 (vc-bzr-revision-completion-table): Add support for annotate and date.
20931
20932 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
20933 inherit from parent.
20934
20935 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
20936
20937 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
20938 (dired-show-file-type): Doc fixup (bug#8818).
20939
20940 * dired.el (dired-mode): Fix up the doc string as suggested by
20941 Drew Adams (bug#8817).
20942
20943 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
20944 cookie, since the manual says that it should be possible to add
20945 this function to `find-file-hook' (bug#8709).
20946
20947 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
20948
20949 * progmodes/cfengine.el: Moved all cfengine3.el functionality
20950 here. Noted Ted Zlatanov as the maintainer.
20951 (cfengine-common-settings, cfengine-common-syntax): New functions
20952 to set up common things between `cfengine-mode' and
20953 `cfengine3-mode'.
20954 (cfengine3-mode): New mode.
20955 (cfengine3-defuns cfengine3-defuns-regex
20956 (cfengine3-class-selector-regex cfengine3-category-regex)
20957 (cfengine3-vartypes cfengine3-font-lock-keywords)
20958 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
20959 (cfengine3-indent-line): Add from cfengine3.el.
20960
20961 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
20962
20963 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
20964
20965 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
20966
20967 2011-07-01 Martin Rudalics <rudalics@gmx.at>
20968
20969 * window.el (same-window-buffer-names, same-window-regexps)
20970 (same-window-p, special-display-frame-alist)
20971 (special-display-popup-frame, special-display-function)
20972 (special-display-buffer-names, special-display-regexps)
20973 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
20974 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
20975 (split-window-preferred-function, split-height-threshold)
20976 (split-width-threshold, even-window-heights)
20977 (display-buffer-mark-dedicated, window-splittable-p)
20978 (split-window-sensibly, window-safely-shrinkable-p):
20979 Un-obsolete.
20980 (display-buffer): Don't spread args with function specifier
20981 because special-display-popup-frame won't like it.
20982
20983 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
20984
20985 Time-stamp simplifications and fixes.
20986 These improve accuracy slightly, and future-proof the code
20987 against some potential changes to current-time format.
20988
20989 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
20990 by using time-since and float-time.
20991
20992 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
20993 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
20994 + NNN microseconds".
20995
20996 * type-break.el (type-break-time-sum): Rewrite using time-add.
20997
20998 * play/hanoi.el (hanoi-current-time-float): Remove.
20999 All uses replaced by float-time.
21000
21001 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
21002 This yields a more-accurate answer.
21003 (rng-time-to-float): Remove; no longer needed.
21004
21005 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
21006
21007 * calendar/timeclock.el (timeclock-seconds-to-time):
21008 Defalias to seconds-to-time, since they're the same thing.
21009
21010 * emacs-lisp/elp.el (elp-elapsed-time):
21011 * emacs-lisp/benchmark.el (benchmark-elapse):
21012 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
21013
21014 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21015
21016 * window.el (bury-buffer): Don't iconify the only frame.
21017 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
21018 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
21019
21020 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
21021
21022 * eshell/em-smart.el (eshell-smart-display-navigate-list):
21023 Add mouse-yank-primary.
21024
21025 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
21026
21027 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
21028
21029 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21030
21031 * emacs-lisp/find-func.el (find-library--load-name): New fun.
21032 (find-library-name): Use it to find relative load names when provided
21033 absolute file name (bug#8803).
21034
21035 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
21036
21037 * textmodes/flyspell.el (flyspell-word): Consider words that
21038 differ only in case as potential doublons (bug#5687).
21039
21040 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
21041 Remove two rather uninteresting debugging-like messages to make
21042 debbugs.el more silent.
21043
21044 * comint.el (comint-password-prompt-regexp): Accept "Response" as
21045 a password-like phrase.
21046
21047 2011-06-30 Masatake YAMATO <yamato@redhat.com>
21048
21049 * progmodes/cc-guess.el: New file.
21050
21051 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
21052
21053 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
21054 derived from `c-basic-common-init'.
21055
21056 * progmodes/cc-mode.el (top-level): Require cc-guess.
21057 (c-basic-common-init): Use `cc-choose-style-for-mode'.
21058
21059 2011-06-30 Lawrence Mitchell <wence@gmx.li>
21060
21061 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
21062
21063 2011-06-30 Alan Mackenzie <acm@muc.de>
21064
21065 * progmodes/cc-engine.el (c-guess-continued-construct):
21066 Correct the handling of template-args-cont, particularly for when font
21067 lock is disabled. Name this case as "CASE G".
21068
21069 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
21070
21071 * allout.el (allout-yank-processing): Fix injection of extra space
21072 between bullet and non-whitespace character in first topic when
21073 pasting, ensuring that the actual spacing in the pasted topic
21074 following the bullet char is preserved. This extra space was
21075 causing pasted encrypted topics to get a decrypted status even
21076 when the content was actually still encrypted. Now the decryption
21077 status from before the paste is preserved.
21078
21079 (allout-flag-region): Set all allout overlays so they evaporate
21080 when reduced to zero length (evanescent), to prevent overlay
21081 leakage.
21082
21083 2011-06-30 Glenn Morris <rgm@gnu.org>
21084
21085 * w32-fns.el (w32-charset-info-alist): Declare.
21086
21087 * find-dired.el (find-grep-options): Simplify.
21088
21089 * term/ns-win.el (ns-set-resource): Declare.
21090
21091 * ses.el (row, col): Declare dynamic variables honestly.
21092
21093 * textmodes/reftex-parse.el (index-tags): Declare.
21094
21095 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
21096
21097 * cus-edit.el (customize-push-and-save): New function.
21098
21099 * files.el (hack-local-variables-confirm): Use it.
21100
21101 * custom.el (load-theme): New arg NO-CONFIRM.
21102 Use customize-push-and-save (Bug#8720).
21103 (custom-enabled-themes): Doc fix.
21104
21105 * cus-theme.el (customize-create-theme)
21106 (custom-theme-merge-theme): Callers to load-theme changed.
21107
21108 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
21109
21110 * thingatpt.el (thing-at-point-short-url-regexp): Require that
21111 short URLs have at least one dot in them (bug #7614).
21112
21113 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
21114 nil, because using a pty is apparently too slow (bug #895).
21115
21116 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
21117
21118 * mail/sendmail.el (sendmail-query-once): New function.
21119 (sendmail-query-once-function): New variable.
21120
21121 2011-06-29 Glenn Morris <rgm@gnu.org>
21122
21123 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
21124
21125 * ses.el (top-level): Require cl when compiling.
21126 (ses-set-localvars): Fix error statement.
21127 Call it at compile time to silence a storm of warnings.
21128
21129 2011-06-29 Martin Rudalics <rudalics@gmx.at>
21130
21131 * window.el (normalize-live-buffer): Rename to
21132 window-normalize-buffer.
21133 (normalize-live-frame): Rename to window-normalize-frame.
21134 (normalize-any-window): Rename to window-normalize-any-window.
21135 (normalize-live-window): Rename to window-normalize-live-window.
21136 (make-window-atom): Rename to window-make-atom.
21137 (window-resize-reset): Rename to window--resize-reset.
21138 (window-resize-reset-1): Rename to window--resize-reset-1.
21139 (resize-mini-window): Rename to window--resize-mini-window.
21140 (resize-subwindows-skip-p): Rename to
21141 window--resize-subwindows-skip-p.
21142 (resize-subwindows-normal): Rename to
21143 window--resize-subwindows-normal.
21144 (resize-subwindows): Rename to window--resize-subwindows.
21145 (resize-other-windows): Rename to window--resize-siblings.
21146 (resize-this-window): Rename to window--resize-this-window.
21147 (resize-root-window): Rename to window--resize-root-window.
21148 (resize-root-window-vertically): Rename to
21149 window--resize-root-window-vertically.
21150 (normalize-buffer-to-display): Rename to
21151 window-normalize-buffer-to-display.
21152 (normalize-buffer-to-switch-to): Rename to
21153 window-normalize-buffer-to-switch-to.
21154 Correspondingly update all callers of the functions listed
21155 above.
21156 (display-buffer-alist, display-buffer-normalize-arguments)
21157 (display-buffer-normalize-options, display-buffer)
21158 (display-buffer-alist-set): Use "function" instead of
21159 "fun-with-args".
21160
21161 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
21162
21163 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
21164 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
21165 debbugs.gnu.org. Mention acknowledgment email.
21166
21167 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
21168
21169 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
21170 buffer multibyteness, since it shouldn't matter.
21171
21172 2011-06-28 Martin Rudalics <rudalics@gmx.at>
21173
21174 * window.el (display-buffer-in-side-window): Handle dedicated
21175 windows as in display-buffer-reuse-window.
21176 (display-buffer-normalize-alist): Use value of override
21177 specifier.
21178 (display-buffer-normalize-specifiers): Use value of
21179 other-window-means-other-frame specifier.
21180 (display-buffer-alist): Rewrite some texts in widgets.
21181 (display-buffer): Spread arguments when calling function
21182 specified by fun-with-args.
21183
21184 2011-06-28 Deniz Dogan <deniz@dogan.se>
21185
21186 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
21187 Unnest `let'.
21188
21189 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
21190 selectors (Bug#5732).
21191 (css-proprietary-nmstart-re): Use `regexp-opt'.
21192
21193 2011-06-27 Jari Aalto <jari.aalto@cante.net>
21194
21195 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
21196 (eshell-ls-date-format): New defcustom.
21197 (eshell-ls-file): Use it.
21198
21199 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
21200
21201 * help-fns.el (describe-variable): Fix message for terminal-local vars.
21202
21203 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
21204
21205 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
21206 (ange-ftp-make-tmp-name): New arg.
21207 (ange-ftp-file-local-copy): Use it.
21208
21209 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
21210
21211 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
21212 no-conversion (Bug#8870).
21213
21214 2011-06-27 Martin Rudalics <rudalics@gmx.at>
21215
21216 * window.el (window-right, window-left, window-child)
21217 (window-child-count, window-last-child)
21218 (window-iso-combination-p, walk-window-tree-1)
21219 (window-atom-check-1, window-tree-1, delete-window)
21220 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
21221 new naming conventions - window-vchild, window-hchild,
21222 window-next and window-prev are now called window-top-child,
21223 window-left-child, window-next-sibling and window-prev-sibling
21224 respectively.
21225 (resize-window-reset): Rename to window-resize-reset.
21226 (resize-window-reset-1): Rename to window-resize-reset-1.
21227 (resize-window): Rename to window-resize.
21228 (window-min-height, window-min-width)
21229 (resize-mini-window, resize-this-window, resize-root-window)
21230 (resize-root-window-vertically, adjust-window-trailing-edge)
21231 (enlarge-window, shrink-window, maximize-window)
21232 (minimize-window, delete-window, quit-restore-window)
21233 (split-window, balance-windows, balance-windows-area-adjust)
21234 (balance-windows-area, window-state-put-2)
21235 (display-buffer-even-window-sizes, display-buffer-set-height)
21236 (display-buffer-set-width, set-window-text-height)
21237 (fit-window-to-buffer): Rename all "resize-window" prefixed
21238 calls to use the "window-resize" prefix convention.
21239 (display-buffer-alist): Fix symbol for label specifier.
21240 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
21241 corresponding specifier.
21242 Reported by Juanma Barranquero <lekktu@gmail.com>.
21243
21244 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
21245
21246 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
21247 convention.
21248 (ses-call-printer): Does not pass an empty string to formatter when the
21249 cell is empty to keep from barking printer Calc math-format-value.
21250
21251 2011-06-27 Richard Stallman <rms@gnu.org>
21252
21253 * battery.el (battery-mode-line-limit): New variable.
21254 (battery-update): Handle it.
21255
21256 * mail/rmailmm.el (rmail-mime-process-multipart):
21257 Handle truncated messages.
21258
21259 2011-06-27 Glenn Morris <rgm@gnu.org>
21260
21261 * progmodes/flymake.el (flymake-err-line-patterns):
21262 Allow for column numbers in the ant/javac pattern. (Bug#8866)
21263
21264 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
21265
21266 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
21267 (ses--clean-!, ses--clean-_): New functions.
21268 (ses-range): Add configurability of readout order, and conversion
21269 to Calc vector.
21270
21271 * ses.el (ses-repair-cell-reference-all): New function.
21272 (ses-cell-symbol): Set macro as safe, so that it can be used in
21273 formulas.
21274
21275 * ses.el: Update cycle detection algorithm.
21276 (ses-localvars): Add ses--Dijkstra-attempt-nb and
21277 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
21278 (ses-set-localvars): New function.
21279 (ses-make-cell): Add property-list as a cell element.
21280 (ses-cell-property-get-fun, ses-cell-property-get)
21281 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
21282 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
21283 New functions.
21284 (ses-cell-property-set, ses-cell-property-pop)
21285 (ses-cell-property-get-handle): New macro.
21286 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
21287 New aliases, used for code readability.
21288 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
21289 cycle detection.
21290 (ses-self-reference-early-detection): New defcustom.
21291 (ses-formula-references): Robustify against self-referring cells.
21292 (ses-mode): Use ses-set-localvars.
21293 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
21294 before lauching the update processing.
21295 (ses-initialize-Dijkstra-attempt): New function.
21296 (ses-recalculate-cell): Update for cycle detection based on
21297 Dijkstra algorithm.
21298
21299 * ses.el: Fix commenting and indenting convention.
21300
21301 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
21302
21303 * bs.el (bs-cycle-next): Complete last change.
21304
21305 2011-06-27 Drew Adams <drew.adams@oracle.com>
21306
21307 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
21308
21309 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
21310
21311 * net/network-stream.el (network-stream-open-starttls):
21312 Don't re-get capabilities unless we've reestablished connection.
21313 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
21314
21315 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
21316 to binary to possibly avoid line encoding issues on Windows (among
21317 other things).
21318
21319 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
21320
21321 * net/network-stream.el (open-network-stream): Return an :error
21322 saying what the problem was, if possible.
21323
21324 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
21325 server.
21326
21327 * net/network-stream.el (network-stream-open-starttls): If we
21328 wanted to use STARTTLS, and the server offered it, but we weren't
21329 able to because we had no STARTTLS support, then close the connection.
21330 (open-network-stream): Return an :error element, if present.
21331
21332 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
21333
21334 * hl-line.el (hl-line-sticky-flag): Doc fix.
21335 (global-hl-line-sticky-flag): New option (Bug#8323).
21336 (global-hl-line-highlight): Obey it.
21337
21338 * vc/vc.el (vc-revert-show-diff): Default to t.
21339
21340 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
21341
21342 * allout-widgets.el (allout-widgets-post-command-business):
21343 Stop decorating intermediate isearch matches. They're not being
21344 undecorated when an isearch is continued past, and isearch
21345 automatically collapses them. This leads to "widget leaks", where
21346 decorated items accumulate in collapsed areas. Lines with lots of
21347 hidden widgets can slow down cursor travel, substantially.
21348 Too much complicated machinery would be needed to ensure undecoration,
21349 so we're doing without this nicety.
21350
21351 (allout-widgets-tally-string): Don't try to do a hash-table-count
21352 of allout-widgets-tally when it's nil. This eliminates spurious "Error
21353 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
21354 *Messages* when allout-widgets-maintain-tally is t.
21355
21356 2011-06-26 Martin Rudalics <rudalics@gmx.at>
21357
21358 * window.el (display-buffer-normalize-argument): Rename to
21359 display-buffer-normalize-arguments. Handle special meaning of
21360 LABEL argument. Respect special-display-function when popping up
21361 a new frame. Fix code searching for a window showing the buffer
21362 on another frame.
21363 (display-buffer-normalize-specifiers):
21364 Call display-buffer-normalize-arguments.
21365 (display-buffer-in-window): Don't undedicate the window if its
21366 buffer remains the same.
21367 Reported by Drew Adams <drew.adams@oracle.com>.
21368 (display-buffer-alist): Add choice for same-window macro
21369 specfier.
21370 (display-buffer): Mention special meaning of LABEL argument in
21371 doc-string. Fix quoting. Don't pop up a new frame even as
21372 fallback.
21373
21374 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
21375
21376 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
21377 avoid deleting the current window in some cases (bug#8911).
21378
21379 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
21380
21381 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
21382 (Bug#8934)
21383
21384 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
21385
21386 * net/network-stream.el (network-stream-open-starttls):
21387 Use built-in TLS support if `gnutls-available-p' is true.
21388 (network-stream-open-tls): Ditto.
21389
21390 2011-06-26 Leo Liu <sdl.web@gmail.com>
21391
21392 * register.el (registerv): New struct.
21393 (registerv-make): New function.
21394 (jump-to-register, describe-register-1, insert-register):
21395 Support the jump-func, print-func and insert-func slot of a registerv
21396 struct. (Bug#8415)
21397
21398 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
21399
21400 * vc/vc.el (vc-revert-show-diff): New defcustom.
21401 (vc-diff-internal): New arg specifying diff buffer.
21402 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
21403 reuse an existing *vc-diff* buffer (Bug#8927).
21404
21405 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
21406
21407 2011-06-26 Glenn Morris <rgm@gnu.org>
21408
21409 * progmodes/f90.el (f90-critical-indent): New option.
21410 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
21411 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
21412 (f90-mode): Doc fix.
21413 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
21414 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
21415 (f90-beginning-of-block, f90-next-block, f90-indent-region)
21416 (f90-match-end): Handle block, critical.
21417
21418 2011-06-25 Glenn Morris <rgm@gnu.org>
21419
21420 * calendar/diary-lib.el (diary-included-files): Doc fix.
21421 (diary-include-files): New function, extracted from
21422 diary-include-other-diary-files and diary-mark-included-diary-files.
21423 (diary-include-other-diary-files, diary-mark-included-diary-files):
21424 Just call diary-include-files.
21425 (diary-mark-entries): Reset diary-included-files on first call.
21426
21427 * calendar/diary-lib.el (diary-mark-entries)
21428 (diary-mark-included-diary-files):
21429 Visit included diary-files in temp buffers.
21430
21431 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
21432 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
21433 (f90-start-block-re, f90-imenu-generic-expression)
21434 (f90-looking-at-program-block-start, f90-no-block-limit):
21435 Add support for submodules.
21436
21437 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
21438 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
21439
21440 2011-06-25 Eli Zaretskii <eliz@gnu.org>
21441
21442 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
21443 buffer-file-type before setting its value, to avoid disastrous
21444 global effects on decoding files for DOS/Windows systems. (Bug#8780)
21445
21446 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
21447
21448 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
21449
21450 * ses.el (ses-unload-function):
21451 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
21452
21453 * proced.el (proced-unload-function):
21454 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
21455
21456 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
21457
21458 * server.el (server-create-window-system-frame): Add parameters arg.
21459 (server-process-filter): Doc fix. Handle frame-parameters.
21460
21461 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
21462
21463 Fix bug#8730, bug#8781.
21464
21465 * loadhist.el (unload--set-major-mode): New function.
21466 (unload-feature): Use it.
21467
21468 * progmodes/python.el (python-after-info-look): Add autoload cookie.
21469 (python-unload-function): New function.
21470
21471 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
21472
21473 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
21474
21475 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
21476
21477 * net/browse-url.el (browse-url-firefox-program): Add icecat to
21478 the candidates list.
21479
21480 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
21481
21482 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
21483
21484 2011-06-23 Richard Stallman <rms@gnu.org>
21485
21486 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
21487 (rmail-variables): Set next-error-move-function.
21488 (rmail-what-message): Take argument POS.
21489 (rmail-next-error-move): New function.
21490
21491 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
21492
21493 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
21494 messages for adjacent non-terminals.
21495
21496 2011-06-23 Richard Stallman <rms@gnu.org>
21497
21498 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
21499 (rmail-show-message-1): Preserve buffer modified flag.
21500 (rmail-start-mail): Don't specify use of rmail-mail-return;
21501 that's done by mail-bury now.
21502 (rmail-mail-return): Handle arg NEWBUF.
21503
21504 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
21505
21506 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
21507 SIZE is a number.
21508
21509 2011-06-23 Martin Rudalics <rudalics@gmx.at>
21510
21511 * window.el (get-lru-window, get-mru-window)
21512 (get-largest-window): Never return a minibuffer window.
21513 (display-buffer-pop-up-window): Fix a bug that could lead to
21514 reusing the minibuffer window.
21515 (display-buffer): Pass original specifier argument to
21516 display-buffer-function instead of the normalized one.
21517 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
21518
21519 2011-06-22 Leo Liu <sdl.web@gmail.com>
21520
21521 * minibuffer.el (completing-read-function)
21522 (completing-read-default): Move from minibuf.c.
21523
21524 2011-06-22 Richard Stallman <rms@gnu.org>
21525
21526 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
21527 to Rmail even if not started by a special Rmail command.
21528
21529 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
21530 Copy the buffer currently showing just one message.
21531
21532 2011-06-22 Roland Winkler <winkler@gnu.org>
21533
21534 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
21535 (bibtex-clean-entry): First delete the old key so that a
21536 customized algorithm for generating the new key does not get
21537 confused by the old key.
21538 (bibtex-url): Obey regexp of first step.
21539 (bibtex-search-entries): Do not use add-to-list with local
21540 list-var.
21541
21542 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
21543
21544 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
21545 stored a user name, then query for the password first, instead of
21546 waiting for SMTP to give an error message and the trying again.
21547
21548 2011-06-22 Lawrence Mitchell <wence@gmx.li>
21549
21550 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
21551 BUFFER in call-process.
21552
21553 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
21554
21555 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
21556 QUIT twice.
21557 (smtpmail-try-auth-methods): Require user name and password from
21558 auth-source.
21559
21560 2011-06-22 Martin Rudalics <rudalics@gmx.at>
21561
21562 * window.el (display-buffer-default-specifiers)
21563 (display-buffer-alist): Remove entries for pop-up-frame-alist.
21564 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
21565 (split-window): Normalize SIDE argument (Bug#8916).
21566
21567 * frame.el (pop-up-frame-alist, pop-up-frame-function)
21568 (special-display-frame-alist, special-display-popup-frame):
21569 Remove duplicate declarations. These are now in window.el.
21570
21571 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
21572
21573 * mail/smtpmail.el (smtpmail-via-smtp):
21574 Set :use-starttls-if-possible so that we always use STARTTLS if the
21575 server supports it. SMTP servers that support STARTTLS commonly
21576 require it.
21577
21578 * net/network-stream.el (network-stream-open-starttls): Support
21579 upgrading to STARTTLS always, even if we don't have built-in support.
21580 (open-network-stream): Add the :always-query-capabilities keyword.
21581
21582 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
21583 upgrades with `open-network-stream', and rely solely on
21584 auth-source for all credentials. Big changes throughout the file,
21585 but in particular:
21586 (smtpmail-auth-credentials): Remove.
21587 (smtpmail-starttls-credentials): Remove.
21588 (smtpmail-via-smtp): Check for servers saying they want AUTH after
21589 MAIL FROM, too.
21590
21591 * net/network-stream.el (network-stream-open-starttls):
21592 Provide support for client certificates both for external and built-in
21593 STARTTLS.
21594 (auth-source): Require.
21595 (open-network-stream): Document the :client-certificate keyword.
21596 (network-stream-certificate): Change cert-cert to cert and
21597 cert-key to key.
21598
21599 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
21600
21601 * net/tramp-cache.el (top): Don't load the persistency file when
21602 "emacs -Q" has been called.
21603
21604 2011-06-21 Tim Harper <timcharper@gmail.com>
21605
21606 * term/ns-win.el (ns-initialize-window-system):
21607 Set application-specific `ApplePressAndHoldEnabled' system
21608 resource to NO as it is not yet supported by the NS port.
21609
21610 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
21611
21612 * misc.el (list-dynamic-libraries--refresh): Compute header here...
21613 (list-dynamic-libraries): ...not here.
21614
21615 2011-06-21 Leo Liu <sdl.web@gmail.com>
21616
21617 * subr.el (sha1): Implement sha1 using secure-hash.
21618
21619 2011-06-21 Martin Rudalics <rudalics@gmx.at>
21620
21621 * window.el (display-buffer-alist): In default value do not
21622 enforce searching a window on any but the selected frame.
21623 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
21624 (display-buffer-select-window): Remove function.
21625 (display-buffer-in-window): When a window on another frame gets
21626 reused, do not select it any more but just raise its frame if
21627 necessary (Bug#8851) and (Bug#8856).
21628 (display-buffer-normalize-options): Handle pop-up-frames related
21629 options more faithfully.
21630 (pop-to-buffer): Don't rely on `display-buffer' selecting the
21631 window if it is on another frame.
21632 (display-buffer-alist, display-buffer-default-specifiers):
21633 Don't make new frame unsplittable by default.
21634 (display-buffer-normalize-argument): Fix doc-string typo and use
21635 'same-frame-other-window instead of 'other-window when associating
21636 with display-buffer-macro-specifiers.
21637
21638 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
21639
21640 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
21641 New functions.
21642 (5x5-mode-map, 5x5-mode-menu): Bind them.
21643 (5x5-draw-grid): Tweak the solver's rendering.
21644
21645 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
21646
21647 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
21648 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
21649
21650 2011-06-21 Drew Adams <drew.adams@oracle.com>
21651
21652 * menu-bar.el: Use function variable instead of switch-to-buffer.
21653 (menu-bar-select-buffer-function): New variable.
21654 (menu-bar-update-buffers): Use it (bug#8876).
21655
21656 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
21657
21658 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
21659 variable's status.
21660
21661 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
21662
21663 * x-dnd.el (x-dnd-version-from-flags)
21664 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
21665 and long as number (Bug#8899).
21666 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
21667
21668 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
21669
21670 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
21671 (completion-try-completion, completion-all-completions): Compute the
21672 metadata argument if it's missing; make it optional (bug#8795).
21673
21674 * wid-edit.el: Use lex-bind and move towards completion-at-point.
21675 (widget-complete): Use new :completion-function property.
21676 (widget-completions-at-point): New function.
21677 (default): Use :completion-function instead of :complete.
21678 (widget-default-completions): Rename from widget-default-complete;
21679 Rewrite.
21680 (widget-string-complete, widget-file-complete, widget-color-complete):
21681 Remove functions.
21682 (file, symbol, function, variable, coding-system, color):
21683 * international/mule-cmds.el (default-input-method, charset)
21684 (language-info-custom-alist):
21685 * cus-edit.el (face): Use new property :completions.
21686
21687 * progmodes/pascal.el (pascal-completions-at-point): New function.
21688 (pascal-mode): Use it.
21689 (pascal-mode-map): Use completion-at-point.
21690 (pascal-toggle-completions): Make obsolete.
21691 (pascal-complete-word, pascal-show-completions):
21692 * progmodes/octave-mod.el (octave-complete-symbol):
21693 Redefine as obsolete alias.
21694 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
21695 Signal absence of completion info for old Octave,
21696 (inferior-octave-complete): Redefine as obsolete alias.
21697 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
21698 (meta-completions-at-point): Rename from meta-complete-symbol and
21699 adapt it for use on completion-at-point-functions.
21700 (meta-common-mode): Use it.
21701 (meta-looking-at-backward, meta-match-buffer): Remove.
21702 (meta-complete-symbol): Redefine as obsolete alias.
21703 (meta-common-mode-map): Use completion-at-point.
21704 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
21705 (makefile-mode-map): Use completion-at-point.
21706 (makefile-completions-at-point): Rename from makefile-complete and
21707 adapt it for use on completion-at-point-functions.
21708 (makefile-mode): Use it.
21709 (makefile-complete): Redefine as obsolete alias.
21710
21711 2011-06-20 Deniz Dogan <deniz@dogan.se>
21712
21713 * net/rcirc.el: Delete trailing whitespaces once and for all.
21714
21715 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
21716
21717 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
21718
21719 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
21720
21721 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
21722
21723 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
21724
21725 2011-06-19 Martin Rudalics <rudalics@gmx.at>
21726
21727 * window.el (display-buffer-other-window-means-other-frame):
21728 Call display-buffer-normalize-alist.
21729 (display-buffer-normalize-specifiers-1): Rename to
21730 display-buffer-normalize-argument. New argument other-frame.
21731 Rewrite.
21732 (display-buffer-normalize-specifiers-2): Rename to
21733 display-buffer-normalize-options.
21734 (display-buffer-normalize-alist-1): New function.
21735 (display-buffer-normalize-specifiers-3): Rename to
21736 display-buffer-normalize-alist.
21737 Call display-buffer-normalize-alist-1.
21738 (display-buffer-normalize-options-inhibit): New variable.
21739 (display-buffer-normalize-specifiers): Rewrite calling
21740 display-buffer-normalize-alist,
21741 display-buffer-normalize-argument, and
21742 display-buffer-normalize-options. Don't call the latter if
21743 display-buffer-normalize-options-inhibit is non-nil.
21744 (frame-auto-delete): New option.
21745 (window-deletable-p): Use frame-auto-delete.
21746 (window-list-no-nils, window-state-ignored-parameters)
21747 (window-state-get-1, window-state-get, window-state-put-list)
21748 (window-state-put-1, window-state-put-2, window-state-put):
21749 New functions.
21750 (display-buffer-normalize-options): Move special-display-p group
21751 after pop-up-frame group (Bug#8851) and (Bug#8856).
21752
21753 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
21754
21755 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
21756 groups (Bug#8776).
21757 (rx-submatch-n): New function.
21758 (rx): Document it.
21759
21760 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
21761 (Bug#8768).
21762
21763 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
21764
21765 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
21766
21767 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
21768 anytime existing face settings are present (Bug#8889).
21769
21770 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
21771 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
21772 Remove unused argument.
21773
21774 2011-06-18 Martin Rudalics <rudalics@gmx.at>
21775
21776 * window.el (display-buffer-default-specifiers):
21777 Remove pop-up-frame. Add pop-up-window-min-height,
21778 pop-up-window-min-width, and another reuse-window specifier
21779 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
21780 (display-buffer-normalize-specifiers-2):
21781 Handle split-height-threshold and split-width-threshold also when
21782 pop-up-windows is unset. Add a reuse-window specifier for the
21783 case popping up a new window fails.
21784 (special-display-popup-frame): Remove double quoting.
21785 (display-buffer-normalize-specifiers-1): Fix thinko.
21786
21787 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
21788
21789 * shell.el (shell-completion-vars): Set pcomplete-termination-string
21790 according to comint-completion-addsuffix.
21791
21792 * pcomplete.el: Convert to lexical binding and fix bug#8819.
21793 (pcomplete-suffix-list): Mark as obsolete.
21794 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
21795 pcomplete-seen in the closure.
21796 (pcomplete-comint-setup): Setup completion-at-point as well.
21797 (pcomplete--entries): New function.
21798 (pcomplete--env-regexp): New var.
21799 (pcomplete-entries): Rewrite to work with partial-completion and
21800 without relying on pcomplete-suffix-list.
21801 (pcomplete-pare-list): Remove, unused.
21802
21803 2011-06-17 Martin Rudalics <rudalics@gmx.at>
21804
21805 * window.el (display-buffer-alist): Set pop-up-window-min-height
21806 and pop-up-window-min-width in default value. Reported by
21807 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
21808 other-window-means-other-frame.
21809 (display-buffer-macro-specifiers): Comment out entry for
21810 other-window specifier.
21811 (display-buffer-other-window-means-other-frame): New function.
21812 (display-buffer-normalize-specifiers-1): New arguments
21813 buffer-name and label. Treat other-window case specially.
21814 (display-buffer-normalize-specifiers-2): Treat other-window case
21815 specially.
21816 (display-buffer-normalize-specifiers-3): New function.
21817 (display-buffer-normalize-specifiers):
21818 Call display-buffer-normalize-specifiers-3.
21819
21820 2011-06-17 Martin Rudalics <rudalics@gmx.at>
21821
21822 * window.el (same-window-p): Fix two typos introduced when
21823 adding with-no-warnings.
21824 (display-buffer-normalize-specifiers-1): Don't check
21825 pop-up-frames for 'unset initialization.
21826 (display-buffer-normalize-specifiers-2): Major rewrite using
21827 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
21828 (pop-up-frames, display-buffer-reuse-frames)
21829 (display-buffer-mark-dedicated): Don't initialize to 'unset.
21830 Suggested by David Engster <deng@randomsample.de>.
21831 (even-window-heights): Initialize to 'unset.
21832 (display-buffer-alist-set): Handle new 'unset initializations.
21833 (display-buffer-macro-specifiers): Don't pop up a new frame in the
21834 other window case.
21835
21836 2011-06-16 Martin Rudalics <rudalics@gmx.at>
21837
21838 * window.el (display-buffer-normalize-specifiers-1):
21839 Respect current value of pop-up-frames for most reasonable values of
21840 second argument of display-buffer (Bug#8865).
21841 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
21842 (switch-to-buffer-other-window-same-frame)
21843 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
21844 Adams (Bug#8875).
21845 (display-buffer): Don't check noninteractive when calling
21846 display-buffer-pop-up-frame.
21847 (display-buffer-pop-up-frame): Never pop up a frame in
21848 noninteractive mode (Bug#8857).
21849 (enlarge-window, shrink-window): Don't report an error when the
21850 window can't be resized as requested (Bug#8862).
21851
21852 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
21853
21854 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
21855
21856 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
21857
21858 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
21859
21860 2011-06-15 Alan Mackenzie <acm@muc.de>
21861
21862 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
21863 for declarators, disable knr checking to speed up for normal files.
21864 2: Refactor, replacing a sequence of nested if forms by a cond form.
21865
21866 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
21867
21868 * net/network-stream.el (open-network-stream): Add the keyword
21869 :always-query-capabilities for the case where you want to force a
21870 `plain' network connection, but the protocol still requires the
21871 capabilitiy command (i.e., SMTP and EHLO).
21872
21873 * subr.el (process-live-p): Rename from `process-alive-p' for
21874 consistency with other `-live-p' functions.
21875
21876 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
21877
21878 * window.el (same-window-buffer-names, same-window-regexps)
21879 (special-display-frame-alist, special-display-popup-frame)
21880 (special-display-function, special-display-buffer-names)
21881 (special-display-regexps, pop-up-frame-alist)
21882 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
21883 (pop-up-windows, split-window-preferred-function)
21884 (split-height-threshold, split-width-threshold, even-window-heights)
21885 (display-buffer-mark-dedicated): Don't encourage the use of
21886 display-buffer-alist from Elisp code.
21887
21888 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
21889
21890 * progmodes/python.el (python-mode): Derive from prog-mode.
21891 * progmodes/ps-mode.el (ps-mode):
21892 * progmodes/mixal-mode.el (mixal-mode):
21893 * progmodes/cfengine.el (cfengine-mode):
21894 * progmodes/ld-script.el (ld-script-mode): Likewise.
21895
21896 2011-06-15 Martin Rudalics <rudalics@gmx.at>
21897
21898 * window.el (display-buffer-alist): Trim default value to avoid
21899 popping up a new frame (Bug#8857) or reusing an arbitrary window
21900 on another frame.
21901 (display-buffer): Do not fall back on popping up a new frame in
21902 batch mode (Bug#8857).
21903
21904 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
21905
21906 * cus-theme.el (describe-theme-1): Use custom-theme-p.
21907 (custom-theme-summary): New function.
21908 (customize-themes): Use it.
21909
21910 2011-06-13 Glenn Morris <rgm@gnu.org>
21911
21912 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
21913
21914 2011-06-13 Martin Rudalics <rudalics@gmx.at>
21915
21916 * help.el (help-window): Remove variable.
21917 (help-window-point-marker, temp-buffer-max-height)
21918 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
21919 (help-print-return-message): Don't set help-window.
21920 (resize-temp-buffer-window): Rewrite cod eand doc-string.
21921 (help-window-setup-finish): Remove.
21922 (help-window-display-message, help-window-setup)
21923 (with-help-window): Major rewrite based on new
21924 display-buffer-window variable.
21925
21926 * help-mode.el (help-mode-finish): Remove help-window related
21927 code.
21928
21929 * view.el (view-exits-all-viewing-windows): Remove reference to
21930 view-return-to-alist in doc-string.
21931 (view-return-to-alist): Make obsolete.
21932 (view-buffer): Call pop-to-buffer-same-window and remove
21933 undo-window code.
21934 (view-buffer-other-window): Call pop-to-buffer-other-window and
21935 simplify code. Ignore second argument.
21936 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
21937 simplify code. Ignore second argument.
21938 (view-return-to-alist-update): Make obsolete.
21939 (view-mode-enter): Rename second argument to QUIT-RESTORE.
21940 Rewrite using quit-restore window parameters.
21941 (view-mode-exit): Rename second argument to EXIT-ONLY.
21942 Rewrite using quit-restore-window.
21943 (View-exit, View-exit-and-edit, View-leave, View-quit)
21944 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
21945 appropriate arguments.
21946 (view-end-message): Use quit-restore window parameter.
21947
21948 * window.el (display-buffer-function): Rewrite doc-string.
21949 (display-buffer-window, display-buffer-alist): New variables.
21950 (display-buffer-split-specifiers)
21951 (display-buffer-side-specifiers)
21952 (display-buffer-macro-specifiers): New constants.
21953 (display-buffer-even-window-sizes, display-buffer-set-height)
21954 (display-buffer-set-width, display-buffer-select-window)
21955 (display-buffer-in-window, display-buffer-reuse-window)
21956 (display-buffer-split-window-1, display-buffer-split-window)
21957 (display-buffer-split-atom-window, display-buffer-pop-up-window)
21958 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
21959 (display-buffer-in-side-window, normalize-buffer-to-display)
21960 (display-buffer-normalize-specifiers-1)
21961 (display-buffer-normalize-specifiers-2)
21962 (display-buffer-normalize-specifiers, display-buffer-frame):
21963 New functions.
21964 (display-buffer): Major rewrite.
21965 (display-buffer-other-window, display-buffer-other-frame)
21966 (pop-to-buffer, switch-to-buffer-other-window)
21967 (switch-to-buffer-other-frame): Rewrite.
21968 (display-buffer-same-window, display-buffer-same-frame)
21969 (display-buffer-same-frame-other-window)
21970 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
21971 (pop-to-buffer-other-window)
21972 (pop-to-buffer-same-frame-other-window)
21973 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
21974 (switch-to-buffer-other-window-same-frame): New functions.
21975 (same-window-p, special-display-p): Rewrite disabling warnings.
21976 Make obsolete.
21977 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
21978 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
21979 Make obsolete
21980 (same-window-buffer-names, same-window-regexps)
21981 (special-display-frame-alist, special-display-popup-frame)
21982 (special-display-function, special-display-buffer-names)
21983 (special-display-regexps, pop-up-frame-alist)
21984 (pop-up-frame-function, split-window-preferred-function)
21985 (split-height-threshold, split-width-threshold)
21986 (even-window-heights): Make obsolete.
21987
21988 2011-06-12 Glenn Morris <rgm@gnu.org>
21989
21990 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
21991 Misc simplifications.
21992
21993 2011-06-12 Martin Rudalics <rudalics@gmx.at>
21994
21995 * window.el (window-safely-shrinkable-p): Restore function which
21996 was inadvertently removed in change from 2011-06-11. Declare as
21997 obsolete.
21998
21999 * calendar/calendar.el (calendar-generate-window):
22000 Use window-iso-combined-p instead of combination of one-window-p and
22001 window-safely-shrinkable-p.
22002
22003 2011-06-12 Glenn Morris <rgm@gnu.org>
22004
22005 * progmodes/fortran.el (fortran-mode-syntax-table):
22006 * progmodes/f90.el (f90-mode-syntax-table):
22007 Set % to punctuation. (Bug#8820)
22008 (f90-find-tag-default): Remove, no longer needed.
22009
22010 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
22011
22012 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
22013
22014 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
22015
22016 * image.el (image-animated-p): Return animation delay in seconds.
22017 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
22018 (image-animate-timeout): Remove DELAY argument. Don't assume
22019 every subimage has the same delay; get it from image-animated-p.
22020 (image-animate): Caller changed.
22021
22022 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
22023
22024 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
22025 to ignored backtrace functions.
22026
22027 2011-06-11 Glenn Morris <rgm@gnu.org>
22028
22029 * calendar/appt.el (appt-disp-window-function): Doc fix.
22030 (appt-check): Handle overlapping appointments. (Bug#8337)
22031
22032 2011-06-11 Martin Rudalics <rudalics@gmx.at>
22033
22034 * window.el (window-tree-1, window-tree): New functions, moving
22035 the latter to window.el.
22036 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
22037 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
22038 (bw-refresh-edges): Remove.
22039 (balance-windows-1, balance-windows-2): New functions.
22040 (balance-windows): Rewrite in terms of window tree functions,
22041 balance-windows-1 and balance-windows-2.
22042 (bw-adjust-window): Remove.
22043 (balance-windows-area-adjust): New function with functionality of
22044 bw-adjust-window but using resize-window.
22045 (set-window-text-height): Rewrite doc-string.
22046 Use normalize-live-window and resize-window.
22047 (enlarge-window-horizontally, shrink-window-horizontally):
22048 Rename argument to DELTA.
22049 (window-buffer-height): New function.
22050 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
22051 Rewrite using new window resize routines.
22052 (kill-buffer-and-window, mouse-autoselect-window-select):
22053 Use ignore-errors instead of condition-case.
22054 (quit-window): Call delete-frame instead of delete-windows-on
22055 for the only buffer on frame.
22056
22057 2011-06-10 Martin Rudalics <rudalics@gmx.at>
22058
22059 * loadup.el (top-level): Load window before files for the sake
22060 of replace-buffer-in-windows.
22061
22062 * files.el (read-buffer-to-switch)
22063 (switch-to-buffer-other-window)
22064 (switch-to-buffer-other-frame, display-buffer-other-frame):
22065 Move to window.el.
22066
22067 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
22068 (previous-buffer): Move to window.el.
22069
22070 * bindings.el (unbury-buffer): Move to window.el.
22071
22072 * window.el (delete-other-windows-vertically): Move after
22073 definition of delete-other-windows.
22074 (other-window, delete-windows-on, replace-buffer-in-windows):
22075 Move here from window.c.
22076 (record-window-buffer, unrecord-window-buffer)
22077 (set-window-buffer-start-and-point, switch-to-prev-buffer)
22078 (switch-to-next-buffer): New functions.
22079 (get-next-valid-buffer, last-buffer, next-buffer): Move here
22080 from simple.el. Call switch-to-next-buffer.
22081 (previous-buffer): Move here from simple.el.
22082 Call switch-to-prev-buffer.
22083 (bury-buffer): Move here from buffer.c. Switch to previous
22084 buffer when window cannot be deleted.
22085 (unbury-buffer): Move here from bindings.el.
22086 (ctl-x-map): Move binding for other-window from window.c to
22087 here.
22088 (read-buffer-to-switch, switch-to-buffer-other-window)
22089 (switch-to-buffer-other-frame): Move here from files.el.
22090 (normalize-buffer-to-switch-to): New functions.
22091 (switch-to-buffer): Move here from buffer.c.
22092 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
22093
22094 2011-06-10 Martin Rudalics <rudalics@gmx.at>
22095
22096 * window.el (window-min-height, window-min-width): Move here
22097 from window.c. Add defcustoms and rewrite doc-strings.
22098 (resize-mini-window, resize-window): New functions.
22099 (adjust-window-trailing-edge, enlarge-window, shrink-window):
22100 Move here from window.c.
22101 (maximize-window, minimize-window): New functions.
22102 (delete-window, delete-other-windows, split-window): Move here
22103 from window.c.
22104 (window-split-min-size): New function.
22105 (split-window-keep-point): Mention split-window-above-each-other
22106 instead of split-window-vertically.
22107 (split-window-above-each-other, split-window-vertically):
22108 Rename split-window-vertically to split-window-above-each-other
22109 and provide defalias for old definition.
22110 (split-window-side-by-side, split-window-horizontally):
22111 Rename split-window-horizontally to split-window-side-by-side
22112 and provide defalias for the old definition.
22113 (ctl-x-map): Move bindings for delete-window,
22114 delete-other-windows and enlarge-window here from window.c.
22115 Replace bindings for split-window-vertically and
22116 split-window-horizontally by bindings for
22117 split-window-above-each-other and split-window-side-by-side.
22118
22119 * cus-start.el (all): Remove entries for window-min-height and
22120 window-min-width. Add entries for window-splits and
22121 window-nest.
22122
22123 2011-06-09 Glenn Morris <rgm@gnu.org>
22124
22125 * calendar/appt.el (appt-mode-line): New function.
22126 (appt-check, appt-disp-window): Use it.
22127
22128 * files.el (hack-one-local-variable-eval-safep):
22129 Allow minor-modes with explicit +/-1 arguments.
22130
22131 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
22132
22133 * term/xterm.el (xterm): Add defgroup.
22134 (xterm-extra-capabilities): Add defcustom to supply known xterm
22135 capabilities, skip querying them, or query them (default).
22136 (terminal-init-xterm): Use it.
22137 (terminal-init-xterm-modify-other-keys): New function to set up
22138 modifyOtherKeys support to simplify `terminal-init-xterm'.
22139
22140 2011-06-09 Martin Rudalics <rudalics@gmx.at>
22141
22142 * window.el (resize-window-reset, resize-window-reset-1)
22143 (resize-subwindows-skip-p, resize-subwindows-normal)
22144 (resize-subwindows, resize-other-windows, resize-this-window)
22145 (resize-root-window, resize-root-window-vertically)
22146 (window-deletable-p, window-or-subwindow-p)
22147 (frame-root-window-p): New functions.
22148
22149 2011-06-09 Glenn Morris <rgm@gnu.org>
22150
22151 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
22152 (ange-ftp-get-files): Use it.
22153
22154 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
22155
22156 * mail/sendmail.el (mail-recover-1, mail-recover):
22157 * files.el (recover-file, recover-session):
22158 Handle dired-listing-switches not being just a single short option.
22159
22160 2011-06-09 Glenn Morris <rgm@gnu.org>
22161
22162 * calendar/appt.el (appt-display-message, appt-disp-window):
22163 Handle lists of appointments.
22164
22165 2011-06-08 Martin Rudalics <rudalics@gmx.at>
22166
22167 * window.el (one-window-p): Move down in code.
22168 Rewrite doc-string.
22169 (window-current-scroll-bars): Rewrite doc-string.
22170 Normalize live window argument.
22171 (walk-windows, get-window-with-predicate, count-windows):
22172 Rewrite doc-string. Use window-list-1.
22173 (window-in-direction-2, window-in-direction, get-mru-window):
22174 New functions.
22175
22176 2011-06-08 Reuben Thomas <rrt@sc3d.org>
22177
22178 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
22179 Doc fix (Bug#8713).
22180
22181 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
22182
22183 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
22184
22185 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
22186
22187 * loadhist.el (unload-feature-special-hooks):
22188 Add `comint-output-filter-functions'.
22189
22190 2011-06-08 Ivan Kanis <gnu@kanis.fr>
22191
22192 * calendar/appt.el (appt-check): Move some initializations into the let.
22193
22194 2011-06-08 Martin Rudalics <rudalics@gmx.at>
22195
22196 * window.el (window-height): Defalias to window-total-height.
22197 (window-width): Defalias to window-body-width.
22198
22199 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
22200
22201 * image-mode.el (image-toggle-animation): New command.
22202 (image-mode-map): Bind it to RET.
22203 (image-mode): Update message.
22204 (image-toggle-display-image): Avoid a spurious cache flush.
22205 (image-transform-rotation): Doc fix.
22206 (image-transform-properties): Return quickly in the normal case.
22207 (image-animate-loop): Rename from image-animate-max-time.
22208
22209 * image.el (image-animate-max-time): Move to image-mode.el.
22210 (create-animated-image): Remove unnecessary function.
22211 (image-animate): Rename from image-animate-start. New arg.
22212 (image-animate-stop): Remove; just use image-animate-timer.
22213 (image-animate-timer): Use car-safe.
22214 (image-animate-timeout): Rename argument.
22215
22216 2011-06-07 Martin Rudalics <rudalics@gmx.at>
22217
22218 * window.el (get-lru-window, get-largest-window): Move here from
22219 window.c. Rename first argument to ALL-FRAMES.
22220 Rephrase doc-strings.
22221 (get-buffer-window-list): Rewrite using window-list-1.
22222 Rephrase doc-string.
22223 (window-safe-min-height, window-safe-min-width): New constants.
22224 (window-size-ignore, window-min-size, window-min-size-1)
22225 (window-sizable, window-sizable-p, window-size-fixed-1)
22226 (window-size-fixed-p, window-min-delta-1, window-min-delta)
22227 (window-max-delta-1, window-max-delta, window-resizable)
22228 (window-resizable-p, window-total-height, window-total-width)
22229 (window-body-width): New functions.
22230 (window-full-height-p, window-full-width-p): Rewrite using
22231 window-total-size.
22232 (window-body-height): Rewrite using window-body-size.
22233
22234 2011-06-06 Martin Rudalics <rudalics@gmx.at>
22235
22236 * window.el (window-right, window-left, window-child)
22237 (window-child-count, window-last-child, window-any-p)
22238 (normalize-live-buffer, normalize-live-frame)
22239 (normalize-any-window, normalize-live-window)
22240 (window-iso-combination-p, window-iso-combined-p)
22241 (window-iso-combinations)
22242 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
22243 (windows-with-parameter, window-with-parameter)
22244 (window-atom-root, make-window-atom, window-atom-check-1)
22245 (window-atom-check, window-side-check, window-check):
22246 New functions.
22247 (ignore-window-parameters, window-sides, window-sides-vertical)
22248 (window-sides-slots): New variables.
22249 (window-size-fixed): Move down in code. Minor doc-string fix.
22250
22251 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
22252
22253 * comint.el (comint-dynamic-complete-as-filename)
22254 (comint-dynamic-complete-filename): Correctly call
22255 completion-in-region.
22256
22257 2011-06-05 Deniz Dogan <deniz@dogan.se>
22258
22259 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
22260 in last change.
22261
22262 2011-06-05 Deniz Dogan <deniz@dogan.se>
22263
22264 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
22265 (rcirc): Use it to prompt for encryption.
22266
22267 2011-06-05 Roland Winkler <winkler@gnu.org>
22268
22269 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
22270 (bibtex-search-entries): New command bound to C-c C-a.
22271 (bibtex-display-entries): New function.
22272
22273 2011-06-05 Roland Winkler <winkler@gnu.org>
22274
22275 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
22276 (bibtex-insert-kill): After yanking insert newline if necessary.
22277 (bibtex-initialize): Call bibtex-string-files-init only once.
22278 (bibtex-mode): Do not call easy-menu-add.
22279 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
22280 (bibtex-yank): Set arg properly if nil.
22281
22282 2011-06-05 Roland Winkler <winkler@gnu.org>
22283
22284 * textmodes/bibtex.el (bibtex-search-entry-globally):
22285 New variable.
22286 (bibtex-search-entry): Use it.
22287
22288 2011-06-05 Roland Winkler <winkler@gnu.org>
22289
22290 * textmodes/bibtex.el (bibtex-entry-format): New option
22291 sort-fields.
22292 (bibtex-format-entry, bibtex-reformat): Honor this option.
22293 (bibtex-parse-entry): Return fields in proper order.
22294
22295 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
22296
22297 * doc-view.el (doc-view-remove-if): Move computation of result out
22298 of `dolist' to silence misleading lexical-binding warning.
22299
22300 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
22301
22302 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
22303 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
22304
22305 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
22306
22307 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
22308 "SunOS 5.10".
22309
22310 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
22311
22312 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
22313 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
22314 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
22315 (tramp-parse-putty):
22316 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
22317 (tramp-completion-function-alist-ssh)
22318 (tramp-completion-function-alist-telnet)
22319 (tramp-completion-function-alist-su)
22320 (tramp-completion-function-alist-putty): Set `tramp-autoload'
22321 cookie.
22322
22323 * net/tramp-ftp.el:
22324 * net/tramp-sh.el:
22325 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
22326 load "tramp.el" `tramp-set-completion-function'.
22327
22328 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
22329
22330 * shell.el: Require and use pcomplete.
22331 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
22332 (shell-completion-vars): Set pcomplete-default-completion-function.
22333
22334 2011-06-04 Deniz Dogan <deniz@dogan.se>
22335
22336 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
22337 `memq' (Bug#8799).
22338
22339 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
22340
22341 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
22342
22343 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
22344
22345 * bs.el (bs--mark-unmark, bs--nth-wrapper):
22346 * mpc.el (mpc-select-extend, mpc-songpointer-context):
22347 * vc/log-view.el (log-view-beginning-of-defun):
22348 * vc/smerge-mode.el (smerge-apply-resolution-patch)
22349 (smerge-refine-forward, smerge-refine-chopup-region):
22350 Silence warning for unused `dotimes' counter variables.
22351
22352 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
22353
22354 * net/tramp.el (tramp-with-progress-reporter): Rename from
22355 with-progress-reporter. Use `declare'.
22356 * net/tramp-smb.el:
22357 * net/tramp-sh.el:
22358 * net/tramp-gvfs.el: Update all uses.
22359
22360 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
22361
22362 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
22363 buffer isn't killed before making it current.
22364
22365 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
22366
22367 Silence various byte-compiler warnings.
22368 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
22369 `access-type' and new obsolescence format.
22370 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
22371 new format.
22372 (byte-compile-check-variable): New `access-type' argument.
22373 Only warn if the access-type is obsolete.
22374 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
22375 (byte-compile-variable-set): Adjust callers.
22376 * help-fns.el (describe-variable): Adjust to new obsolescence format.
22377 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
22378 setting it as obsolete.
22379 * simple.el (minibuffer-completing-symbol):
22380 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
22381 access as obsolete.
22382 * minibuffer.el (minibuffer-completing-file-name): Don't make it
22383 obsolete yet.
22384 * international/quail.el (quail-mouse-choose-completion): Remove unused
22385 code referring to obsolete var.
22386 (quail-choose-completion-string): Remove.
22387 * server.el (server-clients-with, server-kill-buffer-query-function)
22388 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
22389 * proced.el (proced-send-signal):
22390 * emacs-lisp/lisp.el (lisp-complete-symbol):
22391 Replace completion-annotate-function with completion-extra-properties.
22392
22393 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
22394
22395 * simple.el (goto-line): Use read-number.
22396 (overriding-map-is-bound): Remove.
22397 (saved-overriding-map): Change default.
22398 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
22399 Take the map as argument.
22400 (universal-argument, negative-argument, digit-argument): Use it.
22401 (restore-overriding-map): Adjust.
22402 (do-auto-fill): Use fill-forward-paragraph.
22403 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
22404
22405 * minibuffer.el (minibuffer-inactive-mode-map): New var.
22406 (minibuffer-inactive-mode): New major mode.
22407 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
22408 the *Messages* buffer" hack.
22409 (mouse-popup-menubar): Don't burp if the event is a normal key.
22410
22411 Miscellaneous tweaks.
22412 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
22413 lexical scoping as in subr.el's dolist and dotimes.
22414 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
22415 Silence compiler warning.
22416 * thingatpt.el (forward-whitespace): Trivial coding style fix.
22417 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
22418 * international/ccl.el (ccl-compile): Trivial simplification.
22419 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
22420 * emacs-lisp/testcover.el (testcover-end): Remove spurious
22421 `printflag' argument.
22422 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
22423 Purecopy the whole obsolescence data.
22424
22425 2011-06-01 Leo Liu <sdl.web@gmail.com>
22426
22427 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
22428 improve doc-string as suggested by Marco Pessotto
22429 <melmothx@gmail.com>.
22430 (rcirc-print): Fix last change.
22431
22432 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22433
22434 * minibuffer.el (complete-with-action): Return nil for the metadata and
22435 boundaries of non-functional tables.
22436 (completion-table-dynamic): Return nil for the metadata.
22437 (completion-table-with-terminator): Add default case, using
22438 complete-with-action.
22439 (completion--metadata): New function.
22440 (completion-all-sorted-completions, minibuffer-completion-help): Use it
22441 to try and avoid pathological performance problems.
22442 (completion--embedded-envvar-table): Return `category' metadata.
22443
22444 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
22445
22446 * subr.el (process-alive-p): New tiny convenience function.
22447
22448 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22449
22450 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
22451 content but also its previous major mode.
22452
22453 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
22454
22455 * emacs-lisp/debug.el (debug): Restore the previous content of the
22456 *Backtrace* buffer when we exit with C-M-c.
22457
22458 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22459
22460 * minibuffer.el: Add metadata method to completion tables.
22461 (completion-category-overrides): New defcustom.
22462 (completion-metadata, completion--field-metadata)
22463 (completion-metadata-get, completion--styles)
22464 (completion--cycle-threshold): New functions.
22465 (completion-try-completion, completion-all-completions):
22466 Add `metadata' argument to choose completion-styles.
22467 (completion--do-completion): Use metadata to choose cycling.
22468 (completion-all-sorted-completions): Use metadata for sorting.
22469 Remove :completion-cycle-penalty which is not needed any more.
22470 (completion--try-word-completion): Add `metadata' argument.
22471 (minibuffer-completion-help): Check metadata for annotation function
22472 and sorting.
22473 (completion-file-name-table): Return `category' metadata.
22474 (minibuffer-completing-file-name): Make obsolete.
22475 * simple.el (minibuffer-completing-symbol): Make obsolete.
22476 * icomplete.el (icomplete-completions): Pass new `metadata' param to
22477 completion-try-completion.
22478
22479 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
22480
22481 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
22482
22483 2011-05-30 Leo Liu <sdl.web@gmail.com>
22484
22485 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
22486 (rcirc-print): Decode all incoming messages (bug#8744).
22487 (rcirc-decode-coding-system): Allow value nil for automatic coding
22488 system detection.
22489
22490 2011-06-01 Glenn Morris <rgm@gnu.org>
22491
22492 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
22493
22494 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
22495
22496 * image.el (image-animate-max-time): Allow nil and t values.
22497 Default to nil.
22498 (create-animated-image): Doc fix.
22499 (image-animate-start): Remove second arg; just use
22500 image-animate-max-time.
22501 (image-animate-timeout): Doc fix. Args changed.
22502
22503 * image-mode.el (image-toggle-display-image): Ensure that the
22504 image spec passed to the animate timer is the same object as in
22505 the buffer's display property (Bug#6981).
22506 (image-transform-properties): Doc fix.
22507
22508 * image.el (image-animate-max-time): Default to nil.
22509
22510 2011-05-29 Martin Rudalics <rudalics@gmx.at>
22511
22512 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
22513 entire buffer list (Bug#8184).
22514
22515 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
22516
22517 * image.el (imagemagick-types-inhibit)
22518 (imagemagick-register-types): Doc fix.
22519
22520 2011-05-29 Deniz Dogan <deniz@dogan.se>
22521
22522 * net/rcirc.el (rcirc): Use the user's stored encryption method by
22523 default.
22524
22525 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
22526
22527 * select.el: Don't perform clipboard-manager saving in hooks;
22528 leave the hooks empty.
22529
22530 2011-05-28 Leo Liu <sdl.web@gmail.com>
22531
22532 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
22533 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
22534 (occur-edit-mode): New major mode (Bug#8463).
22535 (occur-after-change-function): New function.
22536 (occur-engine): Give Occur tags a read-only property.
22537
22538 2011-05-28 Kevin Ryde <user42@zip.com.au>
22539
22540 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
22541
22542 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
22543
22544 * bindings.el (help-echo): Make the initial non-indicator dash
22545 empty on graphical terminals (Bug#7295).
22546
22547 * files.el (auto-mode-alist): Move config rule after the
22548 in-stripping one (Bug#8547).
22549
22550 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
22551
22552 * startup.el (normal-splash-screen): Remove gratuitous mode-line
22553 setting (Bug#8740).
22554
22555 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
22556
22557 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
22558 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
22559 (Bug#8539).
22560
22561 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
22562
22563 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
22564
22565 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
22566
22567 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
22568 (hs-hide-block-at-point, hs-find-block-beginning)
22569 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
22570 (Bug#8279).
22571
22572 2011-05-28 Glenn Morris <rgm@gnu.org>
22573
22574 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
22575
22576 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
22577
22578 * help-fns.el (describe-function-1): If the function is a derived
22579 major mode, print the parent mode.
22580
22581 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
22582 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
22583
22584 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
22585
22586 * minibuffer.el (completion--capf-wrapper): Check applicability before
22587 returning non-nil for non-exclusive completion data.
22588 * progmodes/etags.el (tags-completion-at-point-function):
22589 * info-look.el (info-lookup-completions-at-point): Mark as
22590 non-exclusive.
22591 (info-complete): Adjust accordingly.
22592
22593 * info-look.el: Convert to lexical-binding and completion-at-point.
22594 (info-lookup-completions-at-point): New function.
22595 (info-complete): Use it and completion-in-region.
22596
22597 2011-05-28 Drew Adams <drew.adams@oracle.com>
22598
22599 * isearch.el: Let M-e start with point at the first mismatched char.
22600 (isearch-fail-pos): New function.
22601 (isearch-edit-string): Use it.
22602
22603 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
22604
22605 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
22606
22607 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
22608
22609 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
22610 traversal functions for avl-trees.
22611 (avl-tree--stack): New struct.
22612 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
22613 (avl-tree-enter): Add optional `updatefun' arg.
22614 (avl-tree--do-enter): Add optional `updatefun' arg.
22615 Change return value.
22616 (avl-tree-delete): Add optional `test' and `nilflag' args.
22617 (avl-tree--do-delete): Add `test' and `nilflag' args.
22618 Change return value.
22619 (avl-tree-member): Add optional `nilflag'
22620 (avl-tree-member-p): New function.
22621 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
22622 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
22623 (avl-tree-stack-empty-p): New functions.
22624
22625 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
22626 avl-tree--del-balance1 and make it work both ways.
22627 (avl-tree--del-balance2): Remove.
22628 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
22629 make it work both ways.
22630 (avl-tree--enter-balance2): Remove.
22631 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
22632 New macros.
22633 (avl-tree--mapc, avl-tree-map): Add direction argument.
22634
22635 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
22636
22637 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
22638
22639 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
22640
22641 * select.el: Support clipboard managers with built-in function
22642 x-clipboard-manager-save, via delete-frame-functions and
22643 kill-emacs-hook.
22644 (xselect-convert-to-targets): Add MULTIPLE target to list.
22645 (xselect-convert-to-save-targets): New function.
22646
22647 2011-05-27 Kenichi Handa <handa@m17n.org>
22648
22649 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
22650 let-binding rfc2047-encode-encoded-words to nil.
22651
22652 2011-05-27 Glenn Morris <rgm@gnu.org>
22653
22654 * mail/emacsbug.el: Don't require url-util.
22655
22656 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
22657
22658 * files.el (set-auto-mode):
22659 Also respect mode: entries at the end of the file. (Bug#8586)
22660
22661 2011-05-26 Glenn Morris <rgm@gnu.org>
22662
22663 * files.el (hack-local-variables-prop-line, hack-local-variables):
22664 Downcase mode names, as seems to be traditional.
22665 (hack-local-variables, hack-local-variables-apply): Doc fixes.
22666
22667 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
22668 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
22669
22670 2011-05-25 Julien Danjou <julien@danjou.info>
22671
22672 * textmodes/rst.el (rst-define-level-faces): Do not define face
22673 symbol if it is already defined.
22674
22675 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
22676
22677 * play/5x5.el (5x5-new-game, 5x5-randomize):
22678 Reset 5x5-solver-output to nil when a new grid is cast.
22679 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
22680 these debugging traces, as defmacro breaks the compiled code.
22681
22682 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
22683
22684 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
22685
22686 2011-05-24 Leo Liu <sdl.web@gmail.com>
22687
22688 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
22689 (vc-bzr-sha1): Adapt.
22690
22691 * sha1.el: Remove. Function `sha1' is now builtin.
22692
22693 * bindings.el: Provide sha1 feature.
22694
22695 2011-05-24 Kenichi Handa <handa@m17n.org>
22696
22697 * mail/sendmail.el: Require `rfc2047'.
22698 (mail-insert-from-field): Do not perform RFC2047 encoding.
22699 (mail-encode-header): New function.
22700 (sendmail-send-it): Set buffer-file-coding-system of the work
22701 buffer to the return value of select-message-coding-system.
22702 Call mail-encode-header.
22703
22704 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
22705
22706 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
22707
22708 * mail/supercite.el (sc-default-cite-frame):
22709 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
22710
22711 2011-05-24 Glenn Morris <rgm@gnu.org>
22712
22713 * progmodes/python.el (brm-menu): Declare.
22714
22715 * emulation/viper.el (viper-set-hooks): Declare.
22716
22717 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
22718 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
22719 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
22720 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
22721 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
22722 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
22723
22724 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
22725
22726 Add an :exit-function for completion-at-point.
22727
22728 * minibuffer.el (completion--done): New fun.
22729 (completion--do-completion): Use it. New arg `expect-exact'.
22730 (minibuffer-complete, minibuffer-complete-word): Don't output message,
22731 since completion--do-completion does it for us now.
22732 (minibuffer-force-complete): Use completion--done and
22733 completion--replace. Handle sole-completion case with more care.
22734 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
22735 (completion-extra-properties): New var.
22736 (completion-annotate-function): Make obsolete.
22737 (minibuffer-completion-help): Adjust accordingly.
22738 Use completion-list-insert-choice-function.
22739 (completion-at-point, completion-help-at-point):
22740 Bind completion-extra-properties.
22741 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
22742 * simple.el (completion-list-insert-choice-function): New var.
22743 (completion-setup-function): Preserve it.
22744 (choose-completion): Pay attention to it, shuffle the code a bit.
22745 (choose-completion-string): New arg `insert-function'.
22746
22747 * textmodes/bibtex.el: Convert to lexical binding.
22748 (bibtex-mode-map): Use completion-at-point.
22749 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
22750 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
22751 (bibtex-complete): Define as obsolete alias.
22752 (bibtex-complete-internal): Remove.
22753 (bibtex-format-entry): Remove unused sub-group in regexp.
22754 * shell.el (shell--command-completion-data)
22755 (shell-environment-variable-completion):
22756 * pcomplete.el (pcomplete-completions-at-point):
22757 * comint.el (comint--complete-file-name-data): Use :exit-function
22758 instead of completion-table-with-terminator so it also works for
22759 choose-completion.
22760
22761 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
22762
22763 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
22764
22765 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
22766 (bug#8710).
22767
22768 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
22769
22770 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
22771
22772 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
22773 customization variable and implement: If non-nil, auto-fill will
22774 be inhibited while on topic's header line.
22775
22776 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
22777
22778 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
22779 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
22780 always have a solution in grid size = 5 cases.
22781 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
22782 (5x5-solver-output, 5x5-log-buffer): New vars.
22783 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
22784 Make these variables buffer local to achieve 5x5 multi-session-ness.
22785 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
22786 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
22787 (5x5-solve-suggest): New funs.
22788 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
22789 randomize a grid so that we ensure that there is always a solution.
22790 (5x5-make-random-grid): Allow other movement than flipping.
22791
22792 2011-05-23 Kevin Ryde <user42@zip.com.au>
22793
22794 * emacs-lisp/advice.el (ad-read-advised-function):
22795 Use `function-called-at-point' as the default, if it has
22796 advice and passes PREDICATE.
22797
22798 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
22799
22800 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
22801 byte-compile-lambda if it's actually a lambda.
22802
22803 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
22804 Fix function quoting. Use backquote better.
22805
22806 2011-05-22 Yuanle Song <sylecn@gmail.com>
22807
22808 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
22809 matching (Bug#8516).
22810
22811 2011-05-22 Jari Aalto <jari.aalto@cante.net>
22812
22813 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
22814 different face (Bug#8178).
22815
22816 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
22817
22818 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
22819 defface (Bug#8144).
22820
22821 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
22822
22823 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
22824 funcall as well (bug#8712). Warn when performing those conversions.
22825 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
22826
22827 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
22828
22829 2011-05-22 Glenn Morris <rgm@gnu.org>
22830
22831 * files.el (hack-local-variables-prop-line): Small simplifications.
22832 (hack-local-variables, hack-local-variables-prop-line):
22833 If MODE-ONLY, return the mode, rather than just `t'.
22834
22835 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
22836
22837 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
22838
22839 2011-05-21 Glenn Morris <rgm@gnu.org>
22840
22841 * files.el (hack-local-variables-prop-line, hack-local-variables):
22842 If only interested in the mode, don't bother doing the other stuff.
22843
22844 * image-mode.el (image-after-revert-hook):
22845 Redraw all frames on which the image is visible. (Bug#8567)
22846
22847 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
22848
22849 * wid-edit.el (widget-checklist-match-inline):
22850 Fix 2011-04-19 change. (Bug#8649)
22851
22852 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
22853
22854 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
22855 Also allow singlespace after single-letter capitals followed by a dot.
22856
22857 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
22858 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
22859
22860 2011-05-20 Nix <nix@esperi.org.uk>
22861
22862 * files.el (basic-save-buffer-2):
22863 Fix handling of break-hardlink-on-save with non-existent files.
22864
22865 2011-05-19 Deniz Dogan <deniz@dogan.se>
22866
22867 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
22868 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
22869
22870 2011-05-19 Glenn Morris <rgm@gnu.org>
22871
22872 * progmodes/f90.el (f90-type-def-re):
22873 Handle "type, bind(c)". (Bug#8691)
22874
22875 * emacs-lisp/autoload.el (batch-update-autoloads):
22876 Set autoload-excludes by parsing loadup.el rather than Makefiles.
22877
22878 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
22879
22880 * net/tramp.el (tramp-process-actions): Set "first-password-request"
22881 property for the correct connection in case of multihops.
22882
22883 2011-05-18 Glenn Morris <rgm@gnu.org>
22884
22885 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
22886 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
22887
22888 Rationalize calendar handling of day and month abbrev-arrays.
22889 * calendar/calendar.el (calendar-customized-p): New function.
22890 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
22891 (calendar-day-name-array, calendar-month-name-array): Doc fix.
22892 Add :set function.
22893 (calendar-abbrev-length, calendar-day-abbrev-array)
22894 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
22895 (calendar-day-abbrev-array, calendar-month-abbrev-array):
22896 Elements may no longer be nil.
22897 (calendar-day-name, calendar-month-name):
22898 Update for changed nature of abbrev arrays.
22899 * calendar/diary-lib.el (diary-name-pattern):
22900 Update for changed nature of abbrev arrays.
22901 (diary-mark-entries-1): Update calendar-make-alist calls.
22902 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
22903 * calendar/cal-html.el (cal-html-day-abbrev-array):
22904 Simply inherit from calendar-day-abbrev-array.
22905
22906 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
22907
22908 * progmodes/grep.el (grep-mode): Disable default
22909 compilation-directory-matcher setting (bug#8684).
22910
22911 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
22912
22913 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
22914 instead of "head" and "tail". There were problems with SunOS 5.9,
22915 and it performs better.
22916
22917 2011-05-17 Glenn Morris <rgm@gnu.org>
22918
22919 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
22920
22921 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
22922 Replace obsolete function.
22923
22924 * shell.el (pcomplete-parse-arguments-function): Declare.
22925
22926 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
22927 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
22928 (appt-check): Doc fixes.
22929 (appt-disp-window-function, appt-delete-window-function):
22930 Remove needless special case in custom :type.
22931 (appt-display-count): Default to 0, not nil.
22932 (appt-check): Reset appt-display-count to 0, not nil.
22933
22934 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
22935
22936 * progmodes/python.el (python-font-lock-keywords):
22937 Add the Python 3.X keyword "nonlocal" (bug#8639).
22938
22939 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
22940
22941 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
22942
22943 2011-05-16 Kevin Ryde <user42@zip.com.au>
22944
22945 * info-look.el (makefile-automake-mode): New setups, looking in
22946 automake manual, then makefile-mode.
22947 (makefile-mode): Remove automake manual, have it just in
22948 makefile-automake-mode since there's various things different or
22949 not relevant to plain make.
22950 (makefile-mode): Remove "other-modes" non-existent automake-mode,
22951 believe a hypothetical automake-mode would go to makefile-mode,
22952 not the other way around.
22953
22954 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
22955
22956 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
22957 hunk-end tags (Bug#8672).
22958
22959 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
22960 vc-annotate-show-diff-revision-at-line (Bug#8671).
22961
22962 2011-05-14 Glenn Morris <rgm@gnu.org>
22963
22964 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
22965 in the middle of an existing one with multiple authors. (Bug#8645)
22966 (change-log-font-lock-keywords): Also handle multiple author lines
22967 with leading tabs. (Bug#8644)
22968
22969 * calendar/appt.el (appt-check): Rename some local variables.
22970 Some simplification/reordering.
22971
22972 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
22973 (feedmail-sendmail-f-doesnt-sell-me-out)
22974 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
22975 (feedmail-debug-sit-for, feedmail-queue-express-hook)
22976 (feedmail-queue-runner-message-sender): Set :version.
22977 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
22978 (bbdb-dwim-net-address, vm-mail): Declare.
22979 (feedmail-binmail-gnulinuxish-template):
22980 Rename from feedmail-binmail-linuxish-template.
22981 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
22982 Use insert-buffer-substring.
22983
22984 2011-05-14 Bill Carpenter <bill@carpenter.org>
22985
22986 * mail/feedmail.el (feedmail-patch-level): Increase.
22987 (feedmail-debug): New custom group.
22988 (feedmail-confirm-outgoing-timeout)
22989 (feedmail-sendmail-f-doesnt-sell-me-out)
22990 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
22991 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
22992 (feedmail-sender-line, feedmail-from-line)
22993 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
22994 (feedmail-spray-this-address)
22995 (feedmail-spray-address-fiddle-plex-list)
22996 (feedmail-queue-use-send-time-for-date)
22997 (feedmail-queue-use-send-time-for-message-id)
22998 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
22999 (feedmail-buffer-eating-function):
23000 Doc fixes.
23001 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
23002 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
23003 (feedmail-message-action-scroll-down): New functions.
23004 (feedmail-queue-directory, feedmail-queue-draft-directory):
23005 Use expand-file-name.
23006 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
23007 Remove C-v help entry.
23008 (feedmail-queue-buffer-file-name): New variable.
23009 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
23010 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
23011 (feedmail-message-action-send-strong, feedmail-message-action-edit)
23012 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
23013 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
23014 (feedmail-message-action-toggle-spray)
23015 (feedmail-run-the-queue-no-prompts)
23016 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
23017 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
23018 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
23019 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
23020 (feedmail-envelope-deducer, feedmail-fiddle-from)
23021 (feedmail-fiddle-sender, feedmail-default-date-generator)
23022 (feedmail-fiddle-date, feedmail-fiddle-message-id)
23023 (feedmail-fiddle-spray-address)
23024 (feedmail-fiddle-list-of-spray-fiddle-plexes)
23025 (feedmail-fiddle-list-of-fiddle-plexes)
23026 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
23027 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
23028 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
23029 Change default. Doc fix.
23030 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
23031 (feedmail-binmail-linuxish-template): New constant.
23032 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
23033 Respect feedmail-sendmail-f-doesnt-sell-me-out.
23034 (feedmail-send-it): Add debug call.
23035 Use feedmail-queue-buffer-file-name, and
23036 feedmail-send-it-immediately-wrapper.
23037 (feedmail-message-action-send): Add debug call.
23038 Use feedmail-send-it-immediately-wrapper.
23039 (feedmail-queue-express-to-queue): Add debug call.
23040 Run feedmail-queue-express-hook.
23041 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
23042 (feedmail-message-action-help-blat):
23043 Rename from feedmail-queue-send-edit-prompt-help-first.
23044 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
23045 Check line-endings. Handle errors better.
23046 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
23047 Doc fix. Add debug call.
23048 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
23049 Use feedmail-queue-send-edit-prompt-inner.
23050 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
23051 (feedmail-queue-send-edit-prompt-inner): New function, extracted
23052 from feedmail-queue-send-edit-prompt.
23053 (feedmail-queue-send-edit-prompt-help)
23054 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
23055 (feedmail-tidy-up-slug): Add debug call.
23056 Respect feedmail-queue-slug-suspect-regexp.
23057 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
23058 (feedmail-dump-message-to-queue): Add debug call.
23059 Expand queue-directory.
23060 (feedmail-dump-message-to-queue): Change message slightly.
23061 Use feedmail-say-chatter.
23062 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
23063 (feedmail-send-it-immediately-wrapper): New function.
23064 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
23065 Insert empty string rather than newline. Handle full-frame case.
23066 Use catch/throw. Use feedmail-say-chatter.
23067 (feedmail-fiddle-from): Try mail-host-address.
23068 (feedmail-default-message-id-generator): Doc fix.
23069 Bind system-time-locale. Handle missing end.
23070 (feedmail-fiddle-x-mailer): Add debug call.
23071 Handle feedmail-x-mailer-line being nil.
23072 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
23073 Add debug call. Use buffer-substring-no-properties.
23074 (feedmail-say-debug, feedmail-say-chatter): New functions.
23075 (feedmail-find-eoh): Give an explicit error.
23076
23077 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
23078
23079 * net/newst-treeview.el (newsticker-treeview-face): Change default
23080 family from helvetica to sans.
23081 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
23082 etc/images/newsticker.
23083
23084 * net/newst-reader.el (newsticker-feed-face): Change default
23085 family from helvetica to sans.
23086
23087 * net/newst-plainview.el (newsticker-new-item-face)
23088 (newsticker-old-item-face, newsticker-immortal-item-face)
23089 (newsticker-obsolete-item-face, newsticker-date-face)
23090 (newsticker-statistics-face): Change default family from
23091 helvetica to sans.
23092 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
23093 etc/images/newsticker.
23094
23095 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
23096 (newsticker--process-auto-mark-filter-match): Tell user about
23097 auto-marking.
23098
23099 2011-05-13 Didier Verna <didier@xemacs.org>
23100
23101 Common Lisp indentation improvements on defmethod and lambda-lists.
23102 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
23103 TODO entries.
23104 (lisp-lambda-list-keyword-parameter-indentation)
23105 (lisp-lambda-list-keyword-parameter-alignment)
23106 (lisp-lambda-list-keyword-alignment): New customizable user options.
23107 (lisp-indent-defun-method): Improve docstring.
23108 (extended-loop-p): Fix comment.
23109 (lisp-indent-lambda-list-keywords-regexp): New variable.
23110 (lisp-indent-lambda-list): New function.
23111 (lisp-indent-259): Use it.
23112 (lisp-indent-defmethod): Support for more than one
23113 method qualifier and properly indent methods lambda-lists.
23114 (defgeneric): Provide a missing common-lisp-indent-function property.
23115
23116 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
23117
23118 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
23119 bounds for the empty string (bug#8667).
23120
23121 2011-05-13 Glenn Morris <rgm@gnu.org>
23122
23123 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
23124
23125 * mail/sendmail.el (sendmail-program): Try executable-find first.
23126 (sendmail-send-it): `sendmail-program' cannot be unbound.
23127
23128 * calendar/appt.el (appt-make-list): Simplify.
23129 (appt-time-msg-list): Doc fix.
23130 (appt-check): Change mode-line message at the time of the appointment.
23131
23132 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
23133
23134 * progmodes/ld-script.el (ld-script-keywords)
23135 (ld-script-builtins): Update keywords list.
23136
23137 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23138
23139 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
23140
23141 * shell.el (shell-completion-vars): New function.
23142 (shell-mode):
23143 * simple.el (read-shell-command): Use it.
23144 (blink-matching-open): No need for " [...]" in minibuffer-message.
23145
23146 2011-05-12 Glenn Morris <rgm@gnu.org>
23147
23148 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
23149 (appt-check): Simplify.
23150
23151 2011-05-12 Eli Zaretskii <eliz@gnu.org>
23152
23153 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
23154 literal "/dev/null".
23155
23156 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23157
23158 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
23159 Fix typo.
23160
23161 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
23162
23163 * progmodes/which-func.el (which-function):
23164 Use add-log-current-defun instead of add-log-current-defun-function,
23165 which might not be defined (Bug#8260).
23166
23167 2011-05-12 Glenn Morris <rgm@gnu.org>
23168
23169 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
23170 Let byte-compile-initial-macro-environment always take precedence.
23171
23172 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23173
23174 * net/rcirc.el: Add support for SSL/TLS connections.
23175 (rcirc-server-alist): New field `encryption'.
23176 (rcirc): Check `encryption' settings.
23177 (rcirc-connect): New arg `encryption'. Use open-network-stream.
23178 Merge make-local-variable into `set'.
23179 (rcirc--connection-open-p): New function.
23180 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
23181 the process is not a network process (e.g. running gnutls-cli).
23182 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
23183 Make rcirc-(en|de)code-coding-system local here.
23184 (rcirc-mode): Merge make-local-variable into `set'.
23185 (rcirc-parent-buffer): Make permanent buffer-local.
23186 (rcirc-multiline-minor-mode): Don't do it here.
23187 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
23188 there's no server buffer.
23189
23190 2011-05-11 Glenn Morris <rgm@gnu.org>
23191
23192 * newcomment.el (comment-kill): Prefix "unused" local.
23193
23194 * term/w32console.el (get-screen-color): Declare.
23195
23196 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
23197 Handle symbol elements of byte-compile-initial-macro-environment.
23198
23199 2011-05-10 Leo Liu <sdl.web@gmail.com>
23200
23201 * bookmark.el (bookmark-bmenu-mode-map):
23202 Bind bookmark-bmenu-search to `/'.
23203
23204 * mail/footnote.el: Convert to utf-8 encoding.
23205 (footnote-unicode-string, footnote-unicode-regexp): New variable.
23206 (Footnote-unicode): New function.
23207 (footnote-style-alist): Add unicode style to the list.
23208 (footnote-style): Doc fix.
23209
23210 2011-05-10 Jim Meyering <meyering@redhat.com>
23211
23212 Fix doubled-word typos.
23213 * international/quail.el (quail-insert-kbd-layout): and and -> and
23214 * kermit.el: and and -> and
23215 * net/ldap.el (ldap-search-internal): to to -> to
23216 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
23217 * progmodes/js.el (js-mode): and and -> and
23218 * textmodes/artist.el (artist-move-to-xy): at at -> at
23219 (artist-draw-region-trim-line-endings): if if -> if
23220 And Safetyc -> Safety.
23221 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
23222
23223 2011-05-10 Glenn Morris <rgm@gnu.org>
23224 Stefan Monnier <monnier@iro.umontreal.ca>
23225
23226 * files.el (hack-one-local-variable-eval-safep):
23227 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
23228
23229 2011-05-10 Glenn Morris <rgm@gnu.org>
23230
23231 * calendar/diary-lib.el (diary-list-entries-hook)
23232 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
23233 (diary-nongregorian-marking-hook, diary-list-entries)
23234 (diary-include-other-diary-files, diary-mark-entries)
23235 (diary-mark-included-diary-files): Doc fixes.
23236
23237 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
23238
23239 * misc.el: Require tabulated-list.el during compilation.
23240
23241 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
23242
23243 * progmodes/compile.el (compilation-start):
23244 Run compilation-filter-hook for the async case too.
23245 (compilation-filter-hook): Doc fix.
23246
23247 2011-05-09 Deniz Dogan <deniz@dogan.se>
23248
23249 * wdired.el: Remove outdated installation comment. Fix usage
23250 comment.
23251
23252 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
23253
23254 * misc.el: Implement new command `list-dynamic-libraries'.
23255 (list-dynamic-libraries--loaded-only-p): New variable.
23256 (list-dynamic-libraries--refresh): New function.
23257 (list-dynamic-libraries): New command.
23258
23259 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
23260
23261 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23262 Fix the ant regexp to handle end-line and end-column info from jikes.
23263 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
23264 higher priority to avoid clobbering by gnu.
23265
23266 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
23267
23268 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
23269 if the face has existing theme settings (Bug#8454).
23270
23271 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
23272
23273 * progmodes/perl-mode.el (perl-imenu-generic-expression):
23274 Only match variables declared via `my' or `our' (Bug#8261).
23275
23276 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
23277 special file names `.' and `..' (Bug#8259).
23278
23279 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
23280
23281 * progmodes/grep.el (grep-mode-font-lock-keywords):
23282 Remove buffer-changing entries.
23283 (grep-filter): New function.
23284 (grep-mode): Add it to compilation-filter-hook.
23285
23286 * progmodes/compile.el (compilation-filter-hook)
23287 (compilation-filter-start): New defvars.
23288 (compilation-filter): Call compilation-filter-hook prior to
23289 updating the process mark.
23290
23291 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
23292
23293 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
23294
23295 2011-05-07 Eli Zaretskii <eliz@gnu.org>
23296
23297 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
23298 mailclient-send-it even if window-system is nil. (Bug#8595)
23299
23300 * term/w32console.el (terminal-init-w32console):
23301 Call get-screen-color and use its output to set the frame
23302 background-mode. (Bug#8597)
23303
23304 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
23305
23306 Make bytecomp.el understand that defmethod defines funs (bug#8631).
23307 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
23308 New functions.
23309 (defgeneric, eieio--defmethod): Use them.
23310 (eieio-defgeneric): Remove.
23311 (defmethod): Call defgeneric in a way visible to the byte-compiler.
23312
23313 2011-05-07 Glenn Morris <rgm@gnu.org>
23314
23315 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
23316 Use let rather than let*.
23317 (timeclock-find-discrep): Remove unused local.
23318
23319 * calendar/diary-lib.el (diary-comment-start): Doc fix.
23320
23321 * calendar/appt.el (appt-time-msg-list): Doc fix.
23322
23323 2011-05-06 Noah Friedman <friedman@splode.com>
23324
23325 * apropos.el (apropos-print-doc): Only use
23326 emacs-lisp-docstring-fill-column when it is bound to an integer,
23327 per that variable's documentation.
23328
23329 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
23330
23331 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
23332 and warnings are not silently discarded (e.g. use -d instead of -P).
23333
23334 2011-05-06 Glenn Morris <rgm@gnu.org>
23335
23336 * calendar/appt.el (appt-message-warning-time): Doc fix.
23337 (appt-warning-time-regexp): New option.
23338 (appt-make-list): Respect appt-message-warning-time.
23339
23340 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
23341 New options.
23342 (diary-add-to-list): Strip comments from the displayed string.
23343 (diary-mode): Set comment-start and comment-end.
23344
23345 * vc/diff-mode.el (smerge-refine-subst): Declare.
23346 (diff-refine-hunk): Don't require smerge-mode when compiling.
23347
23348 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
23349
23350 * simple.el (list-processes): Return nil as the docstring says.
23351
23352 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
23353
23354 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
23355 to "".
23356 (ange-ftp-write-region, ange-ftp-insert-file-contents)
23357 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
23358 determining of binary transfer. (Bug#7383)
23359
23360 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
23361
23362 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
23363 Fix port computation bug. (Bug#8618)
23364
23365 2011-05-05 Glenn Morris <rgm@gnu.org>
23366
23367 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
23368
23369 * simple.el (shell-dynamic-complete-functions)
23370 (comint-dynamic-complete-functions): Declare.
23371
23372 * net/network-stream.el (gnutls-negotiate):
23373 * simple.el (tabulated-list-print): Fix declarations.
23374
23375 * progmodes/gud.el (syntax-symbol, syntax-point):
23376 Remove unnecessary and incorrect declarations.
23377
23378 * emacs-lisp/check-declare.el (check-declare-scan):
23379 Handle byte-compile-initial-macro-environment in bytecomp.el.
23380
23381 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
23382
23383 Fix earlier half-done eieio-defmethod change (bug#8338).
23384 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
23385 Streamline and change calling convention.
23386 (defmethod): Adjust accordingly and simplify.
23387 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
23388 new eieio--defmethod.
23389 (slot-boundp): Minor CSE simplification.
23390
23391 2011-05-05 Milan Zamazal <pdm@zamazal.org>
23392
23393 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
23394 (glasses-make-readable): Use glasses-separate-capital-groups.
23395
23396 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
23397
23398 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
23399 (warning-series): Doc fix.
23400 (display-warning): Don't try to create the buffer if we just found it.
23401
23402 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
23403
23404 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
23405 (autoload-find-generated-file): New function.
23406 (generate-file-autoloads): Bind generated-autoload-file to
23407 buffer-file-name.
23408 (update-file-autoloads, update-directory-autoloads):
23409 Use autoload-find-generated-file. If called interactively, prompt for
23410 output file (Bug#7989).
23411 (batch-update-autoloads): Doc fix.
23412
23413 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
23414
23415 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
23416
23417 2011-05-04 Glenn Morris <rgm@gnu.org>
23418
23419 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
23420 function, so it follows changes in calendar-date-style.
23421 (diary-fancy-date-matcher): New function.
23422 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
23423 (diary-fancy-font-lock-fontify-region-function):
23424 Use diary-fancy-date-pattern as a function.
23425
23426 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
23427 non-numbers for `year' etc pseudo-variables. (Bug#8583)
23428
23429 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
23430
23431 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
23432 instead of positional arguments. Allow :keylist and :crlfiles
23433 arguments.
23434 (open-gnutls-stream): Call it.
23435
23436 * net/network-stream.el (network-stream-open-starttls): Adjust to
23437 call `gnutls-negotiate' with :process and :hostname arguments.
23438
23439 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
23440
23441 * minibuffer.el (completion--message): New function.
23442 (completion--do-completion, minibuffer-complete)
23443 (minibuffer-force-complete, minibuffer-complete-word): Use it.
23444 (completion--do-completion): Don't ignore completion-auto-help when in
23445 icomplete-mode.
23446
23447 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
23448 internal encoding (e.g. tibetan zero is not whitespace).
23449 (global-whitespace-mode): Prefer save-current-buffer.
23450 (whitespace-trailing-regexp): Remove useless save-match-data.
23451 (whitespace-empty-at-bob-regexp): Minor simplification.
23452
23453 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
23454
23455 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
23456
23457 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
23458
23459 * textmodes/ispell.el (ispell-add-per-file-word-list):
23460 Use `concat' to create string for insertion.
23461
23462 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
23463
23464 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
23465 Avoid open-line which runs post-self-insert-hook.
23466 (bibtex-fill-entry): Remove unused `end' var.
23467
23468 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
23469
23470 * textmodes/ispell.el (ispell-add-per-file-word-list):
23471 Protect against `nil' value of `comment-start' (Bug#8579).
23472
23473 2011-05-03 Leo Liu <sdl.web@gmail.com>
23474
23475 * isearch.el (isearch-yank-pop): New command.
23476 (isearch-mode-map): Bind it to `M-y'.
23477 (isearch-forward): Mention it.
23478
23479 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
23480
23481 * simple.el (minibuffer-complete-shell-command): Remove.
23482 (minibuffer-local-shell-command-map): Use completion-at-point.
23483 (read-shell-command): Setup completion vars here instead.
23484 (read-expression-map): Bind TAB to symbol completion.
23485
23486 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
23487 error directly rather via storing it into `results'.
23488
23489 2011-05-02 Leo Liu <sdl.web@gmail.com>
23490
23491 * vc/diff.el: Fix description.
23492
23493 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
23494
23495 * server.el (server-eval-at): New function.
23496
23497 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
23498
23499 * net/network-stream.el (open-network-stream): Take a :nowait
23500 parameter and pass it on to `make-network-process'.
23501 (network-stream-open-plain): Ditto.
23502
23503 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
23504
23505 * faces.el (face-spec-set-match-display): Don't match toolkit
23506 options on terminal frames.
23507
23508 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
23509
23510 * progmodes/pascal.el: Use lexical binding.
23511 (pascal-mode-map): Remove author preferences.
23512
23513 * pcomplete.el (pcomplete-std-complete): Don't abuse
23514 completion-at-point.
23515
23516 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
23517
23518 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
23519 removing code that has been dead since 1991 or so.
23520
23521 * startup.el (command-line): When warning about "_emacs", use a
23522 delayed warning to allow the user to filter it out.
23523
23524 2011-04-28 Deniz Dogan <deniz@dogan.se>
23525
23526 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
23527 user has not joined.
23528
23529 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
23530
23531 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
23532 aren't any completions at point.
23533
23534 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
23535
23536 * subr.el (display-delayed-warnings): New function.
23537 (delayed-warnings-hook): New variable.
23538
23539 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
23540
23541 * minibuffer.el (completion-at-point, completion-help-at-point):
23542 Don't presume that a given completion-at-point-function will always
23543 use the same calling convention.
23544
23545 * pcomplete.el (pcomplete-completions-at-point):
23546 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
23547 pcomplete-seen is non-nil.
23548 (pcomplete-comint-setup): Also recognize the new comint/shell
23549 completion functions.
23550 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
23551 pcomplete-seen is non-nil.
23552
23553 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
23554
23555 * calendar/icalendar.el (diary-lib): Add require statement.
23556 (icalendar--create-uid): Read out a uid from a text-property on
23557 the first character in the entry. This allows for code to add its
23558 own uid to the entry.
23559 (icalendar--convert-float-to-ical): Add export of
23560 `diary-float'-entries save for those with the optional DAY
23561 argument.
23562
23563 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
23564
23565 * subr.el (shell-quote-argument): Use alternate escaping strategy
23566 when we spot a variable reference in a string.
23567
23568 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
23569
23570 * cus-start.el (all): Define customization for debug-on-event.
23571
23572 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
23573
23574 * subr.el (shell-quote-argument): Escape correctly under Windows.
23575
23576 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
23577
23578 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
23579
23580 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
23581
23582 * net/tramp.el (tramp-process-actions): Add POS argument.
23583 Delete region between POS and (pos).
23584
23585 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
23586 Use `nil' position in `tramp-process-actions' call.
23587 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
23588
23589 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
23590 position in `tramp-process-actions' call.
23591
23592 * net/trampver.el: Update release number.
23593
23594 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
23595
23596 * custom.el (defcustom): Obey lexical-binding.
23597
23598 Fix octave-inf completion problems reported by Alexander Klimov.
23599 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
23600 Inherit from octave-mode-syntax-table.
23601 (inferior-octave-mode): Set info-lookup-mode.
23602 (inferior-octave-completion-at-point): New function.
23603 (inferior-octave-complete): Use it and completion-in-region.
23604 (inferior-octave-dynamic-complete-functions): Use it as well, and use
23605 comint-filename-completion.
23606 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
23607 symbol elements which shouldn't be word elements.
23608 (octave-font-lock-keywords, octave-beginning-of-defun)
23609 (octave-function-header-regexp): Adjust regexps accordingly.
23610 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
23611
23612 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
23613
23614 * net/gnutls.el (gnutls-errorp): Declare before first use.
23615
23616 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
23617
23618 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
23619 verify-error, and verify-hostname-error parameters. Check whether
23620 default trustfile exists before going to use it. Add missing
23621 argument to gnutls-message-maybe call. Return value.
23622 Reported by Claudio Bley <claudio.bley@gmail.com>.
23623 (open-gnutls-stream): Add usage example.
23624
23625 * net/network-stream.el (network-stream-open-starttls): Give host
23626 parameter to `gnutls-negotiate'.
23627 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
23628 * subr.el (shell-quote-argument): Escape correctly under Windows.
23629
23630 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
23631
23632 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
23633 Use correct match group (bug#8438).
23634
23635 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
23636
23637 * emacs-lisp/package.el (package-built-in-p): Fix typo.
23638 (package-menu--generate): New arg specifying packages to show.
23639 (package-menu-refresh, package-menu-execute, list-packages):
23640 Callers changed.
23641 (package-show-package-list): New function, replacing deleted
23642 package--list-packages (renamed because it is non-internal).
23643
23644 * finder.el (finder-list-matches): Use package-show-package-list
23645 instead of deleted package--list-packages.
23646
23647 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
23648 Based on a previous implementation by Juanma Barranquero (Bug#8366).
23649 (vc-annotate-mode-map): Bind it to RET.
23650
23651 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
23652
23653 * progmodes/etags.el (next-file): Don't use set-buffer to change
23654 buffers (Bug#8478).
23655
23656 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
23657
23658 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
23659
23660 * apropos.el (apropos-label-face): Avoid variable-pitch face.
23661 (apropos-accumulator): Doc fix.
23662 (apropos-function, apropos-macro, apropos-command)
23663 (apropos-variable, apropos-face, apropos-group, apropos-widget)
23664 (apropos-plist): Add face property.
23665 (apropos-symbols-internal): Fix indentation.
23666 (apropos-print): Simplify help, and recognize apropos-multi-type.
23667 (apropos-print-doc): Use button-type-get to extract the button's
23668 face property. Fill docstring (Bug#8352).
23669
23670 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
23671
23672 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
23673
23674 * play/mpuz.el (mpuz-silent): Doc fix.
23675 (mpuz-mode-map): Use mapc.
23676 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
23677 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
23678 Fix typos in docstrings.
23679
23680 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
23681 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
23682
23683 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
23684
23685 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
23686
23687 * minibuffer.el (completion--do-completion): Avoid the "Next char
23688 not unique" prompt if icomplete-mode is enabled (Bug#5849).
23689
23690 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
23691 mouse-2 into unread-command-events, it is interpreted correctly.
23692
23693 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
23694 (image-toggle-display): Doc fix.
23695
23696 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
23697
23698 * textmodes/page.el (what-page): Use line-number-at-pos to
23699 calculate line number (Bug#6825).
23700
23701 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
23702
23703 * eshell/esh-mode.el (find-tag-interactive): Declare function.
23704 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
23705 Pass argument NO-DEFAULT to `find-tag-interactive'.
23706
23707 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
23708
23709 Lexical-binding cleanup.
23710
23711 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
23712 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
23713 * progmodes/ada-prj.el (ada-prj-initialize-values)
23714 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
23715 (ada-prj-show-value):
23716 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
23717 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
23718 (antlr-invalidate-context-cache, antlr-options-menu-filter)
23719 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
23720 * progmodes/bug-reference.el (bug-reference-push-button):
23721 * progmodes/fortran.el (fortran-line-length):
23722 * progmodes/glasses.el (glasses-change):
23723 * progmodes/octave-mod.el (octave-fill-paragraph):
23724 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
23725 (python-pdbtrack-grub-for-buffer, python-sentinel):
23726 * progmodes/sql.el (sql-save-connection):
23727 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
23728 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
23729 Mark unused parameters.
23730
23731 * progmodes/compile.el (compilation--flush-directory-cache)
23732 (compilation--flush-parse, compile-internal): Mark unused parameters.
23733 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
23734 (compilation-next-error-function): Remove unused variable `timestamp'.
23735
23736 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
23737 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
23738
23739 * progmodes/dcl-mode.el (dcl-end-of-command):
23740 Remove unused variable `start'.
23741 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
23742 (dcl-option-value-basic, dcl-option-value-offset)
23743 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
23744 Mark unused parameters.
23745 (dcl-save-local-variable): Remove unused variable `val'.
23746 (mode): Declare.
23747
23748 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
23749 Mark unused parameters.
23750 (delphi-ignore-changes): Move before first use.
23751 (delphi-charset-token-at): Remove unused variable `start'.
23752 (delphi-else-start): Remove unused variable `if-count'.
23753 (delphi-comment-block-start, delphi-comment-block-end):
23754 Remove unused variable `kind'.
23755 (delphi-indent-line): Remove unused variable `new-point'.
23756
23757 * progmodes/ebrowse.el (ebrowse-files-list)
23758 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
23759 Mark unused parameters. Don't quote `lambda'.
23760 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
23761 Don't quote `lambda'.
23762 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
23763 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
23764 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
23765 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
23766 Use `ignore-errors'.
23767 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
23768 (ebrowse-view/find-file-and-search-pattern)
23769 (ebrowse-view/find-member-declaration/definition):
23770 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
23771 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
23772 Rename parameter PREFIX-ARG to PREFIX.
23773 (ebrowse-tags-read-name): Remove unused variables `start' and
23774 `member-info'.
23775 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
23776 to `tags-file'.
23777
23778 * progmodes/etags.el (local-find-tag-hook): Declare.
23779 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
23780 Mark unused parameters.
23781
23782 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
23783 (executable-interpret): Mark unused parameter.
23784
23785 * progmodes/flymake.el (flymake-process-sentinel)
23786 (flymake-after-change-function)
23787 (flymake-create-temp-with-folder-structure)
23788 (flymake-get-include-dirs-dot): Mark unused parameters.
23789 (flymake-safe-delete-directory): Remove unused variable `err'.
23790
23791 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
23792 (speedbar-timer-fn, speedbar-line-text)
23793 (speedbar-change-expand-button-char, speedbar-delete-subblock)
23794 (speedbar-center-buffer-smartly): Declare functions.
23795 (gdb-find-watch-expression): Remove unused variable `array'.
23796 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
23797 (gdb-starting): Mark unused parameters.
23798 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
23799 (gdb-table-string): Remove unused variable `res'.
23800 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
23801 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
23802 (gdb-display-buffer): Remove unused variable `cur-size'.
23803
23804 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
23805 allow lexical-binding compilation.
23806 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
23807 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
23808 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
23809 Mark unused parameters.
23810 (gud-gdb-marker-filter): Remove unused variable `match'.
23811 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
23812 lambda expressions and funcall them, instead of using `fset'.
23813
23814 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
23815 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
23816
23817 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
23818 variable `header-beg'; use `let'.
23819
23820 * progmodes/icon.el (indent-icon-exp): Remove unused variables
23821 `restart', `last-sexp' and `at-do'.
23822
23823 * progmodes/js.el (js--debug): Mark unused parameter.
23824 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
23825 (js--splice-into-items): Remove unused variable `item'.
23826 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
23827
23828 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
23829 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
23830 (makefile-complete): Remove unused variable `try'.
23831 (makefile-fill-paragraph, makefile-match-function-end):
23832 Mark unused parameters.
23833
23834 * progmodes/octave-inf.el (inferior-octave-complete):
23835 Remove unused variable `proc'.
23836 (inferior-octave-output-digest): Mark unused parameter.
23837
23838 * progmodes/perl-mode.el (perl-calculate-indent):
23839 Remove unused variable `err'.
23840
23841 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
23842 (prolog-indent-line): Mark unused parameters.
23843 (prolog-indent-line): Remove unused variable `beg'.
23844
23845 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
23846 (reporter-dont-compact-list): Declare.
23847
23848 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
23849 Remove unused variable `char'.
23850 (sh-debug): Mark unused parameter.
23851 (sh-get-indent-info): Remove unused variable `start'.
23852 (sh-calculate-indent): Remove unused variable `var'.
23853
23854 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
23855 (simula-electric-keyword): Remove unused variable `null'.
23856 (simula-search-backward, simula-search-forward): Remove unused
23857 variables `begin' and `end'.
23858
23859 * progmodes/vera-mode.el (vera-guess-basic-syntax):
23860 Remove unused variable `pos'.
23861 (vera-electric-tab, vera-comment-uncomment-region):
23862 Mark unused parameters.
23863 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
23864
23865 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
23866
23867 * emacs-lisp/package.el (package--builtins, package-alist)
23868 (package-load-descriptor, package-built-in-p, package-activate)
23869 (define-package, package-installed-p)
23870 (package-compute-transaction, package-buffer-info)
23871 (package--push): Doc fix. Distinguish more clearly between
23872 version strings and version lists.
23873
23874 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
23875
23876 Lexical-binding cleanup.
23877
23878 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
23879 (5x5-make-mutate-best):
23880 * play/fortune.el (fortune-in-buffer):
23881 * play/gomoku.el (gomoku-init-display):
23882 * play/solitaire.el (solitaire, solitaire-do-check):
23883 * play/tetris.el (tetris-default-update-speed-function):
23884 Mark unused parameters.
23885
23886 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
23887 (bubbles--shift): Remove unused variable `char-org'.
23888 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
23889 (bubbles--show-images): Remove unused variable `char'.
23890
23891 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
23892 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
23893 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
23894 (decipher-analyze-buffer): Use ?\s.
23895 (decipher-make-checkpoint): Remove unused variable `mapping'.
23896
23897 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
23898
23899 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
23900 Remove unused variable `result'; use `let'.
23901
23902 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
23903 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
23904 (gametree-children-shown-p, gametree-compute-reduced-score):
23905 Use `ignore-errors'.
23906
23907 * play/handwrite.el (ps-lpr-switches): Declare.
23908 (handwrite): Remove unused variables `pmin' and `lastp'.
23909
23910 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
23911
23912 * play/landmark.el (landmark-init-display)
23913 (landmark-update-naught-weights): Mark unused parameters.
23914 (landmark-y): Remove unused variable `noise'. Simplify.
23915 (landmark-human-plays): Remove unused variable `score'.
23916
23917 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
23918 (mpuz-try-proposal): Remove unused variable `game'.
23919
23920 * play/zone.el (life-patterns): Declare.
23921
23922 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
23923
23924 * vc/vc.el (ediff-vc-internal): Declare function.
23925
23926 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
23927
23928 * shell.el: Use lexical-binding and std completion UI.
23929 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
23930 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
23931 comint-preoutput-filter-functions rather than on
23932 comint-output-filter-functions.
23933 (shell-command-completion, shell--command-completion-data)
23934 (shell-filename-completion, shell-environment-variable-completion)
23935 (shell-c-a-p-replace-by-expanded-directory): New functions.
23936 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
23937 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
23938 (shell-dynamic-complete-environment-variable): Use them.
23939 (shell-dynamic-complete-as-environment-variable)
23940 (shell-dynamic-complete-as-command): Remove.
23941 (shell-match-partial-variable): Match past point.
23942 * comint.el: Clean up use of completion-at-point-functions.
23943 (comint-completion-at-point): New function.
23944 (comint-mode): Use it completion-at-point-functions.
23945 (comint-dynamic-complete): Make it obsolete.
23946 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
23947 (comint-c-a-p-replace-by-expanded-history): New function.
23948 (comint-dynamic-complete-functions)
23949 (comint-replace-by-expanded-history): Use it.
23950 * minibuffer.el (completion-table-with-terminator): Allow dynamic
23951 termination strings. Try harder to avoid second try-completion.
23952 (completion-in-region-mode-map): Disable bindings that don't work yet.
23953
23954 * comint.el: Use lexical-binding. Require CL.
23955 (comint-dynamic-complete-functions): Use comint-filename-completion.
23956 (comint-completion-addsuffix): Tweak custom type.
23957 (comint-filename-completion, comint--common-suffix)
23958 (comint--common-quoted-suffix, comint--table-subvert)
23959 (comint--complete-file-name-data): New functions.
23960 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
23961 (comint-dynamic-list-filename-completions): Use them.
23962 (comint-dynamic-simple-complete): Make obsolete.
23963
23964 * minibuffer.el (completion-in-region-mode):
23965 Keep completion-in-region-mode--predicate global.
23966 (completion-in-region--postch):
23967 Assume completion-in-region-mode--predicate is not null.
23968
23969 * progmodes/flymake.el (flymake-start-syntax-check-process):
23970 Obey `dir'. Simplify.
23971
23972 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
23973 we're in VC after all.
23974
23975 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
23976
23977 * vc/vc.el (vc-diff-build-argument-list-internal)
23978 (vc-version-ediff, vc-ediff): New commands.
23979 (vc-version-diff): Use vc-diff-build-argument-list-internal.
23980
23981 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
23982
23983 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
23984 add sanity check.
23985
23986 * obsolete/erc-hecomplete.el: Make obsolete.
23987 * obsolete/: Standardize obsolescence info in the header.
23988
23989 2011-04-20 Glenn Morris <rgm@gnu.org>
23990
23991 * calendar/solar.el (solar-horizontal-coordinates):
23992 Use the longitude argument rather than `calendar-longitude'.
23993 (solar-date-next-longitude): Remove unused locals.
23994
23995 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
23996
23997 * whitespace.el: New version 13.2.1.
23998
23999 2011-04-20 felix <EmacsWiki> (tiny change)
24000
24001 * whitespace.el (global-whitespace-mode): Keep highlight when
24002 switching between major modes on a file.
24003
24004 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
24005
24006 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
24007 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
24008 multi-line comments as well.
24009
24010 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
24011
24012 Lexical-binding cleanup.
24013
24014 * arc-mode.el (archive-mode-revert):
24015 * cmuscheme.el (scheme-interactively-start-process):
24016 * custom.el (custom-initialize-delay):
24017 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
24018 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
24019 * emacs-lock.el (emacs-lock-clear-sentinel):
24020 * ezimage.el (defezimage):
24021 * follow.el (follow-avoid-tail-recenter):
24022 * fringe.el (set-fringe-mode-1):
24023 * generic-x.el (bat-generic-mode-compile):
24024 * help-mode.el (help-info-variable, help-do-xref)
24025 (help-mode-revert-buffer):
24026 * help.el (view-emacs-todo):
24027 * iswitchb.el (iswitchb-completion-help):
24028 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
24029 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
24030 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
24031 * locate.el (locate-update):
24032 * longlines.el (longlines-encode-region)
24033 (longlines-after-change-function):
24034 * outline.el (outline-isearch-open-invisible):
24035 * ps-def.el (declare-function, charset-dimension, char-width)
24036 (encode-char):
24037 * ps-mule.el (ps-mule-plot-string):
24038 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
24039 (recentf-edit-list-select, recentf-edit-list-validate)
24040 (recentf-open-files-action):
24041 * rect.el (delete-whitespace-rectangle-line)
24042 (rectangle-number-line-callback):
24043 * register.el (window-configuration-to-register)
24044 (frame-configuration-to-register):
24045 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
24046 * select.el (xselect-convert-to-string, xselect-convert-to-length)
24047 (xselect-convert-to-targets, xselect-convert-to-delete)
24048 (xselect-convert-to-filename, xselect-convert-to-charpos)
24049 (xselect-convert-to-lineno, xselect-convert-to-colno)
24050 (xselect-convert-to-os, xselect-convert-to-host)
24051 (xselect-convert-to-user, xselect-convert-to-class)
24052 (xselect-convert-to-name, xselect-convert-to-integer)
24053 (xselect-convert-to-atom, xselect-convert-to-identity):
24054 * subr.el (declare, ignore, process-kill-without-query)
24055 (text-clone-maintain):
24056 * terminal.el (te-get-char, te-tic-sentinel):
24057 * tool-bar.el (tool-bar-make-keymap):
24058 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
24059 * type-break.el (type-break-mode, type-break-noninteractive-query):
24060 * view.el (View-back-to-mark):
24061 * wid-browse.el (widget-browse-action, widget-browse-widget)
24062 (widget-browse-widgets, widget-browse-sexp):
24063 * widget.el (define-widget-keywords):
24064 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
24065 Mark unused parameters.
24066
24067 * align.el (align-adjust-col-for-rule): Mark unused parameter.
24068 (align-areas): Remove unused variable `look'.
24069 (align-region): Remove unused variables `real-end' and `pos-list'.
24070
24071 * apropos.el (apropos-score-doc): Remove unused variable `i'.
24072
24073 * bindings.el (mode-line-modified, mode-line-remote):
24074 Mark unused parameters.
24075 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
24076
24077 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
24078 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
24079
24080 * comint.el (comint-history-isearch-pop-state)
24081 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
24082 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
24083 (comint-substitute-in-file-name): Doc fix.
24084
24085 * completion.el (cmpl-statistics-block): Mark unused parameter.
24086 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
24087 (save-completions-to-file, load-completions-from-file):
24088 Remove unused local variable `e'.
24089
24090 * composite.el (compose-chars): Remove unused variable `len'.
24091 (lgstring-insert-glyph): Remove unused variable `g'.
24092 (compose-glyph-string): Remove unused variables `ascent',
24093 `descent', `lbearing' and `rbearing'.
24094 (compose-glyph-string-relative): Remove unused variables
24095 `lbearing', `rbearing' and `wadjust'.
24096 (compose-gstring-for-graphic): Remove unused variables `header',
24097 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
24098 (compose-gstring-for-terminal): Remove unused variables `header'
24099 and `nchars'. Use `let', not `let*'.
24100
24101 * cus-edit.el (Custom-set, Custom-save, custom-reset)
24102 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
24103 (Custom-buffer-done, custom-buffer-create-internal)
24104 (custom-browse-visibility-action, custom-browse-group-tag-action)
24105 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
24106 (widget-magic-mouse-down-action, custom-toggle-parent)
24107 (custom-add-parent-links, custom-toggle-hide-variable)
24108 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
24109 (custom-toggle-hide-face, face, hook, custom-group-link-action)
24110 (custom-face-menu-create, custom-variable-menu-create, get)
24111 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
24112 (custom-reset-standard-save-and-update): Remove unused variable `value'.
24113 (customize-apropos): Remove unused variable `tests'.
24114 (custom-group-value-create): Remove unused variable `hidden-p'.
24115 (sort-fold-case): Declare.
24116
24117 * cus-theme.el (custom-reset-standard-faces-list)
24118 (custom-reset-standard-variables-list): Declare.
24119 (customize-create-theme, custom-theme-revert, custom-theme-write)
24120 (custom-theme-choose-mode, customize-themes, custom-theme-save):
24121 Mark unused parameters.
24122
24123 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
24124
24125 * delim-col.el (delimit-columns-max): Move defvar before first use.
24126
24127 * descr-text.el (describe-char-categories): Don't quote `lambda'.
24128 (describe-char): Don't quote `lambda'. Mark unused parameter.
24129
24130 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
24131 (auto-insert): Declare.
24132 (desktop-restore-file-buffer): Rename desktop-* parameters;
24133 mark unused ones.
24134 (desktop-create-buffer): Rename desktop-* parameters and bind them.
24135 (desktop-buffer): Rename desktop-* parameters.
24136
24137 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
24138 (dframe-reposition-frame-xemacs, dframe-help-echo)
24139 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
24140 Mark unused parameters.
24141
24142 * dired-aux.el (backup-extract-version-start, overwrite-query)
24143 (overwrite-backup-query, rename-regexp-query)
24144 (rename-non-directory-query): Declare.
24145 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
24146 (dired-add-entry): Remove unused variable `orig-file-name'.
24147 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
24148 Use parameter PRESERVE-TIME instead of accessing dynamic variable
24149 `dired-copy-preserve-time' directly.
24150 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
24151 (dired-insert-subdir-newpos): Rename unused variable `pos'.
24152
24153 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
24154 (dired-virtual-revert, dired-make-relative-symlink):
24155 Mark unused parameters.
24156 (manual-program): Declare.
24157 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
24158 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
24159 wrapped in `with-no-warnings' to avoid replacing one warning by another.
24160
24161 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
24162
24163 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
24164
24165 * echistory.el (electric-history-in-progress, Helper-return-blurb):
24166 Declare.
24167
24168 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
24169
24170 * electric.el (Electric-command-loop): Rename parameter
24171 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
24172
24173 * expand.el (expand-in-literal): Remove unused variable `here'.
24174
24175 * facemenu.el (facemenu-add-new-color):
24176 Remove unused variable `docstring'.
24177
24178 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
24179 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
24180 (face-attr-construct): Mark unused parameter. Doc fix.
24181 (read-color): Remove unused variable `hex-string'.
24182
24183 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
24184 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
24185 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
24186 (display-buffer-other-frame): Remove unused variable `old-window'.
24187 (kill-buffer-hook): Declare.
24188 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
24189 Mark unused parameters.
24190 (after-find-file): Pass 1 to `auto-save-mode', not t.
24191
24192 * files-x.el (auto-insert): Declare.
24193 (modify-file-local-variable-prop-line): Remove unused variable `val'.
24194
24195 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
24196 variable `buf'. Mark unused parameter.
24197 (find-lisp-insert-directory): Mark unused parameter.
24198
24199 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
24200 (format-encode-region): Remove unused variables `cur-buf' and `result'.
24201 (format-common-tail): Remove, unused.
24202 (format-deannotate-region): Remove unused variable `loc'.
24203 (format-annotate-region): Remove unused variable `p'.
24204 (format-annotate-single-property-change): Remove unused variables
24205 `default' and `tail'.
24206
24207 * forms.el (read-file-filter): Declare.
24208 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
24209
24210 * frame.el (frame-creation-function-alist): Mark unused parameter.
24211 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
24212
24213 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
24214 Remove unused parameters.
24215 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
24216 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
24217
24218 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
24219 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
24220 (hfy-prepare-tag-map): Mark unused parameters.
24221 (htmlfontify-buffer): Use `called-interactively-p'.
24222
24223 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
24224 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
24225 (ibuffer-do-occur): Mark unused parameters.
24226 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
24227 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
24228
24229 * ibuffer.el: Don't quote `lambda'.
24230 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
24231 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
24232 Mark unused parameters.
24233
24234 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
24235 (ido-completing-read): Mark unused parameters.
24236 (ido-copy-current-word): Mark unused parameters;
24237 remove unused variable `name'.
24238 (ido-sort-merged-list): Remove unused parameter `dirs'.
24239
24240 * ielm.el (ielm-input-sender): Mark unused parameter.
24241 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
24242 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
24243 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
24244 `ielm-string' as a dynamic variable accessible from the IELM prompt.
24245 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
24246
24247 * image-dired.el (image-dired-display-thumbs): Remove unused
24248 variables `curr-file' and `count'.
24249 (image-dired-remove-tag): Remove unused variable `start'.
24250 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
24251 variable `curr-file'
24252 (image-dired-rotate-original): Remove unused variable `temp-file'.
24253 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
24254 Remove unused variable `file'.
24255 (image-dired-gallery-generate): Remove unused variable `curr'.
24256 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
24257
24258 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
24259
24260 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
24261
24262 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
24263
24264 * isearch.el (minibuffer-history-symbol): Declare.
24265 (isearch-edit-string): Remove unused variable `err'.
24266 (isearch-message-prefix, isearch-message-suffix):
24267 Mark unused parameters.
24268
24269 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
24270
24271 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
24272
24273 * makesum.el (double-column): Remove unused variable `cnt'.
24274
24275 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
24276 (ido-ignore-item-temp-list): Declare.
24277
24278 * mouse-drag.el (mouse-drag-throw): Remove unused variables
24279 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
24280 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
24281 (mouse-drag-drag): Remove unused variables `mouse-delta' and
24282 `mouse-col-delta'.
24283
24284 * mouse-sel.el (mouse-extend-internal):
24285 Remove unused variable `orig-window-frame'.
24286
24287 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
24288 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
24289 Move declarations before first use.
24290 (pcomplete-opt): Mark unused parameters; doc fix.
24291
24292 * proced.el (proced-revert): Mark unused parameter.
24293 (proced-send-signal): Remove unused variable `err'.
24294
24295 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
24296 Rename parameter PREFIX-ARG to ARG.
24297 (ps-basic-plot-string, ps-basic-plot-whitespace):
24298 Mark unused parameters.
24299
24300 * replace.el (replace-count): Define.
24301 (occur-revert-function): Mark unused parameters.
24302 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
24303 (isearch-case-fold-search, isearch-string): Declare.
24304 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
24305 bind `case-fold-search'. Remove unused variables `beg' and `end',
24306 and simplify.
24307 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
24308 COUNT and bind `replace-count'.
24309 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
24310 to COUNT.
24311
24312 * savehist.el (print-readably, print-string-length): Declare.
24313
24314 * shadowfile.el (shadow-expand-cluster-in-file-name):
24315 Remove unused variable `cluster'.
24316 (shadow-copy-file): Remove unused variable `i'.
24317 (shadow-noquery, shadow-clusters, shadow-site-cluster)
24318 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
24319 (shadow-define-literal-group, shadow-define-regexp-group)
24320 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
24321
24322 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
24323 (shell): Use `called-interactively-p'.
24324 (shell-directory-tracker): Remove unused variable `chdir-failure'.
24325
24326 * simple.el (compilation-context-lines, comint-file-name-quote-list)
24327 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
24328 (delete-backward-char): Remove unused variable `ocol'.
24329 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
24330 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
24331 (event-apply-hyper-modifier, event-apply-shift-modifier)
24332 (event-apply-control-modifier, event-apply-meta-modifier):
24333 Mark unused parameters.
24334 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
24335 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
24336
24337 * speedbar.el (speedbar-ignored-directory-expressions)
24338 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
24339 (speedbar-find-file, speedbar-dir-follow)
24340 (speedbar-directory-buttons-follow, speedbar-tag-find)
24341 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
24342 (speedbar-buffers-line-directory, speedbar-buffer-click):
24343 Mark unused parameters.
24344 (speedbar-tag-file): Remove unused variable `mode'.
24345 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
24346
24347 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
24348
24349 * talk.el (talk): Remove unused variable `display'.
24350
24351 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
24352 (tar-write-region-annotate): Mark unused parameter.
24353
24354 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
24355 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
24356 Declare them, wrapped in `with-no-warnings' to avoid replacing one
24357 warning by another.
24358
24359 * time-stamp.el (time-stamp-string-preprocess):
24360 Remove unused variable `require-padding'.
24361
24362 * tree-widget.el (widget-glyph-enable): Declare.
24363 (tree-widget-action): Mark unused parameter.
24364
24365 * w32-fns.el (x-get-selection): Mark unused parameter.
24366 (autoload-make-program, generated-autoload-file): Declare.
24367
24368 * wdired.el (wdired-revert): Mark unused parameters.
24369 (wdired-xcase-word): Remove unused variable `err'.
24370
24371 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
24372 (whitespace-help-scroll): Remove unused variable `data-help'.
24373
24374 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
24375 (widget-image-insert, widget-after-change, default)
24376 (widget-default-format-handler, widget-default-notify)
24377 (widget-default-prompt-value, widget-info-link-action)
24378 (widget-url-link-action, widget-function-link-action)
24379 (widget-variable-link-action, widget-file-link-action)
24380 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
24381 (widget-field-prompt-internal, widget-field-action, widget-field-match)
24382 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
24383 (widget-insert-button-action, widget-delete-button-action, visibility)
24384 (widget-documentation-link-action, widget-documentation-string-action)
24385 (widget-const-prompt-value, widget-regexp-match, symbol)
24386 (widget-coding-system-prompt-value)
24387 (widget-key-sequence-value-to-external, sexp)
24388 (widget-sexp-value-to-internal, character, vector, cons)
24389 (widget-choice-prompt-value, widget-boolean-prompt-value)
24390 (widget-color--choose-action): Mark unused parameters.
24391 (widget-item-match-inline, widget-choice-match-inline)
24392 (widget-checklist-match, widget-checklist-match-inline)
24393 (widget-group-match): Rename parameter VALUES to VALS.
24394 (widget-field-value-set): Remove unused variable `size'.
24395 (widget-color-action): Remove unused variables `value' and `start'.
24396
24397 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
24398 variable `dir'. Doc fix.
24399 (windmove-find-other-window): Don't pass it.
24400
24401 * window.el (count-windows): Mark unused parameter.
24402 (bw-adjust-window): Remove unused variable `err'.
24403
24404 * woman.el (woman-file-name): Remove unused variable `default'.
24405 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
24406 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
24407 (global-font-lock-mode): Declare.
24408 (woman-decode-region): Mark unused parameter.
24409 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
24410
24411 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
24412 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
24413 (x-dnd-handle-moz-url): Remove unused variable `title'.
24414 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
24415
24416 * xml.el (xml-parse-tag, xml-parse-attlist):
24417 Remove unused variable `pos'.
24418
24419 2011-04-19 Glenn Morris <rgm@gnu.org>
24420
24421 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
24422 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
24423 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
24424 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
24425 * calendar/cal-html.el (cal-html-insert-minical):
24426 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
24427 (calendar-mark-date-pattern):
24428 Prefix "unused" locals.
24429
24430 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
24431 optional argument `style'.
24432
24433 * calendar/appt.el (appt-make-list):
24434 * calendar/cal-china.el (calendar-chinese-date-string):
24435 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
24436 (diary-hebrew-yahrzeit):
24437 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
24438 * calendar/calendar.el (calendar-generate-window):
24439 * calendar/time-date.el (time-to-days):
24440 Remove unused local variables.
24441
24442 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
24443
24444 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
24445 glyphless-char-display table.
24446 (tabulated-list-glyphless-char-display): New var.
24447
24448 2011-04-18 Sam Steingold <sds@gnu.org>
24449
24450 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
24451 to acknowledgments.
24452
24453 2011-04-17 Glenn Morris <rgm@gnu.org>
24454
24455 * calendar/diary-lib.el (diary-sexp-entry):
24456 * calendar/holidays.el (holiday-sexp):
24457 Set debug-on-error rather than the removed stack-trace-on-error.
24458
24459 2011-04-16 Glenn Morris <rgm@gnu.org>
24460
24461 * progmodes/f90.el: Use lexical-binding.
24462 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
24463
24464 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
24465
24466 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
24467 (mail-mode): Setup mailalias completion here instead.
24468 * mail/mailalias.el: Use lexical-binding.
24469 (pattern, mailalias-done): Declare dynamic.
24470 (mail-completion-at-point-function): New function, from mail-complete.
24471 (mail-complete): Use it.
24472 (mail-completion-expand): New function.
24473 (mail-get-names): Use it.
24474 (mail-directory, mail-directory-process, mail-directory-stream):
24475 Don't use `pattern' for lexically bound arg.
24476
24477 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
24478
24479 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
24480 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
24481 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
24482
24483 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
24484 (byte-save-window-excursion, byte-temp-output-buffer-setup)
24485 (byte-interactive-p): Define them again, for use when inlining
24486 old code.
24487
24488 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
24489
24490 * loadup.el: Use `string-to-number', not `string-to-int'.
24491
24492 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
24493
24494 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
24495 gud-gdb-complete-command.
24496 (gud-gdb-completions): New function, from gud-gdb-complete-command.
24497 (gud-gdb-completion-at-point): New function.
24498 (gud-gdb-completions): Remove.
24499
24500 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
24501
24502 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
24503 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
24504 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
24505 whether `executable-find' is bound.
24506
24507 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
24508
24509 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
24510
24511 * minibuffer.el (completion-in-region-mode-predicate)
24512 (completion-in-region-mode--predicate): New vars.
24513 (completion-in-region, completion-in-region--postch)
24514 (completion-in-region-mode): Use them.
24515 (completion--capf-wrapper): Also return the hook function.
24516 (completion-at-point, completion-help-at-point):
24517 Adjust and provide a predicate.
24518
24519 Preserve arg names for advice of subr and lexical functions (bug#8457).
24520 * help-fns.el (help-function-arglist): Consolidate the subr and
24521 new-byte-code cases. Add argument `preserve-names' to extract names
24522 from the docstring when needed.
24523 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
24524 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
24525 (ad-arglist): Use help-function-arglist's new arg.
24526 (ad-definition-type): Use cond.
24527
24528 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
24529
24530 * autorevert.el (auto-revert-handler):
24531 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
24532 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
24533 Don't quote lambda.
24534
24535 * image-mode.el (image-transform-set-scale):
24536 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
24537
24538 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
24539
24540 * net/network-stream.el (network-stream-open-starttls): Only do
24541 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
24542 Upgrades via gnutls-cli are too slow to be done opportunistically.
24543
24544 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
24545
24546 * dframe.el (dframe-current-frame): Remove spurious quote.
24547
24548 2011-04-12 Glenn Morris <rgm@gnu.org>
24549
24550 * calendar/cal-tex.el (cal-tex-end-document):
24551 Try to automatically use latin1 input if needed.
24552
24553 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
24554 Don't try to cons a mark onto an empty element.
24555
24556 2011-04-11 Leo Liu <sdl.web@gmail.com>
24557
24558 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
24559 buffers.
24560 (ido-kill-buffer-at-head): Support killing virtual buffers.
24561
24562 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
24563
24564 * minibuffer.el (completion-show-inline-help): New var.
24565 (completion--do-completion, minibuffer-complete)
24566 (minibuffer-force-complete, minibuffer-complete-word):
24567 Inhibit minibuffer messages if completion-show-inline-help is nil.
24568
24569 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
24570 to avoid interference from inline help (Bug#5849).
24571
24572 2011-04-10 Leo Liu <sdl.web@gmail.com>
24573
24574 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
24575 Fix typo.
24576
24577 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
24578
24579 * image-mode.el (image-toggle-display-image): Signal an error if
24580 not in Image mode.
24581 (image-transform-mode, image-transform-resize)
24582 (image-transform-set-rotation): Doc fix.
24583 (image-transform-set-resize): Delete.
24584 (image-transform-set-scale, image-transform-fit-to-height)
24585 (image-transform-fit-to-width): Handle image-toggle-display-image
24586 and image-transform-resize directly.
24587
24588 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
24589
24590 * doc-view.el (doc-view-fit-width-to-window)
24591 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
24592 New functions for fitting the shown image to the Emacs window size.
24593 (doc-view-mode-map): Add bindings for the new functions.
24594
24595 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
24596
24597 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
24598 Fix typo in docstring.
24599
24600 2011-04-08 Eli Zaretskii <eliz@gnu.org>
24601
24602 * files.el (file-size-human-readable): Produce one digit after
24603 decimal, like "ls -lh" does.
24604
24605 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
24606 the file size representation.
24607
24608 * simple.el (list-processes): If async subprocesses are not
24609 available, error out with a clear error message.
24610
24611 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
24612
24613 * help.el (help-form-show): New function, to be called from C.
24614 Put help-form output in a buffer named differently than *Help*.
24615
24616 2011-04-08 Eli Zaretskii <eliz@gnu.org>
24617
24618 * files.el (file-size-human-readable): New function.
24619
24620 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
24621 computing the representation inline. Don't require `cl'.
24622
24623 2011-04-08 Glenn Morris <rgm@gnu.org>
24624
24625 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
24626
24627 * net/browse-url.el (browse-url-firefox):
24628 Test system-type, not system-configuration.
24629
24630 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
24631 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
24632 Use log-edit-empty-buffer-p. (Bug#7598)
24633
24634 * net/rlogin.el (rlogin-process-connection-type): Simplify.
24635 (rlogin-mode-map): Initialize in the defvar.
24636 (rlogin): Use ignore-errors.
24637
24638 * replace.el (occur-mode-map): Some fixes for menu items.
24639
24640 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
24641
24642 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
24643
24644 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
24645
24646 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
24647 issuing unused warnings.
24648
24649 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
24650 macro directly.
24651
24652 * simple.el: Lisp reimplement of list-processes. Based on an
24653 earlier reimplementation by Leo Liu, but using tabulated-list.el.
24654 (process-menu-mode): New major mode.
24655 (list-processes--refresh, list-processes):
24656 (process-menu-visit-buffer): New functions.
24657
24658 * files.el (save-buffers-kill-emacs): Don't assume any return
24659 value of list-processes, which is undocumented anyway.
24660
24661 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
24662
24663 * emacs-lisp/tabulated-list.el: New file.
24664
24665 * emacs-lisp/package.el: Use Tabulated List mode.
24666 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
24667 (package-menu-mode): Derive from tabulated-list-mode. Set up the
24668 table format using Tabulated List mode variables.
24669 (package--push): New macro, replacing package-list-maybe-add.
24670 (package-menu--generate): Use package--push. Renamed from
24671 package--generate-package-list.
24672 (package-menu-refresh, list-packages): Use it.
24673 (package-menu--print-info): Rename from package-print-package.
24674 Return insertion data instead of inserting it directly.
24675 (package-menu-describe-package, package-menu-execute):
24676 Use tabulated-list-get-id.
24677 (package-menu-mark-delete, package-menu-mark-install)
24678 (package-menu-mark-unmark, package-menu-backup-unmark)
24679 (package-menu-mark-obsolete-for-deletion):
24680 Use tabulated-list-put-tag.
24681 (package--list-packages, package-menu-revert)
24682 (package-menu-get-package, package-menu-get-version)
24683 (package-menu-sort-by-column): Functions deleted.
24684 (package-menu-package-list, package-menu-sort-key): Vars deleted.
24685 (package-menu--status-predicate, package-menu--version-predicate)
24686 (package-menu--name-predicate)
24687 (package-menu--description-predicate): Handle arguments in the
24688 Tabulated List format.
24689 (package-list-packages-no-fetch): Call list-packages.
24690
24691 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
24692
24693 * files.el (after-find-file-from-revert-buffer): Remove variable.
24694 (after-find-file): Don't bind it.
24695 (revert-buffer-in-progress-p): New variable.
24696 (revert-buffer): Bind it.
24697 Pass nil for `after-find-file-from-revert-buffer'.
24698
24699 * saveplace.el (save-place-find-file-hook): Use new variable
24700 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
24701
24702 2011-04-06 Glenn Morris <rgm@gnu.org>
24703
24704 * Makefile.in (AUTOGEN_VCS): New variable.
24705 (autoloads): Use $AUTOGEN_VCS.
24706
24707 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
24708 * calendar/calendar.el (calendar-mode-map):
24709 Check for toolkit scroll bars. (Bug#8305)
24710
24711 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
24712
24713 * minibuffer.el (completion-in-region--postch)
24714 (completion-in-region-mode): Remove unnecessary messages.
24715
24716 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
24717
24718 * font-lock.el (font-lock-refresh-defaults):
24719 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
24720 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
24721
24722 * info.el (Info-directory-list, Info-read-node-name-2)
24723 (Info-split-parameter-string): Doc fixes.
24724 (Info-virtual-nodes): Reflow docstring.
24725 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
24726 (Info-apropos-toc-nodes, info-finder, Info-get-token)
24727 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
24728 Fix typos in docstrings.
24729 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
24730 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
24731 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
24732 (Info-restore-desktop-buffer): Mark unused parameters.
24733 (Info-directory-find-file, Info-directory-find-node)
24734 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
24735 (Info-virtual-index-find-node, Info-apropos-find-file)
24736 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
24737 Mark unused parameters; fix typos in docstrings.
24738 (Info-virtual-index): Remove unused local variable `nodename'.
24739
24740 2011-04-05 Deniz Dogan <deniz@dogan.se>
24741
24742 * net/rcirc.el: Update my e-mail address.
24743 (rcirc-mode-map): Remove M-o binding.
24744
24745 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
24746
24747 * startup.el (command-line): Save the cursor's theme-face
24748 directly, instead of using face-override-spec.
24749
24750 * custom.el (load-theme): Minor optimization in assigning faces.
24751
24752 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
24753
24754 * help-fns.el (describe-variable): Complete all variables having
24755 documentation, including keywords.
24756 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
24757
24758 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
24759
24760 Convert to lexical-binding.
24761
24762 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
24763 (bs--get-marked-string, bs--get-modified-string)
24764 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
24765 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
24766 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
24767
24768 * ehelp.el (electric-help-execute-extended)
24769 (electric-help-ctrl-x-prefix):
24770 * hexl.el (hexl-revert-buffer-function):
24771 * linum.el (linum-after-change, linum-after-scroll):
24772 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
24773
24774 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
24775
24776 2011-04-04 Daiki Ueno <ueno@unixuser.org>
24777
24778 * epa-dired.el:
24779 * epa-mail.el:
24780 * epa-hook.el:
24781 * epa-file.el:
24782 * epa.el:
24783 * epg.el: Use lexical binding.
24784
24785 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
24786
24787 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
24788
24789 * textmodes/flyspell.el (flyspell-word): Recognize default
24790 dictionary case for flyspell-mark-duplications-exceptions.
24791 Use regexp matching for languages.
24792 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
24793 default dictionary (Bug#7926).
24794
24795 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
24796
24797 * emacs-lisp/package.el (package--with-work-buffer):
24798 Recognize https URLs.
24799
24800 * net/network-stream.el: Move from gnus/proto-stream.el.
24801 Change prefix to network-stream throughout.
24802 (open-protocol-stream): Merge into open-network-stream, leaving
24803 open-protocol-stream as an alias. Handle nil BUFFER args.
24804
24805 * subr.el (open-network-stream): Move to net/network-stream.el.
24806
24807 2011-04-02 Glenn Morris <rgm@gnu.org>
24808
24809 * find-dired.el (find-exec-terminator): New option.
24810 (find-ls-option): Test for -ls support.
24811 (find-ls-subdir-switches): Test for -b in find-ls-option.
24812 (find-dired, find-grep-dired): Doc fixes.
24813 (find-dired): Use find-exec-terminator.
24814
24815 * find-dired.el (find-ls-option, find-ls-subdir-switches)
24816 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
24817 (find-name-arg): Remove purecopy.
24818
24819 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
24820 (grep-compute-defaults): Check for `-exec COMMAND +' support.
24821 Set grep-find-use-xargs, grep-find-command, and grep-find-template
24822 accordingly. Don't add the null-device if not needed.
24823
24824 * files.el (save-some-buffers): Doc fix.
24825
24826 2011-04-02 Eli Zaretskii <eliz@gnu.org>
24827
24828 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
24829
24830 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
24831
24832 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
24833 Use `dolist' rather than `mapcar'.
24834
24835 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
24836
24837 Add lexical binding.
24838
24839 * subr.el (apply-partially): Use new closures rather than CL.
24840 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
24841 (dolist, dotimes): Use slightly different expansion for lexical code.
24842 (functionp): Move to C.
24843 (letrec): New macro.
24844 (with-wrapper-hook): Use it and apply-partially instead of CL.
24845 (eval-after-load): Preserve lexical-binding.
24846 (save-window-excursion, with-output-to-temp-buffer): Turn them
24847 into macros.
24848
24849 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
24850
24851 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
24852 than the arglist.
24853 (help-add-fundoc-usage): Don't add `Not documented'.
24854 (help-function-arglist): Handle closures, subroutines, and new
24855 byte-code-functions.
24856 (help-make-usage): Remove leading underscores.
24857 (describe-function-1): Handle closures.
24858 (describe-variable): Use special-variable-p for completion.
24859
24860 * files.el (lexical-binding): Declare safe.
24861
24862 * emacs-lisp/pcase.el: Don't use destructuring-bind.
24863 (pcase--memoize): Rename from pcase-memoize. Change weakness.
24864 (pcase): Add `let' pattern.
24865 Change memoization so it actually works.
24866 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
24867 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
24868 <let>: New case.
24869
24870 * emacs-lisp/macroexp.el: Use lexical binding.
24871 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
24872 Don't convert ' to #' without checking that it's indeed quoting
24873 a lambda.
24874
24875 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
24876 Use eval-sexp-add-defvars.
24877 (eval-sexp-add-defvars): New fun.
24878
24879 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
24880
24881 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
24882 Don't autoload.
24883 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
24884 than the internal `byte-compile-lambda'.
24885 (defmethod): Don't hide code under quotes.
24886 (eieio-defmethod): New `code' argument.
24887
24888 * emacs-lisp/eieio-comp.el: Remove.
24889
24890 * emacs-lisp/edebug.el (edebug-eval-defun)
24891 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
24892 (edebug-toggle): Avoid `eval'.
24893
24894 * emacs-lisp/disass.el (disassemble-internal): Handle new
24895 `closure' objects.
24896 (disassemble-1): Handle new byte codes.
24897
24898 * emacs-lisp/cl.el (pushnew): Silence warning.
24899
24900 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
24901 (cl-byte-compile-throw): Remove.
24902 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
24903
24904 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
24905 closures.
24906
24907 * emacs-lisp/cconv.el: New file.
24908
24909 * emacs-lisp/bytecomp.el: Use lexical binding instead of
24910 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
24911 (byte-compile-initial-macro-environment):
24912 Handle declare-function here.
24913 (byte-compile--lexical-environment): New var.
24914 (byte-stack-ref, byte-stack-set, byte-discardN)
24915 (byte-discardN-preserve-tos): New lap codes.
24916 (byte-interactive-p): Don't use any more.
24917 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
24918 New macros.
24919 (byte-compile-lapcode): Use them and handle new lap codes.
24920 (byte-compile-obsolete): Remove.
24921 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
24922 (byte-compile-arglist-warn): Check late def of inlinable funs.
24923 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
24924 since they should have been expanded by now.
24925 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
24926 (byte-compile-from-buffer): Remove unused second arg.
24927 (byte-compile-preprocess): New function.
24928 (byte-compile-toplevel-file-form): New function to distinguish
24929 file-form calls from outside from file-form calls from hunk-handlers.
24930 (byte-compile-file-form): Simplify.
24931 (byte-compile-file-form-defsubst): Remove.
24932 (byte-compile-file-form-defmumble): Simplify now that
24933 byte-compile-lambda always returns a byte-code-function.
24934 (byte-compile): Preprocess.
24935 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
24936 Remove, not used any more.
24937 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
24938 (byte-compile-make-args-desc): New funs.
24939 (byte-compile-lambda): Handle lexical functions. Always return
24940 a byte-code-function.
24941 (byte-compile-reserved-constants): New var, to make up room for
24942 closed-over variables.
24943 (byte-compile-constants-vector): Obey it.
24944 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
24945 (byte-compile-macroexpand-declare-function): New function.
24946 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
24947 byte-code-functions.
24948 (byte-compile-form): Check obsolescence here.
24949 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
24950 (byte-compile-variable-ref): Remove.
24951 (byte-compile-dynamic-variable-op): New fun.
24952 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
24953 (byte-compile-variable-set): New funs.
24954 (byte-compile-discard): Add 2 args.
24955 (byte-compile-stack-ref, byte-compile-stack-set)
24956 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
24957 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
24958 macroexpand-all instead.
24959 (byte-compile-quote-form): Remove.
24960 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
24961 (byte-compile-bind, byte-compile-unbind): New funs.
24962 (byte-compile-let): Handle let* and lexical binding.
24963 (byte-compile-let*): Remove.
24964 (byte-compile-catch, byte-compile-unwind-protect)
24965 (byte-compile-track-mouse, byte-compile-condition-case):
24966 Handle a new :fun-body form, used for lexical scoping.
24967 (byte-compile-save-window-excursion)
24968 (byte-compile-with-output-to-temp-buffer): Remove.
24969 (byte-compile-defun): Simplify.
24970 (byte-compile-stack-adjustment): New fun.
24971 (byte-compile-out): Use it.
24972 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
24973
24974 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
24975 handler any more.
24976
24977 * emacs-lisp/byte-opt.el: Use lexical binding.
24978 (byte-inline-lapcode): Remove (to bytecomp).
24979 (byte-compile-inline-expand): Pay attention to inlining to/from
24980 lexically bound code.
24981 (byte-compile-unfold-lambda): Don't handle byte-code-functions
24982 any more.
24983 (byte-optimize-form-code-walker): Don't handle save-window-excursion
24984 any more and don't call compiler-macros.
24985 (byte-compile-splice-in-already-compiled-code): Remove.
24986 (byte-code): Don't inline any more.
24987 (disassemble-offset): Receive `bytes' as argument rather than via
24988 dynamic scoping.
24989 (byte-compile-tag-number): Declare before first use.
24990 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
24991 `return' even if make-spliceable.
24992 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
24993 obsolete interactive-p.
24994 (byte-optimize-lapcode): Optimize new lap-codes.
24995 Don't trip up on new form of `byte-constant' lap code.
24996
24997 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
24998
24999 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
25000
25001 * custom.el (custom-initialize-default, custom-declare-variable):
25002 Use `defvar'.
25003
25004 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
25005 New variables.
25006 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
25007 (COMPILE_FIRST): Add macroexp and cconv.
25008 * makefile.w32-in: Mirror changes in Makefile.in.
25009
25010 * vc/cvs-status.el:
25011 * vc/diff-mode.el:
25012 * vc/log-edit.el:
25013 * vc/log-view.el:
25014 * vc/smerge-mode.el:
25015 * textmodes/bibtex-style.el:
25016 * textmodes/css-mode.el:
25017 * startup.el:
25018 * uniquify.el:
25019 * minibuffer.el:
25020 * newcomment.el:
25021 * reveal.el:
25022 * server.el:
25023 * mpc.el:
25024 * emacs-lisp/smie.el:
25025 * doc-view.el:
25026 * dired.el:
25027 * abbrev.el: Use lexical binding.
25028
25029 2011-04-01 Eli Zaretskii <eliz@gnu.org>
25030
25031 * info.el (info-display-manual): New function.
25032
25033 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
25034
25035 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
25036
25037 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
25038
25039 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
25040 an entry for that server in rcirc-authinfo. (Bug#8385)
25041
25042 2011-03-31 Glenn Morris <rgm@gnu.org>
25043
25044 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
25045
25046 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
25047
25048 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
25049
25050 * progmodes/python.el (python-default-interpreter)
25051 (python-python-command-args, python-jython-command-args)
25052 (python-which-shell, python-which-args, python-which-bufname)
25053 (python-file-queue, python-comint-output-filter-function)
25054 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
25055 variables and functions.
25056
25057 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
25058
25059 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
25060 (completion-in-region-mode): New minor mode.
25061 (completion-in-region): Use it.
25062 (completion-in-region--data, completion-in-region-mode-map): New vars.
25063 (completion-in-region--postch): New function.
25064 (completion--capf-misbehave-funs, completion--capf-safe-funs):
25065 New vars.
25066 (completion--capf-wrapper): New function.
25067 (completion-at-point): Use it to track well-behavedness of
25068 hook functions.
25069 (completion-help-at-point): New command.
25070
25071 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
25072
25073 * vc/add-log.el (add-change-log-entry): Don't use whitespace
25074 syntax class to search for whitespace on a single line
25075 (Message-ID: <4D938140.4030905@redhat.com>).
25076
25077 2011-03-30 Leo Liu <sdl.web@gmail.com>
25078
25079 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
25080 New commands.
25081 (edit-abbrevs-map): Bind them here.
25082 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
25083
25084 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
25085
25086 * allout.el (allout-hide-by-annotation, allout-flag-region):
25087 Reduce possibility of overlay leakage by making them volatile.
25088
25089 * allout-widgets.el (allout-widgets-tally): Define as nil so the
25090 hash is not shared between buffers. Mode initialization is
25091 responsible for giving it a useful starting value.
25092 (allout-item-span): Reduce possibility of overlay leakage by
25093 making them volatile.
25094 (allout-widgets-count-buttons-in-region): Add diagnostic function
25095 for tracking down button overlay leaks.
25096
25097 2011-03-29 Leo Liu <sdl.web@gmail.com>
25098
25099 * ido.el (ido-read-internal): Use the default history var
25100 minibuffer-history if no HISTORY is specified.
25101
25102 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
25103
25104 * net/imap.el (imap-shell-open, imap-process-connection-type):
25105 Use imap-process-connection-type for 'shell' streams as well as
25106 Kerberos, SSL, other subprocesses.
25107
25108 2011-03-28 Leo Liu <sdl.web@gmail.com>
25109
25110 * abbrev.el (abbrev-table-empty-p): New function.
25111 (prepare-abbrev-list-buffer): Place empty abbrev tables after
25112 nonempty ones. (Bug#5937)
25113
25114 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
25115
25116 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
25117
25118 2011-03-27 Leo Liu <sdl.web@gmail.com>
25119
25120 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
25121 for foreground and background colors.
25122 (ansi-color-make-color-map): Adapt.
25123
25124 2011-03-25 Leo Liu <sdl.web@gmail.com>
25125
25126 * midnight.el (midnight-time-float): Remove. Note it calculates
25127 the microsecond component incorrectly and seconds-to-time does the
25128 same job.
25129 Remove redundant (require 'timer).
25130
25131 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
25132 (ido-completions): Remove unused arguments. (Bug#8329)
25133
25134 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
25135
25136 * minibuffer.el (completion--flush-all-sorted-completions):
25137 Remove itself from hook.
25138 (completion-at-point): Let the functions perform the completion
25139 immediately and return nil or t.
25140 * comint.el (comint-dynamic-complete-functions): Now identical to
25141 completion-at-point-functions.
25142 (comint-dynamic-list-input-ring): Remove unused var `index'.
25143 (comint--match-partial-filename, comint--unquote&expand-filename):
25144 New funs, split from comint-match-partial-filename.
25145 (comint-dynamic-complete): Use completion-at-point.
25146 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
25147
25148 2011-03-24 Drew Adams <drew.adams@oracle.com>
25149
25150 * thingatpt.el: Support `defun'.
25151
25152 2011-03-23 Leo Liu <sdl.web@gmail.com>
25153
25154 * abbrevlist.el: Move to obsolete/abbrevlist.el.
25155
25156 * help-mode.el (help-mode-finish): Tweak regexp.
25157
25158 2011-03-23 Glenn Morris <rgm@gnu.org>
25159
25160 * eshell/esh-opt.el (eshell-eval-using-options):
25161 Do not bind unused local variable `eshell-option-stub'.
25162
25163 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
25164
25165 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
25166
25167 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
25168 keymap variable in `with-no-warnings' to avoid a warning when the
25169 keymap has been already `defconst'ed.
25170
25171 2011-03-22 Leo Liu <sdl.web@gmail.com>
25172
25173 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
25174 encode all chars in abbrevs; otherwise use emacs-mule or
25175 utf-8-emacs. (Bug#8308)
25176
25177 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
25178
25179 * simple.el (backward-delete-char-untabify):
25180 Avoid warning about using `delete-backward-char'.
25181
25182 * image.el (image-type-file-name-regexps): Make it variable.
25183 `imagemagick-register-types' modifies it, and the user may want
25184 to add new extensions for known image types.
25185 (imagemagick-register-types): Throw error if not using ImageMagick.
25186
25187 2011-03-22 Leo Liu <sdl.web@gmail.com>
25188
25189 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
25190 located before rcirc-prompt-end-marker.
25191 (rcirc-complete): Error if point is not after rcirc prompt.
25192 Handle the case when table is nil.
25193 (rcirc-user-authenticated): Define to fix compiler warning.
25194
25195 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
25196
25197 * custom.el (custom--inhibit-theme-enable): Make it affect only
25198 custom-theme-set-variables and custom-theme-set-faces.
25199 (provide-theme): Ignore custom--inhibit-theme-enable.
25200 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
25201 (custom-enabling-themes): Delete variable.
25202 (enable-theme): Accept only loaded themes as arguments.
25203 Ignore the special custom-enabled-themes variable.
25204 (custom-enabled-themes): Forbid themes from setting this.
25205 Eliminate use of custom-enabling-themes.
25206 (custom-push-theme): Quote "changed" custom var entry.
25207
25208 2011-03-21 Leo Liu <sdl.web@gmail.com>
25209
25210 * ido.el (ido-read-internal): Add ido-selected to history instead
25211 of user input.
25212
25213 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
25214
25215 * subr.el (deferred-action-list, deferred-action-function):
25216 Mark obsolete.
25217
25218 2011-03-21 Leo Liu <sdl.web@gmail.com>
25219
25220 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
25221 change on 2011-02-13 (bug#8309).
25222
25223 * minibuffer.el (read-file-name-function): Change default value.
25224 (read-file-name--defaults): Rename from read-file-name-defaults.
25225 (read-file-name-default): Rename from read-file-name.
25226 (read-file-name): Call read-file-name-function.
25227
25228 2011-03-21 Glenn Morris <rgm@gnu.org>
25229
25230 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
25231 Doc fixes.
25232
25233 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
25234
25235 * cus-theme.el: Add missing provide statement.
25236 (customize-create-theme): Extract theme value correctly.
25237 (custom-theme-visit-theme): Autoload.
25238 (customize-create-theme): Prompt before inserting default faces.
25239
25240 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
25241
25242 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
25243 units and musical notes.
25244
25245 2011-03-20 Leo Liu <sdl.web@gmail.com>
25246
25247 * ido.el (ido-read-internal): Use completing-read-default.
25248 (ido-completing-read): Fix compatibility with completing-read.
25249
25250 2011-03-20 Christian Ohler <ohler@gnu.org>
25251
25252 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
25253 (ert-delete-all-tests): Use `called-interactively-p' rather than
25254 `interactive-p'.
25255 (ert--make-xrefs-region): Respect END.
25256
25257 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
25258
25259 * dired-aux.el (dired-create-directory): Signal an error if the
25260 directory already exists (Bug#8246).
25261
25262 * facemenu.el (list-colors-display): Call list-faces-display
25263 inside with-help-window.
25264 (list-colors-print): Use display property to align the final
25265 column, instead of checking window-width.
25266
25267 2011-03-19 Eli Zaretskii <eliz@gnu.org>
25268
25269 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
25270 windows-nt systems.
25271 (emerge-protect-metachars): Quote correctly for ms-dos and
25272 windows-nt systems.
25273
25274 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
25275
25276 * info.el (info-initialize): Replace all uses of `:' with
25277 path-separator for compatibility with non-Unix systems.
25278 Cache quoting of path-separator. (Bug#8258)
25279
25280 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
25281
25282 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
25283 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
25284 (mouse-avoidance-mode): Fix typos in docstrings.
25285
25286 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
25287
25288 * startup.el (package-subdirectory-regexp): Move from package.el.
25289 Omit \\` and \\', and let callers add them.
25290
25291 * emacs-lisp/package.el (package-strip-version)
25292 (package-load-all-descriptors): Add \\` and \\' to
25293 package-subdirectory-regexp before using it.
25294 (package-untar-buffer): New arg DIR; ensure that file untars only
25295 into this expected directory. Remove superfluous delete-region.
25296 (package-unpack): Caller changed.
25297 (package-tar-file-info): Use package-subdirectory-regexp.
25298
25299 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
25300
25301 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
25302 diff-mode-shared-map (bug#8284).
25303 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
25304
25305 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
25306
25307 * calendar/time-date.el (format-seconds): Use assoc instead of
25308 assoc-string, since assoc-string doesn't exist in XEmacs.
25309
25310 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
25311
25312 * custom.el (custom-known-themes): Reflow docstring.
25313 (custom-theme-load-path): Fix typo in docstring.
25314 (load-theme): Fix typo in error message.
25315 (custom-available-themes, custom-variable-theme-value):
25316 Use `let', not `let*'.
25317
25318 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
25319
25320 * calc/README: Mention inclusion of musical notes.
25321
25322 * calc/calc-units.el (calc-lu-quant): Rename from
25323 `calc-logunits-quantity'.
25324 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
25325 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
25326 (calc-db): Rename from `calc-dblevel'.
25327 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
25328 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
25329 (calc-np): Rename from `calc-nplevel'.
25330 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
25331 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
25332 (calc-lu-plus): Rename from `calc-logunits-add'.
25333 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
25334 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
25335 (calc-lu-minus): Rename from `calc-logunits-sub'.
25336 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
25337 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
25338 (calc-lu-times): Rename from `calc-logunits-mul'.
25339 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
25340 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
25341 (calc-lu-divide): Rename from `calc-logunits-div'.
25342 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
25343 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
25344
25345 * calc/calc-ext.el (calc-init-extensions): Update the names of the
25346 functions being autoloaded.
25347
25348 * calc/calc.el (calc-lu-power-reference): Rename from
25349 `calc-logunits-power-reference'.
25350 (calc-lu-field-reference): Rename from
25351 `calc-logunits-field-reference'.
25352
25353 * calc/calc-help.el (calc-l-prefix-help):
25354 Mention musical note functions.
25355
25356 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
25357
25358 * minibuffer.el (completion-all-sorted-completions):
25359 Use :completion-cycle-penalty text property if present.
25360
25361 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
25362
25363 * allout.el (allout-yank-processing): Adjust for new rebulleting
25364 regime so bullet being yanked is used without prompting the user
25365 for a choice.
25366
25367 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
25368
25369 * startup.el (command-line): Warn the user that _emacs is deprecated.
25370
25371 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
25372
25373 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
25374 (delphi-verbose, delphi-comment-face, delphi-string-face)
25375 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
25376 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
25377 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
25378 (delphi-new-comment-line, delphi-font-lock-defaults)
25379 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
25380 Fix typos in docstrings.
25381
25382 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
25383
25384 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
25385 Invert the roles of character and string values for INSTEAD, so a
25386 string is used for the more common case of a defaulting prompt.
25387
25388 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25389
25390 * progmodes/ruby-mode.el (ruby-backward-sexp):
25391 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
25392 * play/gamegrid.el (gamegrid-make-face):
25393 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
25394 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
25395 * notifications.el (notifications-notify):
25396 * net/xesam.el (xesam-search-engines):
25397 * net/quickurl.el (quickurl-list-insert):
25398 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
25399
25400 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
25401
25402 * startup.el (command-line): Update package subdirectory regexp.
25403
25404 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25405
25406 * allout.el (allout-abbreviate-flattened-numbering)
25407 (allout-mode-deactivate-hook): Fix up obsolescence "date".
25408
25409 * subr.el (read-char-choice): Only show the cursor after the prompt,
25410 not after the answer.
25411
25412 2011-03-15 Kevin Ryde <user42@zip.com.au>
25413
25414 * help-fns.el (variable-at-point): Skip leading quotes, if any
25415 (bug#8253).
25416
25417 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25418
25419 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
25420 warning message.
25421
25422 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
25423
25424 * shell.el (shell): When called interactively, offer to change the
25425 shell file name on remote hosts.
25426
25427 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
25428
25429 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
25430 integration for LDAP parameters. The host, base, user or binddn,
25431 and secret tokens can be specified in a netrc file, for instance.
25432 This is optional because an `auth-source' parameter must be
25433 specified in the search attributes.
25434
25435 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
25436
25437 * help.el (describe-mode): Link to the mode's definition (bug#8185).
25438
25439 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
25440
25441 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
25442 into declaration. Remove redundant and harmful binding.
25443
25444 2011-03-12 Eli Zaretskii <eliz@gnu.org>
25445
25446 * files.el (file-ownership-preserved-p): Pass `integer' as an
25447 explicit 2nd argument to `file-attributes'. If the file's owner
25448 is the Administrators group on Windows, and the current user is
25449 Administrator, consider that a match.
25450
25451 * server.el (server-ensure-safe-dir): Consider server directory
25452 safe on MS-Windows if its owner is the Administrators group while
25453 the current Emacs user is Administrator. Use `=' to compare
25454 numerical UIDs, since they could be integers or floats.
25455
25456 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
25457
25458 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
25459
25460 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
25461
25462 Sync with Tramp 2.2.1.
25463
25464 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
25465
25466 * net/trampver.el: Update release number.
25467
25468 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
25469
25470 * progmodes/compile.el (compilation--previous-directory): Fix up
25471 various nil/dead-marker mismatches (bug#8014).
25472 (compilation-directory-properties, compilation-error-properties):
25473 Don't call it at a position past the one we're about to change.
25474
25475 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
25476 Disable obsolescence warnings in the file that declares it.
25477
25478 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
25479
25480 * allout-widgets.el (allout-widgets-tally):
25481 Initialize allout-widgets-tally as a hash table rather than nil to
25482 prevent mode-line redisplay warnings. Also, clarify the module
25483 description and fix a comment typo.
25484
25485 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
25486
25487 * help-fns.el (describe-variable): Don't complete keywords.
25488 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
25489
25490 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
25491
25492 * emacs-lisp/package.el (package-version-join): Impose a standard
25493 string representation for pre/alpha/beta version lists.
25494 (package-unpack-single): Standardize the directory name by passing
25495 it through package-version-join.
25496 (package-strip-rcs-id): Accept any version string that does not
25497 signal an error in version-to-list.
25498
25499 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
25500
25501 * simple.el (delete-trailing-whitespace): Return nil for the
25502 benefit of `write-file-functions'.
25503
25504 2011-03-10 Glenn Morris <rgm@gnu.org>
25505
25506 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
25507
25508 * vc/vc-git.el (vc-git-program): New option.
25509 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
25510 (vc-git--call): Use it.
25511
25512 * eshell/esh-util.el (eshell-condition-case): Doc fix.
25513
25514 * cus-edit.el (Custom-newline): If no button at point, look
25515 for a subgroup button at start-of-line. (Bug#2298)
25516
25517 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
25518
25519 2011-03-10 Julien Danjou <julien@danjou.info>
25520
25521 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
25522 `cursor-type' is nil.
25523
25524 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
25525
25526 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
25527
25528 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
25529
25530 * allout.el: Change so yank of distinctive-bullet items
25531 preserves the existing header prefix, rebulleting it if necessary,
25532 rather than replacing it. This is necessary for proper operation
25533 of cooperative addons like allout-widgets.
25534 (allout-make-topic-prefix, allout-rebullet-heading):
25535 Change SOLICIT arg to INSTEAD, and interpret additionally a string
25536 value as alternate bullet to be used, instead of prompting the user
25537 for a bullet character.
25538
25539 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
25540
25541 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
25542 Do not use `tramp-file-name-port', because this returns also
25543 `tramp-default-port'.
25544
25545 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
25546
25547 * net/rcirc.el (rcirc-handler-001): Remove useless
25548 with-rcirc-process-buffer.
25549 (rcirc-check-auth-status): Swap arguments to string-match.
25550
25551 2011-03-09 Glenn Morris <rgm@gnu.org>
25552
25553 * shell.el (shell-mode):
25554 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
25555
25556 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
25557 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
25558
25559 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
25560
25561 * emacs-lisp/package.el (package-refresh-contents)
25562 (package-menu-execute): Use condition-case-no-debug.
25563
25564 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
25565
25566 * simple.el (shell-command-to-string): Use `process-file'.
25567
25568 * emacs-lisp/package.el (package-tar-file-info): Handle also
25569 remote files.
25570
25571 * emacs-lisp/package-x.el (package-upload-buffer-internal):
25572 Use `equal' for upload base check.
25573
25574 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
25575
25576 * textmodes/texinfo.el (texinfo-environments):
25577 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
25578
25579 2011-03-08 Glenn Morris <rgm@gnu.org>
25580
25581 * cus-start.el (cursor-in-non-selected-windows):
25582 Fix :set quoting oddness. (Bug#8192)
25583
25584 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
25585 in some setf expressions. (Bug#2159)
25586
25587 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
25588
25589 * custom.el (custom-available-themes): Return themes in
25590 alphabetical order.
25591
25592 See ChangeLog.15 for earlier changes.
25593
25594 ;; Local Variables:
25595 ;; coding: utf-8
25596 ;; End:
25597
25598 Copyright (C) 2011-2013 Free Software Foundation, Inc.
25599
25600 This file is part of GNU Emacs.
25601
25602 GNU Emacs is free software: you can redistribute it and/or modify
25603 it under the terms of the GNU General Public License as published by
25604 the Free Software Foundation, either version 3 of the License, or
25605 (at your option) any later version.
25606
25607 GNU Emacs is distributed in the hope that it will be useful,
25608 but WITHOUT ANY WARRANTY; without even the implied warranty of
25609 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25610 GNU General Public License for more details.
25611
25612 You should have received a copy of the GNU General Public License
25613 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.