Update ChangeLog.
[bpt/emacs.git] / lisp / ChangeLog
1 2012-01-18 Alan Mackenzie <acm@muc.de>
2
3 Eliminate sluggishness and hangs in fontification of "semicolon
4 deserts".
5
6 * progmodes/cc-engine.el (c-state-nonlit-pos-interval): change
7 value 10000 -> 3000.
8 (c-state-safe-place): Reformulate so it doesn't stack up an
9 infinite number of wrong entries in c-state-nonlit-pos-cache.
10 (c-determine-limit-get-base, c-determine-limit): New functions to
11 determine backward search limits disregarding literals.
12 (c-find-decl-spots): Amend commenting.
13 (c-cheap-inside-bracelist-p): New function which detects "={".
14
15 * progmodes/cc-fonts.el
16 (c-make-font-lock-BO-decl-search-function): Give a limit to a
17 backward search.
18 (c-font-lock-declarations): Fix an occurrence of point being
19 undefined. Check additionally for point being in a bracelist or
20 near a macro invocation without a semicolon so as to avoid a
21 fruitless time consuming search for a declarator. Give a more
22 precise search limit for declarators using the new
23 c-determine-limit.
24
25 2012-01-18 Glenn Morris <rgm@gnu.org>
26
27 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
28 (set-auto-mode): Doc fixes.
29
30 2012-01-17 Glenn Morris <rgm@gnu.org>
31
32 * isearch.el (search-nonincremental-instead): Fix doc typo.
33
34 * dired.el (dired-insert-directory): Handle newlines in directory name.
35 (dired-build-subdir-alist): Unescape newlines in directory name.
36
37 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
38
39 * net/tramp.el (tramp-local-end-of-line): New defcustom.
40 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
41 (tramp-action-terminal): Use it. (Bug#10530)
42
43 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
44
45 * minibuffer.el (completion--replace): Strip properties (bug#10062).
46
47 2012-01-16 Martin Rudalics <rudalics@gmx.at>
48
49 * window.el (window-state-ignored-parameters): Remove variable.
50 (window--state-get-1): Rename argument MARKERS to IGNORE.
51 Handle persistent window parameters. Make copy of clone-of
52 parameter only if requested. (Bug#10348)
53 (window--state-put-2): Install a window parameter only if it has
54 a non-nil value or an existing parameter shall be overwritten.
55
56 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
57
58 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
59
60 2012-01-14 Eli Zaretskii <eliz@gnu.org>
61
62 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
63 don't pass the (nil) value of `upnode' to string-match.
64
65 2012-01-14 Chong Yidong <cyd@gnu.org>
66
67 * startup.el (command-line): Fix X resource class for cursorColor.
68 Fix values recognized by the cursorBlink resource.
69
70 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
71
72 * epg.el (epg--make-temp-file): Avoid permission race condition
73 when running on old Emacs versions (bug#10403).
74
75 2012-01-14 Glenn Morris <rgm@gnu.org>
76
77 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
78
79 2012-01-13 Alan Mackenzie <acm@muc.de>
80
81 Fix filling for when filladapt mode is enabled.
82
83 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
84 c-mask-paragraph, pass in `fill-paragraph' rather than
85 `fill-region-as-paragraph'. (This is a reversion of a previous
86 change.)
87 * progmodes/cc-mode.el (c-basic-common-init): Make
88 fill-paragraph-handle-comment buffer local and set it to nil.
89
90 2012-01-13 Glenn Morris <rgm@gnu.org>
91
92 * dired.el (dired-switches-escape-p): New function.
93 (dired-insert-directory): Use dired-switches-escape-p.
94 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
95
96 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
97
98 2012-01-12 Glenn Morris <rgm@gnu.org>
99
100 * mail/sendmail.el (mail-mode): Update paragraph-separate for
101 changes in adaptive-fill-regexp. (Bug#10276)
102
103 2012-01-11 Alan Mackenzie <acm@muc.de>
104
105 Fix Emacs bug #10463 - put `widen's around the critical spots.
106
107 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
108 widen around each invocation of c-state-pp-to-literal. Remove an
109 unused let variable.
110
111 2012-01-11 Glenn Morris <rgm@gnu.org>
112
113 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
114 Doc fix.
115
116 2012-01-10 Chong Yidong <cyd@gnu.org>
117
118 * net/network-stream.el (network-stream-open-starttls):
119 Avoid emitting a confusing error message when the server gives a bad
120 response to the capability command.
121
122 2012-01-10 Glenn Morris <rgm@gnu.org>
123
124 * mail/unrmail.el (unrmail): Tweak previous change.
125
126 2012-01-09 Chong Yidong <cyd@gnu.org>
127
128 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
129
130 2012-01-08 Alan Mackenzie <acm@muc.de>
131
132 Optimise font locking in long enum definitions.
133
134 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
135 arm to a cond form to handle enums.
136 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
137 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
138
139 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
140
141 * files.el (move-file-to-trash): Preserve default file modes on error.
142 (Bug#10401)
143
144 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
145
146 * faces.el (set-face-attribute): Clarify the meaning of the nil
147 frame (bug#10294).
148
149 * subr.el (with-selected-frame): Mention that the selected frame
150 is restored (bug#9980).
151
152 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
153 (bug#9759).
154
155 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
156 (password-read): Don't autoload unused function.
157
158 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
159
160 * progmodes/which-func.el (which-func-mode): Turn into a
161 non-interactive function and mark as obsolete (bug#10428).
162
163 2012-01-06 Chong Yidong <cyd@gnu.org>
164
165 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
166 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
167 functions, along with 1 and -1.
168
169 2012-01-06 Eli Zaretskii <eliz@gnu.org>
170
171 * time.el (display-time-load-average)
172 (display-time-default-load-average): Doc fixes. See the thread
173 starting at
174 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
175 for the details.
176
177 2012-01-06 Glenn Morris <rgm@gnu.org>
178
179 * mail/unrmail.el (unrmail): Give an explicit error if the input file
180 has no messages. (Bug#10377)
181
182 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
183 than Info-edit. (Bug#10385)
184
185 * time.el (display-time-load-average, display-time-next-load-average):
186 Doc fixes.
187
188 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
189 local setting of buffer-read-only to the input buffer. (Bug#10419)
190
191 * calendar/calendar.el (calendar-mode):
192 Locally set scroll-margin to 0. (Bug#10379)
193
194 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
195
196 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
197
198 2012-01-05 Glenn Morris <rgm@gnu.org>
199
200 * eshell/em-unix.el (diff-no-select): Autoload it.
201 (eshell/diff): Use diff-no-select. (Bug#10420)
202
203 2012-01-05 Chong Yidong <cyd@gnu.org>
204
205 * shell.el (shell-dynamic-complete-functions): Revert last change.
206 (shell-command-completion-function): New function.
207 (shell-completion-vars): Use it to implement
208 shell-completion-execonly (Bug#10417).
209
210 * custom.el (enable-theme): Don't set custom-safe-themes.
211
212 * cus-theme.el (custom-theme-merge-theme):
213 Ignore custom-enabled-themes and custom-safe-themes.
214
215 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
216
217 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
218 first prompt in `sql-interacive-mode'.
219 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
220 keywords.
221 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
222 (sql-product-interactive): Bug fix: Set `sql-buffer' in
223 context of original buffer. Invoke `sql-login-hook'.
224
225 2012-01-04 Eli Zaretskii <eliz@gnu.org>
226
227 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
228 letters in cite-prefix.
229
230 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
231
232 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
233
234 2012-01-03 Chong Yidong <cyd@gnu.org>
235
236 * shell.el (shell-dynamic-complete-functions):
237 Put pcomplete-completions-at-point, so as to try
238 comint-filename-completion first (Bug#10417).
239
240 2012-01-02 Richard Stallman <rms@gnu.org>
241
242 * battery.el (battery-status-function):
243 Detect when to use battery-yeeloong-sysfs.
244 (battery-echo-area-format): Add string for Yeeloong.
245 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
246 (battery-yeeloong-sysfs): New function.
247
248 2012-01-02 Chong Yidong <cyd@gnu.org>
249
250 * dirtrack.el (dirtrack-list): Eliminate unused third element.
251 (dirtrack): Merge code for handling relative filenames in prompt
252 from shell-dir-cookie-watcher.
253 (dirtrack-debug-message): New arg to avoid excess format calls.
254
255 * shell.el (shell-dir-cookie-re): Variable deleted.
256 (shell-dir-cookie-watcher): Function deleted.
257 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
258 with dirtrack-mode.
259
260 2012-01-01 Eli Zaretskii <eliz@gnu.org>
261
262 * term/w32-win.el (dynamic-library-alist) <gnutls>:
263 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
264 libgnutls-26.dll.
265
266 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
267
268 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
269
270 2011-12-31 Eli Zaretskii <eliz@gnu.org>
271
272 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
273 headers of non-MIME messages, when rmail-enable-mime is non-nil.
274
275 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
276
277 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
278 also for alternative shells.
279 (tramp-open-connection-setup-interactive-shell): Check, whether
280 the shell is a busybox.
281 (tramp-send-command): Don't suppress multiple prompts for
282 busyboxes, it hurts.
283
284 2011-12-28 Chong Yidong <cyd@gnu.org>
285
286 * progmodes/gdb-mi.el (gdb-get-source-file-list)
287 (gdb-get-source-file): Move mode line update to
288 gdb-get-source-file (Bug#10087).
289
290 2011-12-25 Chong Yidong <cyd@gnu.org>
291
292 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
293 gud-gdb-marker-filter without taking it as an argument.
294 (gud-gdb-run-command-fetch-lines): Caller changed.
295 (gud-gdb-completion-function): New variable.
296 (gud-gdb-completion-at-point): Use it.
297 (gud-gdb-completions-1): Split from gud-gdb-completions.
298
299 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
300 function as separate arguments.
301 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
302 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
303 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
304 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
305 (gdb-stopped, def-gdb-auto-update-trigger)
306 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
307 (gdb-get-changed-registers, gdb-get-main-selected-frame):
308 Callers changed.
309 (gud-gdbmi-completions): New function.
310 (gdb): Use it for generating the completion table.
311
312 2011-12-24 Alan Mackenzie <acm@muc.de>
313
314 Introduce a mechanism to widen the region used in context font
315 locking. Use this to protect declarations from losing their contexts.
316
317 * progmodes/cc-langs.el (c-before-font-lock-functions):
318 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
319 (c-before-context-fontification-functions): New defvar, a list of
320 functions to be run just before context (etc.) font locking.
321
322 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
323 New, functionality extracted from
324 c-neutralize-syntax-in-and-mark-CPP.
325 (c-in-after-change-fontification): New variable.
326 (c-after-change): Set c-in-after-change-fontification.
327 (c-set-fl-decl-start): Rejig its interface, so it can be called
328 from both after-change and context fontifying.
329 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
330 New functions.
331 (c-standard-font-lock-fontify-region-function): New variable.
332 (c-font-lock-fontify-region): New function.
333
334 2011-12-24 Juri Linkov <juri@jurta.org>
335
336 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
337 (Bug#10348)
338
339 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
340
341 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
342 existence of source file. (Bug#10325)
343
344 2011-12-23 Alan Mackenzie <acm@muc.de>
345
346 Fix unstable fontification inside templates.
347
348 * progmodes/cc-langs.el (c-before-font-lock-functions):
349 Newly created from the singular version. The (c c++ objc) entry now
350 additionally has c-set-fl-decl-start. The other languages (apart
351 from AWK) have that as a single entry.
352
353 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
354 The functionality for "local" declarations has been extracted to
355 c-set-fl-decl-start.
356
357 * progmodes/cc-mode.el (c-common-init, c-after-change):
358 Changes due to pluralisation of c-before-font-lock-functions.
359 (c-set-fl-decl-start): New function, extracted from
360 c-font-lock-enclosing-decls and enhanced.
361
362 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
363
364 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
365
366 2011-12-22 Juri Linkov <juri@jurta.org>
367
368 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
369
370 2011-12-22 Chong Yidong <cyd@gnu.org>
371
372 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
373
374 2011-12-21 Drew Adams <drew.adams@oracle.com>
375
376 * files.el (file-remote-p): Fix docstring. (Bug#10319)
377
378 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
379
380 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
381
382 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
383
384 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
385 highlighting and support. Fix up comments for capitalization.
386 (cfengine-mode-debug): New var.
387 (cfengine3-mode): Change the modeline indicator to "CFE3".
388 (cfengine3-font-lock-keywords): Improve defun highlighting.
389 (cfengine2-actions): Rename from `cfengine-actions'.
390 (cfengine2-font-lock-keywords): Rename from
391 `cfengine-font-lock-keywords'.
392 (cfengine2-imenu-expression): Rename from
393 `cfengine-imenu-expression'.
394 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
395 (cfengine2-beginning-of-defun): Rename from
396 `cfengine-beginning-of-defun'.
397 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
398 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
399 (cfengine2-mode): Rename from `cfengine-mode'. Change the
400 modeline indicator to "CFE2".
401 (cfengine-mode): Defalias to `cfengine-auto-mode'.
402 (cfengine-mode-abbrevs): Mark obsolete.
403
404 2011-12-21 Chong Yidong <cyd@gnu.org>
405
406 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
407 filename argument.
408
409 2011-12-20 Martin Rudalics <rudalics@gmx.at>
410
411 * window.el (window-normalize-buffer-to-display): Remove.
412 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
413
414 2011-12-19 Chong Yidong <cyd@gnu.org>
415
416 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
417 Don't signal an error in a predicate function; return non-nil.
418 (vc-dir-mark-file): Move the error here.
419 (vc-dir-mark-unmark): If acting on the region, keep going if one
420 of the entries cannot be marked/unmarked.
421 (vc-dir-mark-all-files): If current entry is a directory, mark
422 only child files, as documented.
423
424 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
425
426 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
427 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
428 addition.
429
430 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
431
432 * term/ns-win.el (ns-get-selection-internal)
433 (ns-store-selection-internal): Declare.
434 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
435 Declare as obsolete.
436 (ns-get-pasteboard, ns-paste-secondary):
437 Use ns-get-selection-internal.
438 (ns-set-pasteboard, ns-copy-including-secondary):
439 Use ns-store-selection-internal.
440
441 2011-12-17 Chong Yidong <cyd@gnu.org>
442
443 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
444 (vc-deduce-fileset): Doc fix.
445
446 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
447
448 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
449
450 2011-12-13 Sam Steingold <sds@gnu.org>
451
452 * man.el (Man-getpage-in-background): When running under a
453 window-system, ignore $MANWIDTH and $COLUMNS.
454
455 2011-12-15 Kenichi Handa <handa@m17n.org>
456
457 * language/ethio-util.el: Change coding tag to utf-8-emacs.
458 (setup-ethiopic-environment-internal): Comment out key-binding for
459 ethio-toggle-punctuation.
460
461 2011-12-13 Alan Mackenzie <acm@muc.de>
462
463 Add the switch statement to AWK Mode.
464
465 * progmodes/cc-awk (awk-font-lock-keywords): Add "switch", "case",
466 "default" to the keywords regexp.
467
468 * progmodes/cc-langs (c-label-kwds): Let AWK take the same
469 expression as the rest.
470 (c-nonlabel-token-key): Allow string literals for AWK.
471 Refactor for the other modes.
472
473 Large brace-block initialisation makes CC Mode slow: Fix.
474 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
475 routines. Limit backward searching in c-font-lock-enclosing.decl.
476
477 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
478 pp-state and literal type in addition to the limits.
479 (c-state-safe-place): New defun, extracted from c-state-literal-at.
480 (c-state-literal-at): Use the above new defun.
481 (c-slow-in-literal, c-fast-in-literal): Remove.
482 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
483
484 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
485 being in a literal. Add a limit for backward searching.
486
487 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
488 c-slow-in-literal.
489
490 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
491
492 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
493
494 2011-12-13 Martin Rudalics <rudalics@gmx.at>
495
496 * window.el (delete-other-windows): Use correct frame in call to
497 window-with-parameter.
498
499 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
500
501 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
502 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
503 (makefile-gmake-statements, makefile-makepp-statements):
504 Use it and add new makepp keywords.
505 (makefile-makepp-font-lock-keywords): Add new patterns.
506 (makefile-match-function-end): Match new [...] and [[...]].
507
508 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
509
510 * ses.el (ses-call-printer-return, ses-cell-property-get)
511 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
512 (ses-create-cell-variable, ses-reset-header-string)
513 (ses-cell-set-formula, ses-repair-cell-reference-all)
514 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
515 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
516 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
517 (ses-aset-with-undo, ses-load, ses-truncate-cell)
518 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
519 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
520 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
521 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
522 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
523 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
524 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
525 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
526
527 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
528
529 * ses.el: The overall change is to add cell renaming, that is
530 setting fancy names for cell symbols other than name matching
531 "\\`[A-Z]+[0-9]+\\'" regexp .
532 (ses-create-cell-variable): New defun.
533 (ses-relocate-formula): Relocate formulas only for cells the
534 symbols of which are not renamed, i.e. symbols whose names do not
535 match regexp "\\`[A-Z]+[0-9]+\\'".
536 (ses-relocate-all): Relocate values only for cells the symbols of
537 which are not renamed.
538 (ses-load): Create cells variables as the (ses-cell ...) are read,
539 in order to check row col consistency with cell symbol name only
540 for cells that are not renamed.
541 (ses-replace-name-in-formula): New defun.
542 (ses-rename-cell): New defun.
543
544 2011-12-11 Chong Yidong <cyd@gnu.org>
545
546 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
547 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
548
549 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
550
551 * window.el (other-window): Fix docstring.
552
553 2011-12-10 Eli Zaretskii <eliz@gnu.org>
554
555 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
556 `from' or `to' address before taking its substring.
557 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
558 encoded name is chopped in the middle of the encoded string, and
559 thus displayed encoded.
560
561 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
562
563 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
564
565 2011-12-10 Eli Zaretskii <eliz@gnu.org>
566
567 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
568 to use texinfo-update-node and commands that call it if the
569 Texinfo file uses @node lines without next/prev/up pointers.
570 Correct outdated description about texinfo-master-menu.
571 (texinfo-all-menus-update, texinfo-master-menu)
572 (texinfo-update-node, texinfo-every-node-update)
573 (texinfo-multiple-files-update): Doc fix. Warn against updating
574 all the @node lines.
575 (texinfo-master-menu): Only call texinfo-update-node if the prefix
576 argument is numeric. Explain better in the doc string what the
577 function really does.
578 (texinfo-insert-master-menu-list): Improve the error message
579 displayed if there's no menu in the Top node.
580 (Bug#2975) See also this thread:
581 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
582
583 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
584
585 * speedbar.el (speedbar-supported-extension-expressions):
586 Add .adb and .ads, commonly used for Ada source code (bug#10256).
587
588 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
589
590 * printing.el (pr-mode-alist):
591 * simple.el (filter-buffer-substring-functions)
592 (completion-list-insert-choice-function):
593 * window.el (window-with-parameter, window-atom-root)
594 (window-sides-slots, window-size-fixed, window-min-delta)
595 (window-max-delta, window--resize-mini-window)
596 (window--resize-child-windows-normal, window-tree)
597 (delete-other-windows, quit-window, split-window)
598 (display-buffer-record-window, special-display-buffer-names)
599 (special-display-regexps, special-display-popup-frame)
600 (same-window-p, split-window-sensibly)
601 (display-buffer-overriding-action, display-buffer-alist)
602 (display-buffer-base-action, display-buffer, switch-to-buffer)
603 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
604 (fit-window-to-buffer, recenter-positions)
605 (mouse-autoselect-window-state, mouse-autoselect-window-select):
606 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
607 and remove unneeded backslashes in docstrings.
608
609 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
610
611 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
612
613 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
614 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
615 end in ".mk".
616 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
617 when reading the makefile (bug#10116).
618
619 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
620
621 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
622 (bug#10116).
623
624 2011-12-06 Glenn Morris <rgm@gnu.org>
625
626 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
627
628 2011-12-06 Chong Yidong <cyd@gnu.org>
629
630 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
631
632 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
633
634 * textmodes/table.el (table-shorten-cell): Fix typo.
635
636 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
637
638 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
639
640 2011-12-05 Eli Zaretskii <eliz@gnu.org>
641
642 * descr-text.el (describe-char): Fix display of strong
643 right-to-left characters and directional embeddings and overrides.
644
645 * simple.el (what-cursor-position): Fix display of codepoints of
646 strong right-to-left characters.
647
648 2011-12-05 Chong Yidong <cyd@gnu.org>
649
650 * faces.el (read-color): Doc fix.
651
652 2011-12-05 Glenn Morris <rgm@gnu.org>
653
654 * align.el (align--set-marker): Add doc-string.
655 Don't try to move something that is not a marker. (Bug#10216)
656
657 2011-12-04 Glenn Morris <rgm@gnu.org>
658
659 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
660 overly zealous deletion of trailing whitespace.
661
662 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
663
664 * server.el (server-delete-client): On Windows, do not try to delete
665 the only terminal.
666 (server-process-filter): On Windows, treat requests for a tty frame as
667 if they were for a GUI frame if the running server is in GUI mode.
668
669 2011-12-03 Glenn Morris <rgm@gnu.org>
670
671 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
672
673 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
674
675 * electric.el: Streamline electric-indent's hook.
676 (electric-indent-chars): Revert to simple list.
677 (electric-indent-functions): New var.
678 (electric-indent-post-self-insert-function): Use it.
679
680 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
681 there's no inferior buffer (bug#10196).
682 (prolog-consult-compile): Don't use toggle-read-only.
683
684 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
685
686 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
687 interrupt. (Bug#10187)
688
689 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
690
691 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
692 (bug#9160).
693
694 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
695 (bug#10191).
696
697 2011-12-02 Juri Linkov <juri@jurta.org>
698
699 * info.el (Info-search): Display "end of manual" when Isearch
700 reaches the end of single-file Info manual. (Bug#9918)
701
702 2011-12-02 Eli Zaretskii <eliz@gnu.org>
703
704 * isearch.el (isearch-message-prefix): Run the input method part
705 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
706
707 2011-12-02 Juri Linkov <juri@jurta.org>
708
709 * isearch.el (isearch-occur): Use `word-search-regexp' for
710 `isearch-word'.
711 (isearch-search-and-update): Add condition for `isearch-word' and
712 call `word-search-regexp'. (Bug#10145)
713
714 2011-12-01 Glenn Morris <rgm@gnu.org>
715
716 * eshell/em-hist.el (eshell-hist-initialize):
717 Handle eshell-history-size nil and HISTSIZE set or unset.
718 (eshell-history-file-name, eshell-history-size): Fix custom type.
719
720 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
721
722 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
723
724 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
725
726 * progmodes/verilog-mode.el (verilog-pretty-expr):
727 Rework verilog-pretty-expr to handle new assignment operators in system
728 verilog, such as += *= and the like.
729 (verilog-assignment-operator-re): Regular expression to find the
730 assigment operator in a verilog assignment.
731 (verilog-assignment-operation-re): Regular expression to find an
732 assignment statement for pretty-expr.
733 (verilog-in-attribute-p): Query returns true if point is in an
734 attribute context; used to skip these for expression line up from
735 pretty-expr.
736 (verilog-in-parameter-p): Query returns true if point is in an
737 parameter definition context; used to skip these for expression
738 line up from pretty-expr.
739 (verilog-in-parenthesis-p): Query returns true if point is in a
740 parenthetical expression, specifically ( ) but not [ ] or { };
741 used by pretty-expr.
742 (verilog-just-one-space): If there is no space, don't add one.
743 (verilog-get-lineup-indent-2): Specifically skip just attribute
744 contexts for expression lineup, rather than skipping all
745 parenthetical expressions.
746 (verilog-calculate-indent): Fix comment, and fix indent.
747 (verilog-do-indent): Indent declarations in lists (suggested by
748 Joachim Lechner).
749 (verilog-mode-abbrev-table): Populate abbrev mode with the various
750 skeleton items.
751 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
752 by Alain Mellan).
753
754 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
755
756 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
757 parameters with embedded comments. Reported by Ray Stevens.
758 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
759 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
760 Reported by Tim Holt.
761 (verilog-auto): Fix AUTOing a upper module then AUTOing module
762 instantiated by upper module causing wrong expansion until AUTOed a
763 second time. Reported by K C Buckenmaier.
764 (verilog-diff-auto): Fix showing .* as a difference when
765 `verilog-auto-star-save' off. Reported by Dan Dever.
766 (verilog-auto-reset, verilog-read-always-signals)
767 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
768 temporary signals in reset list if
769 verilog-auto-reset-blocking-in-non is nil, and match assignment
770 style to each signal's assignment type, bug381.
771 Reported by Thomas Esposito.
772 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
773 (verilog-uvm-statement-re): Support UVM indentation and
774 highlighting, with old OVM keywords only.
775 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
776 Support AUTOTIEOFF creating non-wire data types.
777 Suggested by Jonathan Greenlaw.
778 (verilog-auto-insert-lisp, verilog-delete-to-paren)
779 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
780 (verilog-inject-sense, verilog-read-inst-pins)
781 (verilog-read-sub-decls, verilog-read-sub-decls-line):
782 Fix mismatching parenthesis inside commented out code when deleting
783 AUTOINST, bug383. Reported by Jonathan Greenlaw.
784 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
785 non-numeric vector width. Reported by Alex Reed.
786 (verilog-auto-ascii-enum): Add "onehot" option to work around not
787 detecting signals with parameter widths. Reported by Alex Reed.
788 (verilog-auto-delete-trailing-whitespace):
789 With `verilog-auto-delete-trailing-whitespace' remove trailing
790 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
791 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
792 Fix verilog-scan-cache corruption when running user AUTO expansion
793 hooks that call indentation routines.
794 (verilog-simplify-range-expression): Fix typo ignoring lower case
795 identifiers.
796 (verilog-delete-auto): Fix delete-autos to also remove user created
797 automatics, as long as they start with AUTO.
798 (verilog-batch-diff-auto, verilog-diff-auto)
799 (verilog-diff-function): Add `verilog-diff-auto' and bind to
800 "C-c?" to report differences in AUTO expansion, ignoring spaces.
801 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
802 (verilog-in-paren-quick, verilog-re-search-backward-quick)
803 (verilog-re-search-forward-quick, verilog-syntax-ppss):
804 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
805 is disabled and its cache will get corrupt, causing AUTOS not to
806 expand. Instead use only -quick functions.
807 (verilog-scan-region): Fix scanning over escaped quotes.
808 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
809 (verilog-re-search-backward-quick)
810 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
811 related functions now ignore strings, to fix misparsing of strings
812 with magic comments embedded in them.
813 (verilog-read-auto-template):
814 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
815 Reported by Brad Dobbie.
816 (verilog-read-auto-template):
817 Fix 'verilog-auto-inst-template-numbers' with comments.
818 Reported by Brad Dobbie.
819 (verilog-auto-inst, verilog-auto-inst-param)
820 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
821 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
822 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
823 debugging templates without merge conflicts, bug357.
824 Reported by Brad Dobbie.
825 (verilog-read-auto-template):
826 Fix verilog-auto-inst-template-numbers with multiple templates.
827 Reported by Brad Dobbie.
828 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
829 abbrevs so user won't be asked to save.
830 (verilog-read-auto-lisp-present): Fix to start at beginning of
831 buffer in case called outside of verilog-auto.
832 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
833 to "X-2". Reported by Matthew Myers.
834 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
835 all inputs from module templates. Reported by Leith Johnson.
836 (verilog-module-inside-filename-p): Fix locating programs as with
837 modules.
838 (verilog-auto-inst-port): Fix vl-width expressions when using
839 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
840 (verilog-decls-get-regs, verilog-decls-get-signals,
841 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
842 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
843 verilog-read-decls): Combine reg and wire structures into one var
844 structure to represent SystemVerilog concepts.
845 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
846 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
847 (verilog-auto-wire-type, verilog-insert-definition):
848 Add verilog-auto-wire-type and AUTOLOGIC to support using
849 SystemVerilog "logic" keyword instead of "wire"/"reg".
850 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
851 to declares outputs that also have assignments (presumably in an
852 ifdef or generate if so there's not a driver conflict).
853 Reported by Matthew Myers.
854 (verilog-auto-declare-nettype, verilog-insert-definition):
855 Add verilog-auto-declare-nettype to fix declarations using
856 `default_nettype none. Reported by Julian Gorfajn.
857 (verilog-read-always-signals-recurse, verilog-read-decls)
858 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
859 malformed end statement, bug325. Reported by Joshua Wise and
860 Andrew Drake.
861 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
862 (verilog-inst-comment-re): Fix not deleting Interfaced comment
863 when expanding .* in interfaces, bug320.
864 Reported by Pierre-David Pfister.
865 (verilog-read-module-name): Fix import statements between module
866 name and open parenthesis, bug317.
867 Reported by Pierre-David Pfister.
868 (verilog-simplify-range-expression): Fix simplification of
869 multiplications inside AUTOWIRE connections, bug303.
870 (verilog-auto-inst-port): Support parameter expansion in
871 multidimensional arrays.
872 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
873 after "assert property". Reported by Julian Gorfajn.
874 (verilog-simplify-range-expression): Fix "couldn't merge" errors
875 with multiplication, bug303.
876 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
877 Reported by Jan Frode Lonnum.
878
879 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
880
881 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
882 (hfy-shell-file-name, hfy-shell):
883 * international/fontset.el (x-decompose-font-name): Fix typos.
884
885 2011-11-29 Ken Brown <kbrown@cornell.edu>
886
887 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
888 (gdb-version): Remove defvar.
889 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
890 (gdb-gud-context-command, gdb-non-stop-handler)
891 (gdb-current-context-command, gdb-stopped): Use it.
892 (gdb-init-1): Enable pretty printing here.
893 (gdb-non-stop-handler): Don't enable pretty-printing here.
894 Check to see if the target supports non-stop mode; if not, turn off
895 non-stop mode. Use the following.
896 (gdb-check-target-async): New defun.
897 (gud-watch, gdb-stopped): Fix whitespace.
898 (gdb-get-source-file): Don't try to display the source file if
899 `gdb-main-file' is nil.
900
901 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
902
903 * align.el: Try to generate fewer markers (bug#10047).
904 (align--set-marker): New macro.
905 (align-region): Use it.
906
907 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
908
909 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
910
911 2011-11-29 Chong Yidong <cyd@gnu.org>
912
913 * indent.el (indent-for-tab-command, indent-according-to-mode):
914 Doc fix.
915 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
916
917 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
918
919 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
920 aware of remote file names. (Bug#10124)
921
922 2011-11-29 Chong Yidong <cyd@gnu.org>
923
924 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
925
926 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
927
928 * files.el (find-file): Don't use force-same-window (bug#10144).
929 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
930 use pop-to-buffer if the selected window can't be used.
931 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
932
933 2011-11-28 Eli Zaretskii <eliz@gnu.org>
934
935 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
936 special-mode-map.
937
938 2011-11-28 Chong Yidong <cyd@gnu.org>
939
940 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
941
942 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
943
944 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
945 gdb-get-source-file-list on gdb-create-source-file-list.
946
947 2011-11-26 Eli Zaretskii <eliz@gnu.org>
948
949 * whitespace.el (whitespace-newline): Use a different foreground
950 color for 16-color light-background displays.
951
952 2011-11-24 Chong Yidong <cyd@gnu.org>
953
954 * window.el (display-buffer--special-action): Doc fix.
955
956 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
957
958 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
959 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
960 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
961 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
962 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
963 (avl-tree-stack-first):
964 * emacs-lisp/cconv.el (cconv--analyse-use):
965 * net/gnutls.el (gnutls-negotiate): Fix typos.
966
967 2011-11-24 Glenn Morris <rgm@gnu.org>
968
969 * lpr.el (lpr-windows-system, lpr-lp-system):
970 * mail/binhex.el (binhex-begin-line):
971 * progmodes/grep.el (grep-history, grep-find-history):
972 * textmodes/flyspell.el:
973 * vc/pcvs-defs.el (cvs-global-menu):
974 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
975 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
976 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
977
978 * net/tls.el: Fix case of "GnuTLS".
979
980 * paths.el (rmail-file-name): Format doc-string for make-docfile.
981
982 * version.el (emacs-build-system): Give it a doc-string.
983
984 2011-11-24 Juri Linkov <juri@jurta.org>
985
986 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
987
988 2011-11-24 Glenn Morris <rgm@gnu.org>
989
990 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
991 if called on a non-mime message just toggle the headers. (Bug#8006)
992
993 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
994
995 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
996 (allout-lead-with-comment-string, allout-structure-deleted-hook)
997 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
998 (allout-rebullet-heading, allout-open-sibtopic)
999 (allout-toggle-current-subtree-encryption)
1000 (allout-toggle-subtree-encryption, allout-encrypt-string)
1001 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
1002 (allout-distinctive-bullets-string, allout-auto-activation):
1003 * window.el (window-normalize-buffer-to-display):
1004 * progmodes/verilog-mode.el (verilog-batch-indent):
1005 * textmodes/bibtex.el (bibtex-field-braces-opt)
1006 (bibtex-field-strings-opt):
1007 * vc/cvs-status.el (cvs-tree-merge):
1008 Fix typos.
1009
1010 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
1011
1012 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
1013 `non-essential' to t, in order to avoid remote connections.
1014
1015 2011-11-23 Eli Zaretskii <eliz@gnu.org>
1016
1017 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
1018 On MS-DOS and MS-Windows, compare with loaddefs.el
1019 case-insensitively.
1020
1021 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
1022
1023 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
1024
1025 2011-11-23 Glenn Morris <rgm@gnu.org>
1026
1027 * paths.el (rmail-file-name): Reformat the doc-string so that it
1028 is picked up.
1029
1030 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
1031 (rmail-auto-file): Ignore case in the "special" field names,
1032 as mail-fetch-field does for all others.
1033
1034 * mail/rmail.el (rmail-forward):
1035 * mail/rmailkwd.el (rmail-set-label):
1036 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
1037 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
1038
1039 * mail/rmail.el (rmail-current-message): Doc fix.
1040
1041 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
1042
1043 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
1044
1045 * server.el (server-eval-and-print): Allow C-g (bug#6585).
1046
1047 2011-11-22 Glenn Morris <rgm@gnu.org>
1048
1049 * mail/rmailmm.el (test-rmail-mime-handler)
1050 (test-rmail-mime-bulk-handler)
1051 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
1052
1053 2011-11-21 Juri Linkov <juri@jurta.org>
1054
1055 * calc/calc.el (calc-read-key-sequence):
1056 Let-bind `input-method-function' to nil. (Bug#10018)
1057
1058 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
1059
1060 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
1061 Tell the caller that the next line needs recomputation, even
1062 though it doesn't start a sexp (bug#10094).
1063
1064 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
1065
1066 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
1067
1068 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
1069
1070 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
1071 Use force-same-window.
1072
1073 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
1074
1075 * descr-text.el (describe-char-unicode-data):
1076 * json.el (json-string-escape):
1077 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
1078 (Footnote-unicode, Footnote-style-p):
1079 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
1080
1081 2011-11-20 Chong Yidong <cyd@gnu.org>
1082
1083 * window.el (replace-buffer-in-windows): Restore interactive spec.
1084
1085 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
1086
1087 * electric.el (electric-indent-mode): Fix last change (too optimistic).
1088
1089 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
1090 (byte-compile-global-not-obsolete-vars): New var.
1091 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
1092 Use it.
1093 (byte-compile-warn-obsolete): Align text with the one in *Help*.
1094
1095 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
1096
1097 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
1098 * progmodes/pascal.el (electric-pascal-equal):
1099 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
1100 * xml.el (xml-substitute-special): Fix typos.
1101
1102 2011-11-20 Glenn Morris <rgm@gnu.org>
1103
1104 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
1105 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
1106 Doc fixes.
1107 (rmail-decode-mime-charset): Mark as obsolete.
1108
1109 * mail/rmailsum.el (rmail-message-regexp-p-1):
1110 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
1111 Before using mime functions, check they are set. (Bug#10077)
1112
1113 2011-11-19 Juri Linkov <juri@jurta.org>
1114
1115 * info.el (Info-finder-find-node): Use `package--builtins' instead
1116 of `package-alist'. Use node names formed by the pattern "Keyword "
1117 and the keyword name.
1118
1119 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
1120
1121 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
1122
1123 2011-11-19 Juri Linkov <juri@jurta.org>
1124
1125 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
1126 that calls `revert-buffer' on all Info buffers. (Bug#9915)
1127 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
1128 `old-history', `old-history-forward'. Add let-binding
1129 `window-selected'. Remove calls to `kill-buffer',
1130 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
1131 before calling `Info-find-node', so `Info-find-node-2' will reread
1132 the Info file. Restore window positions only when `window-selected'
1133 is non-nil.
1134
1135 2011-11-19 Juri Linkov <juri@jurta.org>
1136
1137 * isearch.el (isearch-lazy-highlight-new-loop):
1138 Remove condition `(not isearch-error)'. (Bug#9918)
1139
1140 * misearch.el (multi-isearch-search-fun): Add condition
1141 `(not bound)' to ignore lazy-highlighting search.
1142 Add the search-failed message "end of multi" when the end of
1143 multi-sequence is reached. Uncapitalize the search-failed
1144 message "Repeat for next buffer".
1145
1146 * info.el (Info-search): Add the search-failed message
1147 "end of the manual" when the end of the manual is reached
1148 in Isearch mode.
1149
1150 2011-11-19 Juri Linkov <juri@jurta.org>
1151
1152 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
1153 Use non-destructive `remove' instead of `delete' because
1154 `Info-history-list' stored to `Info-isearch-initial-history-list' in
1155 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
1156
1157 2011-11-19 Juri Linkov <juri@jurta.org>
1158
1159 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
1160 to nil instead of binding `search-ring' and `regexp-search-ring'.
1161 (Bug#9185)
1162
1163 2011-11-19 Eli Zaretskii <eliz@gnu.org>
1164
1165 * simple.el (line-move): Force movement by logical lines for any
1166 hscrolled window, not only when auto-hscroll-mode is on.
1167 (line-move-visual): Update doc string to that effect. (Bug#10076)
1168
1169 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
1170
1171 * language/european.el (macintosh): Define as alias for mac-roman.
1172
1173 2011-11-19 Eli Zaretskii <eliz@gnu.org>
1174
1175 * mail/rmailmm.el (rmail-mime-display-header)
1176 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
1177 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
1178 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
1179 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
1180 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
1181 of a raw aref.
1182 (rmail-mime-entity-segment): To get past the tagline, move forward
1183 2 more lines, to account for the 2 empty lines that precede and
1184 follow the line with the buttons.
1185 (rmail-mime-update-tagline): Move one more line, to get past the
1186 empty line that follows the buttons in the tagline. (Bug#9520)
1187
1188 2011-11-19 Martin Rudalics <rudalics@gmx.at>
1189
1190 * window.el (window-max-delta-1, window-min-delta-1)
1191 (window-min-size-1, window-state-get-1, window-state-put-1)
1192 (window-state-put-2): Use "window--" prefix.
1193
1194 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
1195
1196 * emacs-lisp/smie.el: Improve warnings and conflict detection.
1197 (smie-warning-count): New var.
1198 (smie-set-prec2tab): Use it.
1199 (smie-bnf->prec2): Improve warnings. Add docstring.
1200 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
1201 (smie-bnf--set-class): New function.
1202 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
1203 corner case.
1204
1205 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
1206 (compilation-error-properties, compilation-move-to-column):
1207 Handle compilation-first-column while in the target buffer.
1208
1209 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
1210 Don't hardcode point-min==1.
1211
1212 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
1213 (eshell-rewrite-for-command): Remove workaround.
1214 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
1215 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
1216 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
1217
1218 * files-x.el (modify-file-local-variable): Obey commenting conventions.
1219
1220 2011-11-17 Glenn Morris <rgm@gnu.org>
1221
1222 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
1223 Ignore buffer-local generated-autoload-file if it is the same
1224 as the global value. (Bug#10049)
1225
1226 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
1227
1228 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
1229 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
1230 (reftex-toc-previous-heading, reftex-toc-max-level)
1231 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
1232 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
1233 (reftex-toc-do-promote, reftex-toc-promote-prepare)
1234 (reftex-toc-promote-action, reftex-toc-extract-section-number)
1235 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
1236 (reftex-toc-rename-label, reftex-toc-visit-location)
1237 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
1238 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
1239 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
1240 leaving "*toc*" only for references to the buffer.
1241
1242 2011-11-17 Martin Rudalics <rudalics@gmx.at>
1243
1244 * window.el (window-resize, delete-window, split-window):
1245 Replace window-splits by window-combination-resize.
1246 * cus-start.el (window-splits): Replace by window-combination-resize.
1247
1248 2011-11-17 Glenn Morris <rgm@gnu.org>
1249
1250 * progmodes/sh-script.el (sh-font-lock-keywords-var):
1251 Make bash entry derive from sh entry, not shell entry.
1252
1253 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
1254
1255 * net/tramp-cache.el (tramp-flush-file-property): Flush also
1256 properties of linked files. (Bug#9879)
1257
1258 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
1259 local file name.
1260
1261 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
1262
1263 * menu-bar.el (menu-bar-file-menu):
1264 * printing.el (pr-ps-utility):
1265 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
1266 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
1267 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
1268 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
1269 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
1270 (icalendar--convert-cyclic-to-ical)
1271 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
1272 (icalendar--convert-ical-to-diary)
1273 (icalendar--convert-recurring-to-diary)
1274 (icalendar--convert-non-recurring-all-day-to-diary)
1275 (icalendar-import-format-sample):
1276 * progmodes/idlw-shell.el (idlwave-shell-mode):
1277 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
1278 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
1279 (vhdl-ps-print-init): Fix typos.
1280
1281 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
1282
1283 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
1284 FSF and collapse date sequence, obscure author/maintainer email address
1285 better, remove extra version line, track relocation of author's webpage.
1286
1287 * progmodes/python.el (python-pdbtrack-input-prompt)
1288 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
1289 regular python pdb prompts. Adjustments shamelessly taken exactly as
1290 suggested in EmacsWiki page (tiny change):
1291 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
1292
1293 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
1294
1295 * expand.el (expand-pos, expand-index, expand-point):
1296 Remove redundant info from docstring.
1297 (expand-add-abbrevs): Doc fix.
1298 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
1299 (expand-sample-perl-mode-expand-list): Fix typos.
1300
1301 * net/dbus.el (dbus-event-member-name):
1302 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
1303 * term/pc-win.el (msdos-create-frame-with-faces):
1304 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
1305
1306 2011-11-16 Martin Rudalics <rudalics@gmx.at>
1307
1308 * window.el (split-window, window-state-get-1)
1309 (window-state-put-1, window-state-put-2): Rename occurrences of
1310 window-nest to window-combination-limit.
1311 * cus-start.el (window-nest): Rename to window-combination-limit.
1312
1313 2011-11-16 Chong Yidong <cyd@gnu.org>
1314
1315 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
1316 regexp (Bug#10033).
1317
1318 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
1319
1320 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
1321 `completing-read' will remove *Completions* and will preserve
1322 current-buffer for us.
1323 (tmm-add-prompt): Users of *Completions* will always (re)set its
1324 major mode.
1325 (tmm-old-comp-map): Remove.
1326
1327 2011-11-16 Glenn Morris <rgm@gnu.org>
1328
1329 * mail/rmailedit.el: Require rmailmm when compiling.
1330 (rmail-old-mime-state): New declaration.
1331 (rmail-edit-current-message): If editing a mime message,
1332 edit the "raw" message from the mbox buffer.
1333 (rmail-cease-edit): Handle mime messages. (Bug#9840)
1334
1335 2011-11-15 Glenn Morris <rgm@gnu.org>
1336
1337 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
1338 which wasn't being used. Add optional arg to force given state.
1339 (rmail-mime): Add optional arg to force given state.
1340
1341 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
1342
1343 * allout.el (allout-encryption-plaintext-sanitization-regexps):
1344 * frame.el (display-mm-dimensions-alist):
1345 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
1346 (outline-move-subtree-down):
1347 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
1348 (newsticker--treeview-do-get-node):
1349 * net/quickurl.el (quickurl-list-buffer-name):
1350 * progmodes/dcl-mode.el (dcl-mode):
1351 * progmodes/gdb-mi.el (gdb-mapcar*):
1352 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
1353
1354 2011-11-15 Glenn Morris <rgm@gnu.org>
1355
1356 * mail/rmail.el (rmail-file-coding-system): It's only ever used
1357 in a boolean sense, so just make it a boolean, and fix the doc.
1358 (rmail-show-mime-function, rmail-mime-feature)
1359 (rmail-require-mime-maybe): Doc fixes.
1360 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
1361
1362 * mail/rmailmm.el (rmail-show-mime): Doc fix.
1363
1364 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
1365
1366 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
1367 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
1368 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
1369 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
1370
1371 2011-11-15 Glenn Morris <rgm@gnu.org>
1372
1373 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
1374 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
1375 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
1376 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
1377 (rmail-mime, rmail-show-mime): Doc fixes.
1378
1379 * term/ns-win.el (mode-line-frame-identification):
1380 Leave it alone. (Bug#10051)
1381
1382 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
1383
1384 * mail/rmailout.el (rmail-output-to-rmail-buffer):
1385 Handle empty buffers. (Bug#9978)
1386
1387 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
1388
1389 * international/mule.el (define-charset):
1390 * mail/rmailmm.el (rmail-mime-find-header-encoding):
1391 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
1392 * progmodes/verilog-mode.el (verilog-backward-token):
1393 * textmodes/ispell.el (lookup-words):
1394 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
1395
1396 2011-11-14 Glenn Morris <rgm@gnu.org>
1397
1398 * progmodes/executable.el
1399 (executable-make-buffer-file-executable-if-script-p):
1400 Handle file-modes returning nil.
1401
1402 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
1403 message - not necessary, and causes problems. (Bug#9831)
1404
1405 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
1406
1407 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
1408
1409 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
1410 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
1411 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
1412
1413 2011-11-12 Martin Rudalics <rudalics@gmx.at>
1414
1415 * window.el (window-resize, delete-window): Use window-splits
1416 variable instead of function.
1417 (window-state-get-1, window-state-put-2, window-state-put):
1418 Don't deal with windows' splits status.
1419
1420 2011-11-12 Glenn Morris <rgm@gnu.org>
1421
1422 * apropos.el (apropos-do-all, apropos-library, apropos-value)
1423 (apropos-documentation): Doc fixes.
1424
1425 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
1426
1427 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
1428 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
1429
1430 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
1431
1432 * electric.el (electric-indent-post-self-insert-function): Make it
1433 possible for a char to only indent in some circumstances.
1434 (electric-indent-mode): Simplify.
1435
1436 2011-11-11 Martin Rudalics <rudalics@gmx.at>
1437
1438 * window.el (windows-with-parameter): Remove unused function.
1439 (windows-at-side): Rename to window-at-side-list.
1440 (window-check, window-atom-check, window-atom-check-1)
1441 (window-side-check, window-size-ignore, window-size-fixed-1)
1442 (window-in-direction-2): Prefix with "window--".
1443 (window-tree-1): Rename to window--subtree, fix doc-string.
1444
1445 2011-11-11 Glenn Morris <rgm@gnu.org>
1446
1447 * subr.el (eval-after-load): If FILE is already loaded,
1448 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
1449
1450 2011-11-10 Glenn Morris <rgm@gnu.org>
1451
1452 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
1453 Call svn via vc-svn-command rather than vc-do-command.
1454 (vc-svn-command): Add --non-interactive. (Bug#9993)
1455 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
1456
1457 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
1458 Add toggle-read-only. (Bug#7292)
1459 * files.el (toggle-read-only): Mention that it should only
1460 be used interactively. (Bug#10006)
1461
1462 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1463
1464 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1465 Adjust regexp for OCaml warnings.
1466
1467 * electric.el (electric-pair-post-self-insert-function): Let user
1468 turn it off buffer-locally (bug#9932).
1469
1470 * progmodes/python.el (python-beginning-of-statement):
1471 Rewrite (bug#2703).
1472
1473 * progmodes/compile.el: Better handle TABs (bug#9749).
1474 (compilation-internal-error-properties)
1475 (compilation-next-error-function): Obey the target buffer's
1476 compilation-error-screen-columns.
1477
1478 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
1479
1480 * progmodes/meta-mode.el: Remove obsolete comments.
1481 (meta-right-comment-regexp, meta-ignore-comment-regexp):
1482 Fix typos in docstrings.
1483
1484 2011-11-09 Martin Rudalics <rudalics@gmx.at>
1485
1486 * window.el (window-size-fixed-p): Rewrite doc-string.
1487 (window-resizable-p): Rename to window--resizable-p. Update callers.
1488 (window--resizable): New function. Make all callers of
1489 window-resizable call window--resizable instead.
1490 (window-resizable): Rewrite in terms of window--resizable.
1491
1492 2011-11-08 Glenn Morris <rgm@gnu.org>
1493
1494 * progmodes/delphi.el (delphi-mode-syntax-table):
1495 Let define-derived-mode define a proper syntax table. (Bug#9994)
1496
1497 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1498
1499 * window.el: Stay away from defsubst.
1500 (window-list-no-nils): Remove.
1501 (window-state-get-1, window-state-get): Use backquote instead.
1502
1503 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1504
1505 * emacs-lisp/find-func.el (find-function-read):
1506 Fix incorrect use of default argument in `completing-read'.
1507
1508 2011-11-08 Martin Rudalics <rudalics@gmx.at>
1509
1510 * window.el (display-buffer-function, special-display-function):
1511 Mention display-buffer-record-window but do not mention
1512 help-setup parameter in doc-strings.
1513 (window-min-delta): Fix doc-string typo.
1514
1515 2011-11-08 Chong Yidong <cyd@gnu.org>
1516
1517 * window.el (window-total-height, window-total-width): Doc fix.
1518 (window-body-size): Move from C.
1519 (window-body-height, window-body-width): Move to C.
1520
1521 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1522
1523 * window.el: Make special-display like display-buffer-alist (bug#9532).
1524 (display-buffer--special-action): New function, morphed
1525 from display-buffer--special.
1526 (display-buffer): Use it to handle special-display-buffers at higher
1527 priority (just after display-buffer-alist).
1528 (display-buffer-fallback-action, display-buffer--other-frame-action)
1529 (pop-to-buffer-same-window): Remove display-buffer--special.
1530
1531 2011-11-07 Glenn Morris <rgm@gnu.org>
1532
1533 * calendar/cal-menu.el (cal-menu-set-date-title):
1534 Do nothing if not in a calendar. (Bug#9976)
1535
1536 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
1537
1538 * files.el (find-file): Always use selected-window.
1539
1540 2011-11-07 Martin Rudalics <rudalics@gmx.at>
1541
1542 * window.el (window-combinations): Make WINDOW argument
1543 mandatory. Rewrite doc-string.
1544 (walk-window-subtree, window-atom-check, window-min-delta)
1545 (window-max-delta, window--resize-this-window)
1546 (window--resize-root-window-vertically, window-tree)
1547 (balance-windows, window-state-put): Rewrite doc-strings as to
1548 not mention the term "subwindow".
1549 (window--resize-subwindows-skip-p): Rename to
1550 window--resize-child-windows-skip-p.
1551 (window--resize-subwindows-normal): Rename to
1552 window--resize-child-windows-normal.
1553 (window--resize-subwindows): Rename to
1554 window--resize-child-windows.
1555 (window-or-subwindow-p): Rename to window--in-subtree-p.
1556
1557 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
1558
1559 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
1560 Ensure that mbox format messages end in two newlines (Bug#9974).
1561
1562 2011-11-06 Chong Yidong <cyd@gnu.org>
1563
1564 * window.el (window-combination-p): Function deleted; its
1565 side-effect is not used in any existing code.
1566 (window-combinations, window-combined-p): Call window-*-child
1567 directly.
1568
1569 2011-11-05 Chong Yidong <cyd@gnu.org>
1570
1571 * window.el (window-valid-p): Rename from window-any-p.
1572 (window-size-ignore, window-state-get): Callers changed.
1573 (window-normalize-window): Rename from window-normalize-any-window.
1574 New arg LIVE-ONLY, replacing window-normalize-live-window.
1575 (window-normalize-live-window): Delete.
1576 (window-combination-p, window-combined-p, window-combinations)
1577 (walk-window-subtree, window-atom-root, window-min-size)
1578 (window-sizable, window-sizable-p, window-size-fixed-p)
1579 (window-min-delta, window-max-delta, window-resizable)
1580 (window-resizable-p, window-full-height-p, window-full-width-p)
1581 (window-current-scroll-bars, window-point-1, set-window-point-1)
1582 (window-at-side-p, window-in-direction, window-resize)
1583 (adjust-window-trailing-edge, maximize-window, minimize-window)
1584 (window-deletable-p, delete-window, delete-other-windows)
1585 (record-window-buffer, unrecord-window-buffer)
1586 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
1587 (quit-window, split-window, window-state-put)
1588 (set-window-text-height, fit-window-to-buffer)
1589 (shrink-window-if-larger-than-buffer): Callers changed.
1590
1591 2011-11-04 Eli Zaretskii <eliz@gnu.org>
1592
1593 * mail/rmail.el (rmail-simplified-subject): Decode subject with
1594 rfc2047-decode-string.
1595 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
1596 warnings.
1597
1598 * window.el (window-body-height, window-body-width): Mention in
1599 the doc string that the return values are in frame's canonical
1600 units. (Bug#9949)
1601
1602 2011-11-03 Alan Mackenzie <acm@muc.de>
1603
1604 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
1605 change in cc-engine.el.
1606
1607 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
1608
1609 * window.el (switch-to-buffer): Use `force-same-window' interactively.
1610
1611 2011-11-02 Martin Rudalics <rudalics@gmx.at>
1612
1613 * window.el (quit-window): Call unrecord-window-buffer after
1614 showing another buffer in the window. (Bug#9937)
1615 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1616
1617 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
1618
1619 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
1620 Accept status with more than 9 shelves. (Bug#9935)
1621 Reported by Colin D Bennett <colin@gibibit.com>.
1622
1623 2011-11-01 Martin Rudalics <rudalics@gmx.at>
1624
1625 * help.el (with-help-window): Don't reference
1626 temp-buffer-show-specifiers in doc-string.
1627
1628 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
1629
1630 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
1631 menu-item.
1632
1633 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1634
1635 * whitespace.el: New version 13.2.2.
1636 (whitespace-newline-mode): Disable properly. Reported by Sarah
1637 <EmacsWiki>.
1638
1639 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
1640
1641 * net/newst-treeview.el: Remove "Time-stamp".
1642 (newsticker--group-manage-orphan-feeds): Do not call
1643 newsticker--treeview-tree-update.
1644 (newsticker-treeview-update, newsticker-treeview):
1645 Call newsticker--treeview-tree-update if necessary.
1646
1647 2011-10-30 Martin Rudalics <rudalics@gmx.at>
1648
1649 * window.el (window-iso-combination-p, window-iso-combined-p)
1650 (window-iso-combinations): Remove "iso-" infix.
1651 Suggested by Chong Yidong.
1652 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
1653 (window-max-delta-1, window-resize, window--resize-siblings)
1654 (window--resize-this-window, adjust-window-trailing-edge)
1655 (split-window, balance-windows-1)
1656 (shrink-window-if-larger-than-buffer):
1657 * calendar/calendar.el (calendar-generate-window):
1658 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
1659
1660 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
1661
1662 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
1663 in place (bug#9907).
1664 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
1665 (eshell-rewrite-if-command, eshell-rewrite-for-command)
1666 (eshell-structure-basic-command, eshell-rewrite-while-command)
1667 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
1668 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
1669 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
1670 (eshell-do-pipelines-synchronously, eshell-eval-command):
1671 Use backquotes and prefer setq to set.
1672 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
1673 (eshell-macrop): Use functionp.
1674 (eshell-do-eval): Handle multiple expressions in `while' body.
1675
1676 2011-10-30 Chong Yidong <cyd@gnu.org>
1677
1678 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
1679 instead of set-mark (Bug#9810).
1680
1681 2011-10-30 Chong Yidong <cyd@gnu.org>
1682
1683 * window.el (split-window-below, split-window-right): Rename from
1684 split-window-above-each-other and split-window-side-by-side
1685 respectively. All callers changed.
1686 (split-window-sensibly, split-window-sensibly): Use them.
1687 (split-window-keep-point): Doc fix.
1688
1689 * isearch.el: Add isearch-scroll property to split-window-below
1690 and split-window-right.
1691
1692 * follow.el (follow-mode):
1693 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
1694 * progmodes/ada-xref.el (ada-gdb-application):
1695 * emulation/vip.el (vip-buffer-in-two-windows):
1696 * image-dired.el (image-dired-dired-with-window-configuration):
1697 * dired-x.el (dired-do-find-marked-files):
1698 * dired.el (dired-pop-to-buffer):
1699 * bs.el (bs--show-with-configuration):
1700 * vc/emerge.el (emerge-setup-windows):
1701 * textmodes/two-column.el (2C-two-columns):
1702 * textmodes/reftex-toc.el (reftex-toc):
1703 * progmodes/gdb-mi.el (gdb-setup-windows):
1704 * progmodes/fortran.el (fortran-window-create):
1705 * net/newst-treeview.el (newsticker--treeview-window-init):
1706 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
1707 * emulation/tpu-edt.el (tpu-gold-map):
1708 * emulation/crisp.el (crisp-mode-map):
1709 * calendar/calendar.el (calendar-basic-setup): Callers changed.
1710
1711 2011-10-29 Chong Yidong <cyd@gnu.org>
1712
1713 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
1714
1715 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
1716
1717 * textmodes/flyspell.el (flyspell-word): Fix char offset for
1718 forged Ispell output (Bug#7904).
1719
1720 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
1721
1722 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1723
1724 * doc-view.el: Avoid ugly errors about not finding nil.
1725 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
1726 (doc-view-dvipdf-program, doc-view-unoconv-program)
1727 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
1728 Avoid nil or absolute file name as default value.
1729 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
1730
1731 2011-10-28 Alan Mackenzie <acm@muc.de>
1732
1733 * progmodes/cc-defs.el (c-version): -> 5.32.2.
1734
1735 2011-10-28 Alan Mackenzie <acm@muc.de>
1736
1737 Amend the handling of c-beginning/end-of-defun in nested declaration
1738 scopes.
1739
1740 * progmodes/cc-vars.el (c-defun-tactic): Move here from
1741 cc-langs.el. Change it to a defcustom.
1742
1743 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
1744 cc-vars.el.
1745
1746 * progmodes/cc-engine.el (c-beginning-of-statement-1):
1747 Prevent "class foo : bar" being spuriously recognized as a label.
1748
1749 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
1750 Add parameter `inclusive' (to include enclosing braces in the region).
1751 (c-widen-to-enclosing-decl-scope): New function.
1752 (c-while-widening-to-decl-block): New macro.
1753 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
1754 outward for defun boundaries, and correspondingly change symbol
1755 `respect-enclosure' to `go-outward'.
1756 (c-declaration-limits): Change algorithm to report only the "innermost"
1757 defun's boundaries.
1758
1759 2011-10-28 Deniz Dogan <deniz@dogan.se>
1760
1761 * net/rcirc.el (rcirc-mode): Use hard newlines.
1762
1763 2011-10-28 Alan Mackenzie <acm@muc.de>
1764
1765 Amend to indent and fontify macros "which include their own semicolon"
1766 correctly, using the "virtual semicolon" mechanism.
1767
1768 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
1769
1770 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
1771 Recode to scan one line at a time rather than having \n and \r
1772 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
1773 (c-forward-label): Amend for virtual semicolons.
1774 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
1775
1776 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
1777 of the new C macros.
1778
1779 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
1780 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
1781 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
1782 (c-opt-cpp-macro-define): Make into a full language variable.
1783 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
1784 AWK Mode (including \n, \r) removed, no longer needed.
1785
1786 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
1787 Invoke c-make-macro-with-semi-re.
1788
1789 * progmodes/cc-vars.el (c-macro-with-semi-re):
1790 (c-macro-names-with-semicolon): New variables.
1791 (c-make-macro-with-semi-re): New function.
1792
1793 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1794
1795 * vc/log-edit.el: Fill empty field rather than adding new one.
1796 (log-edit-add-field): New function.
1797 (log-edit-insert-changelog): Use it.
1798
1799 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
1800
1801 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
1802
1803 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1804
1805 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
1806 (gdb--check-interpreter): New function.
1807 (gdb): Use it.
1808
1809 2011-10-27 Glenn Morris <rgm@gnu.org>
1810
1811 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
1812 (least-positive-float, least-negative-float)
1813 (least-positive-normalized-float, least-negative-normalized-float)
1814 (float-epsilon, float-negative-epsilon):
1815 Remove unnecessary declarations.
1816
1817 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
1818 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
1819 (least-positive-float, least-negative-float)
1820 (least-positive-normalized-float, least-negative-normalized-float)
1821 (float-epsilon, float-negative-epsilon): Add doc-strings,
1822 based on those in cl.texi.
1823
1824 * files.el (set-visited-file-name): If the major-mode changed,
1825 reload the local variables. (Bug#9796)
1826
1827 2011-10-27 Chong Yidong <cyd@gnu.org>
1828
1829 * subr.el (change-major-mode-after-body-hook): New hook.
1830 (run-mode-hooks): Run it.
1831
1832 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1833 Use change-major-mode-before-body-hook.
1834
1835 * simple.el (fundamental-mode):
1836 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
1837 change introducing fundamental-mode-hook.
1838
1839 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
1840
1841 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
1842
1843 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
1844
1845 * ido.el (ido-file-name-all-completions-1): Do not require
1846 tramp.el explicitly. (Bug#7583)
1847
1848 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1849
1850 * progmodes/octave-mod.el:
1851 * progmodes/octave-inf.el: Update maintainer.
1852
1853 2011-10-26 Chong Yidong <cyd@gnu.org>
1854
1855 * subr.el (with-wrapper-hook): Rewrite doc.
1856
1857 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
1858
1859 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
1860 filenames "/method:foo:". (Bug#9793)
1861
1862 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1863
1864 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
1865 (bug#9865).
1866
1867 2011-10-24 Glenn Morris <rgm@gnu.org>
1868
1869 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
1870
1871 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
1872
1873 * notifications.el: Add the requirement of a running D-Bus session
1874 bus to the Commentary.
1875
1876 2011-10-24 Juri Linkov <juri@jurta.org>
1877
1878 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
1879 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
1880 (Bug#9364)
1881
1882 2011-10-24 Juri Linkov <juri@jurta.org>
1883
1884 * info.el (Info-following-node-name-re): Add newline to the list
1885 of allowed characters for leading space. (Bug#9824)
1886
1887 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1888
1889 * progmodes/octave-inf.el (inferior-octave-mode-map):
1890 Fix C-c C-h binding.
1891 * progmodes/octave-mod.el (octave-help): Remove.
1892
1893 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
1894
1895 Sync with Tramp 2.2.3.
1896
1897 * net/tramp-cache.el (top): Pacify byte-compiler using
1898 `init-file-user' and `site-run-file'.
1899
1900 * net/trampver.el: Update release number.
1901
1902 2011-10-23 Chong Yidong <cyd@gnu.org>
1903
1904 * files.el (toggle-read-only): Remove obsolete comment about
1905 version control.
1906
1907 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
1908 for toggle-read-only. Note that this hasn't called vc-next-action
1909 since 2008-05-02, though it wasn't documented at the time.
1910
1911 * vc/ediff-init.el (ediff-toggle-read-only-function):
1912 Use toggle-read-only.
1913
1914 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
1915
1916 Fix bug #9560, sporadic wrong indentation; improve instrumentation
1917 of c-parse-state.
1918
1919 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
1920 correct faulty logical expression.
1921 (c-parse-state-state, c-record-parse-state-state):
1922 (c-replay-parse-state-state): New defvar/defuns.
1923 (c-debug-parse-state): Use new functions.
1924
1925 2011-10-22 Martin Rudalics <rudalics@gmx.at>
1926
1927 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
1928 last fix. Use window-in-direction correctly.
1929
1930 2011-10-21 Chong Yidong <cyd@gnu.org>
1931
1932 * progmodes/idlwave.el (idlwave-mode):
1933 * progmodes/vera-mode.el (vera-mode): No need to set
1934 require-final-newline; that's done in prog-mode.
1935 Suggested by Stefan Monnier.
1936
1937 2011-10-21 Martin Rudalics <rudalics@gmx.at>
1938
1939 * mouse.el (mouse-drag-window-above)
1940 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
1941 (mouse-drag-mode-line-1, mouse-drag-header-line)
1942 (mouse-drag-vertical-line-rightward-window): Remove.
1943 (mouse-drag-line): New function.
1944 (mouse-drag-mode-line, mouse-drag-header-line)
1945 (mouse-drag-vertical-line): Call mouse-drag-line.
1946 * window.el (window-at-side-p, windows-at-side): New functions.
1947
1948 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
1949
1950 * tar-mode.el (tar-grind-file-mode):
1951 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
1952
1953 2011-10-21 Chong Yidong <cyd@gnu.org>
1954
1955 * progmodes/idlwave.el (idlwave-mode):
1956 * progmodes/vera-mode.el (vera-mode):
1957 Use mode-require-final-newline.
1958
1959 2011-10-20 Glenn Morris <rgm@gnu.org>
1960
1961 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
1962
1963 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
1964
1965 * emulation/cua-base.el (cua-set-mark): Fix case of string.
1966
1967 2011-10-20 Chong Yidong <cyd@gnu.org>
1968
1969 * emulation/cua-base.el (cua-mode):
1970 * mail/footnote.el (footnote-mode):
1971 * mail/mailabbrev.el (mail-abbrevs-mode):
1972 * net/xesam.el (xesam-minor-mode):
1973 * progmodes/bug-reference.el (bug-reference-mode):
1974 * progmodes/cap-words.el (capitalized-words-mode):
1975 * progmodes/compile.el (compilation-minor-mode)
1976 (compilation-shell-minor-mode):
1977 * progmodes/gud.el (gud-tooltip-mode):
1978 * progmodes/hideif.el (hide-ifdef-mode):
1979 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
1980 * progmodes/subword.el (subword-mode):
1981 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
1982 * progmodes/which-func.el (which-function-mode):
1983 * term/tvi970.el (tvi970-set-keypad-mode):
1984 * term/vt100.el (vt100-wide-mode):
1985 * textmodes/flyspell.el (flyspell-mode):
1986 * textmodes/ispell.el (ispell-minor-mode):
1987 * textmodes/nroff-mode.el (nroff-electric-mode):
1988 * textmodes/paragraphs.el (use-hard-newlines):
1989 * textmodes/refill.el (refill-mode):
1990 * textmodes/reftex.el (reftex-mode):
1991 * textmodes/rst.el (rst-minor-mode):
1992 * textmodes/sgml-mode.el (html-autoview-mode)
1993 (sgml-electric-tag-pair-mode):
1994 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
1995 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
1996 * emulation/crisp.el (crisp-mode):
1997 * emacs-lisp/eldoc.el (eldoc-mode):
1998 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
1999 minor mode behavior.
2000
2001 2011-10-19 Juri Linkov <juri@jurta.org>
2002
2003 * descr-text.el (describe-char): Add #x2010 and #x2011 to
2004 the list of hard-coded chars with escape-glyph face.
2005
2006 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
2007
2008 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
2009
2010 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
2011
2012 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
2013 running process.
2014
2015 2011-10-19 Glenn Morris <rgm@gnu.org>
2016
2017 * vc/vc-bzr.el (vc-bzr-after-dir-status):
2018 Ignore ignored files. (Bug#9726)
2019
2020 2011-10-19 Chong Yidong <cyd@gnu.org>
2021
2022 Doc fix for minor modes, stating that an omitted argument enables
2023 the mode unconditionally when called from Lisp.
2024
2025 * abbrev.el (abbrev-mode):
2026 * allout.el (allout-mode):
2027 * autoinsert.el (auto-insert-mode):
2028 * autoarg.el (autoarg-mode, autoarg-kp-mode):
2029 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
2030 (global-auto-revert-mode):
2031 * battery.el (display-battery-mode):
2032 * composite.el (global-auto-composition-mode)
2033 (auto-composition-mode):
2034 * delsel.el (delete-selection-mode):
2035 * desktop.el (desktop-save-mode):
2036 * dired-x.el (dired-omit-mode):
2037 * dirtrack.el (dirtrack-mode):
2038 * doc-view.el (doc-view-minor-mode):
2039 * double.el (double-mode):
2040 * electric.el (electric-indent-mode, electric-pair-mode):
2041 * emacs-lock.el (emacs-lock-mode):
2042 * epa-hook.el (auto-encryption-mode):
2043 * follow.el (follow-mode):
2044 * font-core.el (font-lock-mode):
2045 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
2046 * help.el (temp-buffer-resize-mode):
2047 * hilit-chg.el (highlight-changes-mode)
2048 (highlight-changes-visible-mode):
2049 * hi-lock.el (hi-lock-mode):
2050 * hl-line.el (hl-line-mode, global-hl-line-mode):
2051 * icomplete.el (icomplete-mode):
2052 * ido.el (ido-everywhere):
2053 * image-file.el (auto-image-file-mode):
2054 * image-mode.el (image-minor-mode):
2055 * iswitchb.el (iswitchb-mode):
2056 * jka-cmpr-hook.el (auto-compression-mode):
2057 * linum.el (linum-mode):
2058 * longlines.el (longlines-mode):
2059 * master.el (master-mode):
2060 * mb-depth.el (minibuffer-depth-indicate-mode):
2061 * menu-bar.el (menu-bar-mode):
2062 * minibuf-eldef.el (minibuffer-electric-default-mode):
2063 * mouse-sel.el (mouse-sel-mode):
2064 * msb.el (msb-mode):
2065 * mwheel.el (mouse-wheel-mode):
2066 * outline.el (outline-minor-mode):
2067 * paren.el (show-paren-mode):
2068 * recentf.el (recentf-mode):
2069 * reveal.el (reveal-mode, global-reveal-mode):
2070 * rfn-eshadow.el (file-name-shadow-mode):
2071 * ruler-mode.el (ruler-mode):
2072 * savehist.el (savehist-mode):
2073 * scroll-all.el (scroll-all-mode):
2074 * scroll-bar.el (scroll-bar-mode):
2075 * server.el (server-mode):
2076 * shell.el (shell-dirtrack-mode):
2077 * simple.el (auto-fill-mode, transient-mark-mode)
2078 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
2079 (line-number-mode, column-number-mode, size-indication-mode)
2080 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
2081 * strokes.el (strokes-mode):
2082 * time.el (display-time-mode):
2083 * t-mouse.el (gpm-mouse-mode):
2084 * tool-bar.el (tool-bar-mode):
2085 * tooltip.el (tooltip-mode):
2086 * type-break.el (type-break-mode-line-message-mode)
2087 (type-break-query-mode):
2088 * view.el (view-mode):
2089 * whitespace.el (whitespace-mode, whitespace-newline-mode)
2090 (global-whitespace-mode, global-whitespace-newline-mode):
2091 * xt-mouse.el (xterm-mouse-mode): Doc fix.
2092
2093 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
2094 Fix autogenerated docstring.
2095
2096 2011-10-19 Juri Linkov <juri@jurta.org>
2097
2098 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
2099 by checking environment variables "DESKTOP_SESSION" and
2100 "XDG_CURRENT_DESKTOP". (Bug#9779)
2101
2102 2011-10-19 Juri Linkov <juri@jurta.org>
2103
2104 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
2105 (browse-url-chromium-program, browse-url-chromium-arguments):
2106 New defcustoms.
2107 (browse-url-default-browser): Check for `browse-url-chromium' and
2108 call `browse-url-chromium-program'.
2109 (browse-url-chromium): New command. (Bug#9779)
2110
2111 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
2112
2113 * facemenu.el (list-colors-duplicates): On Windows, detect more
2114 duplicates by assuming that only colors matching "^System" are
2115 special "system colors". (Bug#9722)
2116
2117 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
2118
2119 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
2120 to distinguish the author from the committer.
2121
2122 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
2123
2124 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
2125
2126 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
2127
2128 * international/mule.el (sgml-html-meta-auto-coding-function):
2129 Add support for detecting encoding in HTML5 specified only as
2130 <meta charset="UTF-8">. Implementation just makes http-equiv and
2131 content-type parts from HTML4 encoding string optional. (Bug#9716)
2132
2133 2011-10-18 Glenn Morris <rgm@gnu.org>
2134
2135 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
2136
2137 2011-10-18 Chong Yidong <cyd@gnu.org>
2138
2139 * faces.el (cursor): Doc fix.
2140
2141 2011-10-17 Chong Yidong <cyd@gnu.org>
2142
2143 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
2144
2145 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
2146
2147 * dirtrack.el (dirtrack): Support shell buffers with path
2148 prefixes, e.g. tramp-based remote shells. (Bug#9647)
2149
2150 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
2151
2152 * json.el: Bump version to 1.3 and note change in History.
2153 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
2154
2155 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
2156
2157 * comint.el (comint-insert-input, comint-send-input)
2158 (comint-get-old-input-default, comint-backward-matching-input)
2159 (comint-next-prompt): Use nil instead of `input' for field property of
2160 past user input (bug#114).
2161
2162 * minibuffer.el (completion--replace): Inherit surrounding properties
2163 (bug#114).
2164 (minibuffer-complete-and-exit): Use it.
2165
2166 * comint.el (comint--table-subvert): Quote the all-completions output
2167 (bug#9160).
2168
2169 2011-10-17 Martin Rudalics <rudalics@gmx.at>
2170
2171 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
2172
2173 * menu-bar.el (menu-bar-file-menu): Add entry for making new
2174 window on right of selected. (Bug#9350) Reword other window
2175 entries and separate them from frame entries.
2176
2177 2011-10-15 Glenn Morris <rgm@gnu.org>
2178
2179 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
2180 Doc fixes.
2181
2182 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
2183
2184 * net/network-stream.el (network-stream-open-starttls):
2185 Improve detection of failure due to lack of TLS support.
2186
2187 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
2188 putting the input text in front and in bold.
2189
2190 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
2191
2192 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
2193
2194 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
2195 empty buffer.
2196
2197 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
2198 unread-command-events rather than pushing yet-another event.
2199
2200 2011-10-14 Eli Zaretskii <eliz@gnu.org>
2201
2202 * mail/sendmail.el (sendmail-query-once): Improve the wording of
2203 the explanation of the possible choices. Make the options passed
2204 to completing-read shorter.
2205
2206 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2207
2208 * textmodes/flyspell.el (flyspell-large-region): Make sure
2209 extended character mode is used if defined (Bug#1339).
2210
2211 2011-10-13 Eli Zaretskii <eliz@gnu.org>
2212
2213 * simple.el (what-cursor-position): Fix the display of the
2214 character info for LRE, LRO, RLE, and RLO characters by appending
2215 an invisible PDF.
2216
2217 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
2218
2219 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
2220 even in case of error; add debug spec; simplify data flow.
2221 (with-timeout-handler): Remove.
2222
2223 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
2224
2225 Fix Bug#6019, Bug#9315.
2226
2227 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
2228 complete `buffer-file-name', the local file name part could look
2229 remotely (for example on VMS).
2230
2231 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
2232 `tramp-run-real-handler'.
2233 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
2234 already quoted by '"'.
2235
2236 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
2237 Let `file-name-handler-alist' be nil, the local file name part
2238 could look remotely (for example on VMS).
2239
2240 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
2241
2242 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
2243 from here...
2244 (flyspell-post-command-hook): ...to here.
2245
2246 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
2247
2248 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
2249 if not needed.
2250 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
2251 using completion. Protect against "slow" callers.
2252 Remove the "message hack".
2253
2254 2011-10-11 Juri Linkov <juri@jurta.org>
2255
2256 * isearch.el (isearch-lazy-highlight-word): New variable.
2257 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
2258 Use it. (Bug#9727)
2259
2260 2011-10-11 Glenn Morris <rgm@gnu.org>
2261
2262 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
2263 like f90-previous-statement does.
2264
2265 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2266
2267 * eshell/eshell.el (eshell-command): History should be saved
2268 only in interactive use, to avoid error.
2269
2270 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
2271
2272 * minibuffer.el (completion-file-name-table): Fix last change,
2273 i.e. ignore normal errors but not the other ones.
2274
2275 2011-10-10 Martin Rudalics <rudalics@gmx.at>
2276
2277 * window.el (special-display-buffer-names)
2278 (special-display-regexps): Remove some remnants of earlier
2279 changes from doc-strings.
2280 (quit-windows-on): New function.
2281
2282 * vc/vc.el (vc-revert, vc-rollback):
2283 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
2284 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
2285 (Bug#6183) (Bug#7074) (Bug#7447)
2286
2287 2011-10-09 Martin Rudalics <rudalics@gmx.at>
2288
2289 * window.el (frame-auto-hide-function): Add version tag.
2290 (Bug#9699)
2291
2292 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
2293
2294 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
2295 condition.
2296
2297 2011-10-09 Leo Liu <sdl.web@gmail.com>
2298
2299 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
2300 (Bug#9701)
2301
2302 2011-10-08 Glenn Morris <rgm@gnu.org>
2303
2304 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
2305 before the first code statement zero indent. (Bug#9690)
2306
2307 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
2308
2309 * simple.el (count-words-region): Always count in the region.
2310 Report the number of lines and characters too.
2311 (count-words): New command, which counts in the buffer if the
2312 region is inactive, as count-words-region used to.
2313 (count-words--message): New function. Handle plurals.
2314 (count-lines-region): Make it an alias for count-words-region.
2315
2316 * bindings.el (esc-map): Replace count-lines-region with
2317 count-words-region.
2318
2319 2011-10-08 Martin Rudalics <rudalics@gmx.at>
2320
2321 * window.el (window--delete): Delete dedicated frame
2322 unconditionally when argument KILL is non-nil. (Bug#9699)
2323 (switch-to-buffer): Fix doc-string typo.
2324
2325 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2326
2327 * lisp/eshell/eshell.el (eshell-command): Avoid using hooks.
2328
2329 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
2330
2331 * bindings.el ([M-left],[M-right]): Bind to left-word and
2332 right-word respectively.
2333
2334 2011-10-07 Glenn Morris <rgm@gnu.org>
2335
2336 * cus-start.el (debug-on-quit): Fix custom type.
2337
2338 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
2339
2340 * subr.el (define-key-after): Clarify that the function is not
2341 useful for non-menu keymaps.
2342
2343 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
2344
2345 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2346
2347 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
2348 in current minibuffer (Fix bug with recursive minibuffers).
2349
2350 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
2351
2352 * progmodes/gdb-mi.el (gdb): Doc fix.
2353
2354 2011-10-05 Martin Rudalics <rudalics@gmx.at>
2355
2356 * window.el (frame-auto-hide-function): New option replacing
2357 frame-auto-delete. Suggested by Stefan Monnier.
2358 (window--delete): Call frame-auto-hide-function instead of
2359 investigating frame-auto-delete.
2360 (window-point-1, set-window-point-1): New functions.
2361 (window-in-direction, record-window-buffer, window-state-get-1)
2362 (display-buffer-record-window): Use window-point-1 instead of
2363 window-point.
2364 (set-window-buffer-start-and-point): Use set-window-point-1.
2365
2366 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
2367
2368 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
2369
2370 2011-10-05 Glenn Morris <rgm@gnu.org>
2371
2372 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
2373 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
2374
2375 2011-10-05 Leo Liu <sdl.web@gmail.com>
2376
2377 * subr.el (read-char-choice): Fix argument to buffer-live-p which
2378 works with buffer object.
2379
2380 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
2381
2382 * mpc.el (mpc-tool-bar-map): Add labels.
2383
2384 2011-10-04 Glenn Morris <rgm@gnu.org>
2385
2386 * calendar/holidays.el (calendar-check-holidays): Doc fix.
2387
2388 2011-10-04 Martin Rudalics <rudalics@gmx.at>
2389
2390 * window.el (window--delete): New function.
2391 (frame-auto-delete): Resuscitate option.
2392 (bury-buffer, replace-buffer-in-windows)
2393 (quit-window): Rewrite using window--delete.
2394 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
2395 Pass display-buffer-mark-dedicated to window--display-buffer-2
2396 (Bug#9639).
2397
2398 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
2399
2400 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
2401 returns a list (bug#9554). Add remote file name completion.
2402 * comint.el (comint--table-subvert): Curry and get quote&unquote
2403 functions as arguments.
2404 (comint--complete-file-name-data): Adjust call accordingly.
2405 * pcomplete.el (pcomplete--table-subvert): Remove.
2406 (pcomplete-completions-at-point): Use comint--table-subvert instead.
2407
2408 * minibuffer.el (completion-table-case-fold): Use currying.
2409 (completion--styles-type, completion--cycling-threshold-type):
2410 New constants.
2411 (completion-styles, completion-category-overrides)
2412 (completion-cycle-threshold): Use them.
2413 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
2414 completion-table-case-fold.
2415
2416 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
2417
2418 * minibuffer.el (completion-category-overrides): Fix type of styles
2419 and add more user friendly tags (bug#9660).
2420
2421 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
2422
2423 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
2424 (mule-input-method-string): New widget.
2425 (default-input-method, language-info-custom-alist): Use it.
2426
2427 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
2428
2429 * pcomplete.el: Require comint.
2430 (pcomplete--common-suffix): Remove.
2431 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
2432 (pcomplete--table-subvert): Sync with comint--table-subvert.
2433 (pcomplete--entries): Use comint-completion-file-name-table.
2434 * comint.el (comint-unquote-filename): Simplify.
2435 (comint-completion-file-name-table): New function (bug#9616).
2436 (comint--complete-file-name-data): Use it.
2437
2438 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
2439 (pcmpl-gnu-tar-buffer): Remove.
2440 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
2441 around. Make sure pcomplete-suffix-list is only changed temporarily.
2442 Don't look inside the tar's file if it's too large.
2443
2444 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
2445
2446 * cus-edit.el (custom-mode-map):
2447 * epa.el (epa-key-list-mode-map):
2448 * man.el (Man-mode-map):
2449 * startup.el (splash-screen-keymap):
2450 * simple.el (special-mode-map): Use scroll-up-command and
2451 scroll-down-command.
2452
2453 * progmodes/idlw-help.el (idlwave-help-mode-map):
2454 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
2455 * net/newst-plainview.el (newsticker-mode-map):
2456 * emulation/ws-mode.el (wordstar-mode-map):
2457 * emulation/vi.el (vi-com-map):
2458 * calc/calc-graph.el (calc-graph-show-dumb):
2459 * term/sun.el (terminal-init-sun):
2460 * term/ns-win.el (global-map):
2461 * progmodes/grep.el (grep-mode-map):
2462 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
2463 * mail/rmail.el (rmail-mode-map):
2464 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
2465
2466 * custom.el (custom-safe-themes, load-theme): Treat value of t for
2467 custom-safe-themes as special.
2468
2469 2011-10-01 Julien Danjou <julien@danjou.info>
2470
2471 * notifications.el (notifications-notify): Fix docstring.
2472
2473 2011-10-01 Per Starbäck <per@starback.se>
2474
2475 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
2476
2477 2011-09-30 Martin Rudalics <rudalics@gmx.at>
2478
2479 * startup.el (command-line-1): Fix last fix by inserting
2480 initial-scratch-message into *scratch* before displaying it.
2481 (Bug#9605) and (Bug#9636)
2482
2483 2011-09-29 Eli Zaretskii <eliz@gnu.org>
2484
2485 * simple.el (line-move): If auto-hscroll-mode is disabled and the
2486 window is hscrolled, move by logical lines. (Bug#9607)
2487 (line-move-visual): Update the doc string to the above effect.
2488
2489 2011-09-29 Martin Rudalics <rudalics@gmx.at>
2490
2491 * window.el (display-buffer-record-window): When WINDOW is the
2492 selected window use `point' instead of `window-point'. (Bug#9626)
2493
2494 * startup.el (command-line-1): Use insert-before-markers when
2495 inserting initial-scratch-message. (Bug#9605)
2496
2497 * help.el (help-window): Remove variable.
2498
2499 2011-09-29 Glenn Morris <rgm@gnu.org>
2500
2501 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
2502
2503 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
2504
2505 * descr-text.el (describe-char-categories): Accept category
2506 descriptions more than one line long.
2507
2508 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2509
2510 * simple.el (delete-trailing-whitespace): Fix last change.
2511
2512 * progmodes/perl-mode.el (perl-syntax-propertize-function):
2513 Don't confuse "y => 3" as the beginning of a `y' operation.
2514
2515 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
2516 object has more than 4 slots (bug#9613).
2517
2518 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
2519
2520 * subr.el (with-output-to-temp-buffer):
2521 * net/quickurl.el (quickurl, quickurl-browse-url):
2522 Fix typos in docstrings.
2523
2524 2011-09-27 Eli Zaretskii <eliz@gnu.org>
2525
2526 * minibuffer.el (completion-styles)
2527 (completion-category-overrides): Cross reference each other in doc
2528 strings.
2529
2530 2011-09-27 Glenn Morris <rgm@gnu.org>
2531
2532 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
2533 to split-string. (Bug#9606)
2534
2535 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2536
2537 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
2538 (bug#9615).
2539
2540 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
2541
2542 * emacs-lisp/package.el (list-packages): Fix echo area message.
2543
2544 2011-09-27 Leo Liu <sdl.web@gmail.com>
2545
2546 * ido.el (ido-read-internal): Accept cons cell HIST arg.
2547
2548 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
2549
2550 * net/dbus.el (dbus-unregister-object): Don't release services for
2551 registered signals. (Bug#9581)
2552
2553 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
2554
2555 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
2556 function that picks between cfengine 2 and 3 support
2557 automatically. Update docs accordingly.
2558
2559 2011-09-22 Kenichi Handa <handa@m17n.org>
2560
2561 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
2562 ZERO.
2563 (indian-itrans-v5-table-for-tamil): New variable.
2564 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
2565
2566 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
2567
2568 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
2569 that's true if the current command involved collapsing of text.
2570 It's reset to false at the beginning of the next command.
2571 (allout-post-command-business): Move the cursor to the beginning
2572 of entry if the cursor is hidden and collapsing activity just
2573 happened.
2574
2575 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
2576
2577 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
2578 tracking (Bug#9541).
2579
2580 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
2581
2582 * net/newst-reader.el (newsticker-html-renderer)
2583 (newsticker-show-news): Automatically load html rendering package
2584 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
2585 because w3m-fill-column is let-bound" and the error "Symbol's value
2586 as variable is void: w3m-fill-column".
2587
2588 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
2589
2590 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
2591 Release services only if they are defined. (Bug#9581)
2592
2593 2011-09-23 Richard Stallman <rms@gnu.org>
2594
2595 * textmodes/paragraphs.el (forward-sentence): For backwards case,
2596 distinguish start of paragraph from start of its text.
2597
2598 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
2599
2600 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
2601 (rmail-generate-viewer-buffer): Put that hook on view buffer.
2602 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
2603
2604 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
2605
2606 * international/mule-diag.el (mule-diag): Insert a newline after
2607 each fontset description.
2608
2609 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
2610
2611 * simple.el (delete-trailing-whitespace):
2612 Document last change; simplify.
2613
2614 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
2615
2616 * simple.el (delete-trailing-whitespace): Also delete
2617 extra newlines at the end of the buffer.
2618
2619 * textmodes/picture.el: Make motion commands obey shift-select-mode.
2620 (picture-newline): Use forward-line so as to ignore fields.
2621
2622 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
2623
2624 * subr.el (with-wrapper-hook): Fix edebug spec.
2625
2626 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
2627
2628 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
2629 (bug#4538).
2630
2631 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
2632
2633 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
2634 Fix nasty bug using wrong cached values.
2635
2636 2011-09-23 Alan Mackenzie <acm@muc.de>
2637
2638 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
2639
2640 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
2641
2642 * window.el (pop-to-buffer): Ensure right window is selected if we
2643 chose another frame.
2644
2645 2011-09-22 Eli Zaretskii <eliz@gnu.org>
2646
2647 * simple.el (what-cursor-position): Use get-char-property-change
2648 and next-single-char-property-change, to be able to show display
2649 properties that come from overlays as well as text properties.
2650
2651 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
2652
2653 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
2654
2655 * cmuscheme.el (run-scheme, switch-to-scheme):
2656 * cus-edit.el (customize-group, custom-buffer-create)
2657 (customize-browse):
2658 * info.el (info):
2659 * shell.el (shell):
2660 * mail/sendmail.el (mail):
2661 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
2662
2663 2011-09-22 Richard Stallman <rms@gnu.org>
2664
2665 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
2666 move back only to line beg, don't move back over blank lines.
2667
2668 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
2669
2670 * files.el (copy-directory): Set directory attributes only in case
2671 they could be retrieved from the source directory. (Bug#9565)
2672
2673 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
2674
2675 * progmodes/hideshow.el (hs-looking-at-block-start-p)
2676 (hs-find-block-beginning, hs-hide-level-recursive):
2677 Ignore strings as well as comments. (Bug#9502)
2678
2679 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
2680
2681 * progmodes/sql.el (sql-comint-postgres):
2682 Convert port number to a string. (Bug#9566)
2683
2684 2011-09-22 Martin Rudalics <rudalics@gmx.at>
2685
2686 * window.el (quit-window): Undedicate window when switching to
2687 previous buffer. Reported by Thierry Volpiatto
2688 <thierry.volpiatto@gmail.com>.
2689 (special-display-popup-frame): When popping up a new frame reset
2690 its previous buffers to nil. Simplify code.
2691
2692 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
2693
2694 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
2695 and process filter, as done also in `shell-command'.
2696
2697 2011-09-21 Martin Rudalics <rudalics@gmx.at>
2698
2699 * window.el (set-window-buffer-start-and-point):
2700 Call set-window-start with NOFORCE argument t.
2701 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
2702 (quit-window): Reword doc-string. Handle new format of
2703 quit-restore parameter. Don't delete window if it has a
2704 previous buffer we can show instead of the present one.
2705 (display-buffer-record-window): Rewrite using a new format for
2706 the quit-restore window parameter
2707 (special-display-popup-frame, display-buffer-same-window)
2708 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2709 (display-buffer-pop-up-window, display-buffer-use-some-window):
2710 Adapt symbol passed to display-buffer-record-window.
2711 * help.el (help-window-setup): Handle new format of quit-restore
2712 parameter.
2713
2714 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
2715
2716 * faces.el (face-list): Fix docstring (bug#9564).
2717
2718 * window.el (display-buffer--action-function-custom-type):
2719 Don't include internal functions in the Custom interface.
2720
2721 2011-09-20 Juri Linkov <juri@jurta.org>
2722
2723 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
2724 (Info-forward-node, Info-backward-node, Info-next-preorder)
2725 (Info-last-preorder): Use it. (Bug#9528)
2726
2727 2011-09-20 Juri Linkov <juri@jurta.org>
2728
2729 * info.el (Info-last-preorder): Visit last menu item only when
2730 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
2731
2732 2011-09-20 Julien Danjou <julien@danjou.info>
2733
2734 * password-cache.el (password-cache-remove): Remove entries even if the
2735 value is nil, so that password with a nil value (negative caching) is
2736 possible to invalidate.
2737
2738 2011-09-20 Lawrence Mitchell <wence@gmx.li>
2739
2740 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
2741 all whitespace around breakpoint. (Bug#9553)
2742 (f90-find-breakpoint): Only break at whitespace inside a comment.
2743
2744 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2745
2746 * minibuffer.el (completion-file-name-table): Keep track of errors.
2747 (completion-table-with-predicate): Handle the case where pred1 is nil.
2748 * pcomplete.el (pcomplete-completions-at-point): Simplify.
2749
2750 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2751
2752 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
2753 (debugger-return-value): Signal an error if the debugging context does
2754 not await any return value.
2755
2756 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
2757 * image-mode.el (image-toggle-display-text)
2758 (image-toggle-display-image): Stay away from evil `intangible'.
2759
2760 2011-09-19 Leo Liu <sdl.web@gmail.com>
2761
2762 * replace.el (occur-revert-arguments): Make it permanent-local.
2763 (occur-mode): Don't call font-lock-defontify.
2764
2765 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
2766
2767 * net/ldap.el (ldap-search-internal): Don't push empty search
2768 result (Bug#9508).
2769
2770 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2771
2772 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
2773
2774 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
2775
2776 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
2777 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
2778
2779 2011-09-18 Juri Linkov <juri@jurta.org>
2780
2781 * buff-menu.el (Buffer-menu-mode-map):
2782 * dired.el (dired-mode-map):
2783 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
2784 (lisp-interaction-mode-map):
2785 * emacs-lisp/package.el (package-menu-mode-map):
2786 * epa.el (epa-key-list-mode-map):
2787 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
2788 (menu-bar-options-menu):
2789 * outline.el (outline-mode-menu-bar-map):
2790 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
2791 * vc/vc-dir.el (vc-dir-menu-map):
2792 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
2793 Capitalize non-function content words in menu item strings.
2794
2795 * dired.el (dired-mode-map): Add menu item for
2796 `image-dired-dired-toggle-marked-thumbs'.
2797
2798 2011-09-18 Juri Linkov <juri@jurta.org>
2799
2800 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
2801 to `isearch-case-fold-search' and restore its original value
2802 after the `isearch-mode' call.
2803
2804 2011-09-18 Juri Linkov <juri@jurta.org>
2805
2806 * progmodes/grep.el (grep-process-setup): Don't check code for 1
2807 because `zgrep' returns 1 for successful matches (bug#9226).
2808
2809 2011-09-18 Juri Linkov <juri@jurta.org>
2810
2811 * info.el (Info-extract-menu-node-name): Check the second match
2812 for empty string (second test-case of bug#9528).
2813 (Info-last-preorder): Let-bind `Info-history' to nil to not add
2814 intermediate nodes to the history (first test-case of bug#9528).
2815
2816 2011-09-18 Juri Linkov <juri@jurta.org>
2817
2818 * info.el (Info-mode-syntax-table): New variable.
2819 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
2820
2821 2011-09-18 Juri Linkov <juri@jurta.org>
2822
2823 * info.el (Info-file-supports-index-cookies):
2824 Increment line-beginning-position's arg from 3 to 4 because makeinfo
2825 outputs one more line for long file names (bug#4142).
2826
2827 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
2828
2829 * newcomment.el (comment-normalize-vars): If prompting for
2830 comment-start, set comment-start-skip too (Bug#8424).
2831
2832 2011-09-18 Johan Bockgård <bojohan@gnu.org>
2833
2834 * icomplete.el: Fix previous fix of Bug#5849.
2835 (icomplete-mode): Don't set completion-show-inline-help.
2836 (icomplete-minibuffer-setup): Set completion-show-inline-help
2837 locally during icompletion.
2838
2839 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
2840
2841 * woman.el (woman2-process-escapes): Don't delete unrecognized
2842 escapes (Bug#7843).
2843
2844 * files.el (inhibit-first-line-modes-regexps): Add image files.
2845 (hack-local-variables-prop-line): Return nil for malformed
2846 prop-lines (Bug#9044).
2847
2848 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
2849
2850 * net/tramp.el (top): Don't require 'shell.
2851 (tramp-methods): Fix docstring.
2852 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
2853 Return complete remote file name. Handle "smb" case.
2854 Use `tramp-tmpdir', if defined for the respective method.
2855 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
2856
2857 * net/tramp-compat.el (top): Require 'shell.
2858
2859 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
2860 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
2861 `tramp-current-host'.
2862 (tramp-get-remote-tmpdir): Remove.
2863
2864 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
2865 `tramp-tmpdir' entries.
2866 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
2867 (tramp-smb-handle-file-attributes): Ignore errors.
2868 (tramp-smb-wait-for-output): Check also for process end.
2869
2870 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
2871
2872 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
2873 when sending QUIT (bug#9312).
2874
2875 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
2876
2877 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
2878 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
2879 occur-mode-display-occurrence.
2880 (occur-edit-mode): Add usage message.
2881 (occur-cease-edit): New command.
2882 (occur-after-change-function): Use text properties to find the
2883 position of the prefix text.
2884 (occur-engine): Set stickiness of prefix text properties.
2885
2886 2011-09-17 Glenn Morris <rgm@gnu.org>
2887
2888 * progmodes/etags.el (complete-tag):
2889 Fix call to completion-in-region. (Bug#9526)
2890
2891 2011-09-17 Juri Linkov <juri@jurta.org>
2892
2893 * textmodes/ispell.el (ispell-word): Add to the error message
2894 the word, ispell program name and current dictionary (bug#9121).
2895 (ispell-tex-arg-end): Capitalize "error" in the error message.
2896
2897 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
2898
2899 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
2900 check. (Bug#4251)
2901
2902 2011-09-17 Juri Linkov <juri@jurta.org>
2903
2904 * window.el (window-safe-min-height, window-safe-min-width):
2905 Fix typos (followup to bug#9522).
2906
2907 2011-09-17 Sven Joachim <svenjoac@gmx.de>
2908
2909 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
2910
2911 2011-09-16 Eli Zaretskii <eliz@gnu.org>
2912
2913 * simple.el (line-move): If goal-column is set, move by logical
2914 lines, not by display lines. (Bug#971)
2915 (next-line, previous-line, goal-column, line-move-visual): Doc fix
2916 to reflect the above change.
2917
2918 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
2919
2920 * image.el (imagemagick-register-types): Use regexp-opt.
2921
2922 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
2923
2924 * window.el (display-buffer-base-action): Rename from
2925 display-buffer-default-action. Make default value empty.
2926 (display-buffer-overriding-action): Convert to defvar.
2927 (display-buffer-fallback-action): New var.
2928
2929 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
2930
2931 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
2932 declaration.
2933 (package--add-to-archive-contents): If there is a duplicate entry
2934 with an older version, remove it.
2935 (package-menu-mark-delete, package-menu-mark-install)
2936 (package-menu-mark-unmark): Make unused args optional.
2937 (package-menu-mark-obsolete-for-deletion):
2938 Use package-menu-get-status instead of a regexp search.
2939 (package-menu-get-status): Use tabulated-list-entry.
2940 (package-menu-mark-upgrades): New command.
2941 (package-menu-mode-map): Bind it to U. Add it to menu bar.
2942 (package-menu-execute): Do installation before deletion.
2943 (package-menu-refresh, package-menu-execute): Use derived-mode-p
2944 instead of checking major-mode.
2945 (package-menu--find-upgrades): New function.
2946
2947 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2948
2949 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
2950 passwords in the log buffer.
2951 (smtpmail-process-filter): Update the process marker so that the
2952 "broken by peer" status message is inserted in the right place.
2953
2954 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2955
2956 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
2957 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
2958 bibtex-completion-at-point-function.
2959 (bibtex-completion-at-point-function): Use them.
2960
2961 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
2962
2963 * mpc.el (mpc-constraints-tag-lookup): New function.
2964 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
2965 also to browser "album|playlist".
2966
2967 2011-09-14 Juri Linkov <juri@jurta.org>
2968
2969 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
2970 (isearch-edit-string): Use length of `isearch-string' when
2971 `isearch-fail-pos' returns nil.
2972 (isearch-message): Remove duplicate code and call
2973 `isearch-fail-pos' with arg `t'.
2974
2975 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
2976
2977 * replace.el (occur-mode-goto-occurrence): Don't force using other
2978 window (Bug#9499).
2979
2980 * dired-aux.el (dired-do-chmod): Don't provide initial input.
2981
2982 2011-09-14 Martin Rudalics <rudalics@gmx.at>
2983
2984 * window.el (display-buffer-window): Remove.
2985 (display-buffer-record-window): Use help-setup window parameter
2986 instead of variable display-buffer-window.
2987 (display-buffer-function, special-display-buffer-names)
2988 (special-display-function): Mention help-setup parameter instead
2989 of display-buffer-window in doc-string.
2990 * help.el (help-window-setup): New argument help-window.
2991 Use help-window-setup parameter instead of display-buffer-window.
2992 Reword some messages.
2993 (with-help-window): Pass window used for displaying the buffer
2994 to help-window-setup. Don't set display-buffer-window.
2995
2996 2011-09-13 Glenn Morris <rgm@gnu.org>
2997
2998 * emacs-lisp/debug.el (debugger-make-xrefs):
2999 Preserve point. (Bug#9462)
3000
3001 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
3002
3003 * window.el (window-deletable-p): Use next-frame.
3004
3005 2011-09-13 Martin Rudalics <rudalics@gmx.at>
3006
3007 * window.el (window-auto-delete): Remove.
3008 (window-deletable-p): Remove argument FORCE. Don't deal with
3009 dedication and previous buffers.
3010 (switch-to-prev-buffer): Don't delete window.
3011 (delete-windows-on): Delete a window's frame if and only if the
3012 window is dedicated.
3013 (replace-buffer-in-windows): Delete buffer's window or frame if
3014 and only if window is dedicated.
3015 (quit-window): Handle quit-restore as before last change.
3016 (bury-buffer): Delete window only if window-deletable-p returns t.
3017
3018 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
3019
3020 * window.el (window-deletable-p): Never delete the last frame on a
3021 given terminal.
3022
3023 2011-09-13 Glenn Morris <rgm@gnu.org>
3024
3025 * help.el (describe-key-briefly): Copy previous standard-output change.
3026
3027 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
3028
3029 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
3030
3031 2011-09-13 Glenn Morris <rgm@gnu.org>
3032
3033 * emacs-lisp/lisp-mode.el (lisp-indent-function):
3034 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
3035
3036 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
3037
3038 * dired-aux.el (dired-mark-read-string): Don't return default
3039 value on empty input (Bug#9361).
3040 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
3041 Omit initial minibuffer contents.
3042 (dired-do-chmod): Signal an error on empty input.
3043 (dired-mark-read-string): Don't return default on empty input.
3044
3045 * files.el (file-modes-symbolic-to-number): Doc fix.
3046
3047 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3048
3049 * international/mule-cmds.el (ucs-completions): Remove.
3050 (read-char-by-name): Use complete-with-action instead; add metadata.
3051
3052 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
3053
3054 * window.el (display-buffer--action-function-custom-type)
3055 (display-buffer--action-custom-type): New vars.
3056 (display-buffer-alist, display-buffer-default-action)
3057 (display-buffer-overriding-action): Add defcustom types.
3058
3059 * frame.el (delete-other-frames): Doc fix (Bug#276).
3060
3061 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3062
3063 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
3064
3065 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
3066
3067 Change modes that used same-window-* vars to use switch-to-buffer.
3068
3069 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
3070 Use switch-to-buffer.
3071
3072 * cus-edit.el (customize-group, custom-buffer-create)
3073 (customize-browse, custom-buffer-create-other-window):
3074 Use switch-to-buffer or switch-to-buffer-other-window.
3075
3076 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
3077 (Info-prev, Info-up, Info-speedbar-goto-node)
3078 (info-display-manual): Use switch-to-buffer.
3079 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
3080
3081 * mail/sendmail.el (mail): Use switch-to-buffer.
3082 (mail-recover): Use switch-to-buffer-other-window.
3083
3084 * cmuscheme.el (run-scheme, switch-to-scheme):
3085 * ielm.el (ielm):
3086 * shell.el (shell):
3087 * net/rlogin.el (rlogin):
3088 * net/telnet.el (telnet, rsh):
3089 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
3090
3091 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
3092
3093 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
3094
3095 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3096
3097 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
3098 so don't mention it (bug#9301).
3099 (dired-sort-toggle-or-edit): Clarify string further.
3100
3101 * faces.el (face-spec-set-match-display): Make `(type graphic)'
3102 match `x', `w32' and `ns', like the manual says (bug#9029).
3103
3104 * subr.el (eval-after-load): Doc string clarification (bug#9125).
3105 (process-kill-buffer-query-function): Mention the buffer name in
3106 the query.
3107
3108 * image-mode.el (image-next-line): The line parameter is mandatory
3109 (bug#9258).
3110
3111 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
3112 which can be useful (bug#9301).
3113
3114 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
3115
3116 * subr.el (match-string): Mention that the current buffer should
3117 be the same as the search was done in (bug#9282).
3118
3119 * facemenu.el: Disable the remove-* commands if the mark isn't
3120 active (bug#9162).
3121
3122 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
3123
3124 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
3125 of display-buffer.
3126 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
3127
3128 * replace.el (occur-mode-goto-occurrence)
3129 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
3130 and display-buffer.
3131
3132 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
3133 display-buffer.
3134
3135 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
3136 special-display and same-window variables.
3137 (mail-other-window): Use switch-to-buffer-other-window.
3138 (mail-other-frame): USe switch-to-buffer-other-frame.
3139
3140 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
3141 Use display-buffer-other-frame.
3142 (gdb-display-gdb-buffer): Use pop-to-buffer.
3143
3144 * progmodes/gud.el (gud-goto-info): Use info-other-window.
3145
3146 * progmodes/python.el: Don't set same-window-buffer-names.
3147
3148 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
3149
3150 * window.el (display-buffer-alist): Add *Python*.
3151
3152 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
3153
3154 * window.el (display-buffer-alist): Add entry for buffers
3155 previously handled same-window-*.
3156 (display-buffer-alist, display-buffer-default-action)
3157 (display-buffer-overriding-action): Mark as risky.
3158 (display-buffer-alist): Document action function changes.
3159 (display-buffer--same-window-action)
3160 (display-buffer--other-frame-action): New variables.
3161 (switch-to-buffer, display-buffer-other-frame): Use them.
3162 (display-buffer): Rename reuse-frame entry to reusable-frames.
3163 (display-buffer-reuse-selected-window): Function deleted.
3164 (display-buffer-reuse-window): Handle reusable-frames alist entry.
3165 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
3166 (display-buffer-special): New function.
3167 (display-buffer--maybe-pop-up-frame-or-window): Rename from
3168 display-buffer-reuse-or-pop-window. Split off special-display
3169 part into display-buffer-special.
3170 (display-buffer-use-some-window): Don't perform any special
3171 pop-up-frames handling.
3172 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
3173 (display-buffer--maybe-same-window): Rename from
3174 display-buffer-maybe-same-window.
3175
3176 * info.el: Don't set same-window-regexps.
3177 (info-setup): New function.
3178 (info-other-window, info): Call it.
3179
3180 * cus-edit.el: Don't set same-window-regexps.
3181 (customize-group): New argument.
3182 (customize-group-other-window): Use it.
3183 (customize-face, customize-face-other-window): Likewise.
3184 (custom-buffer-create-other-window): Use pop-to-buffer directly.
3185
3186 * net/rlogin.el:
3187 * net/telnet.el:
3188 * progmodes/gud.el: Don't set same-window-regexps.
3189
3190 * cmuscheme.el:
3191 * ielm.el:
3192 * shell.el:
3193 * mail/sendmail.el:
3194 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
3195
3196 2011-09-10 Juri Linkov <juri@jurta.org>
3197
3198 * isearch.el (isearch-edit-string): Remove obsolete mention of
3199 `C-w' (`isearch-yank-word-or-char') from docstring.
3200 (isearch-query-replace): Fix typo in docstring (bug#9466).
3201
3202 2011-09-10 Juri Linkov <juri@jurta.org>
3203
3204 * paren.el (show-paren-function): Don't show escaped parens.
3205 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
3206
3207 2011-09-10 Eli Zaretskii <eliz@gnu.org>
3208
3209 * mail/sendmail.el (mml-to-mime, mml-attach-file)
3210 (mm-default-file-encoding): Remove autoload forms, they are
3211 replaced with autoload cookies in mml.el and mm-encode.el.
3212 (mail-add-attachment): New command.
3213 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
3214 (mail-mode): Mention mail-insert-file and mail-add-attachment in
3215 the doc string.
3216 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
3217
3218 2011-09-10 Reuben Thomas <rrt@sc3d.org>
3219
3220 * simple.el (count-words-region): Use buffer if there's no region
3221 (bug#9429).
3222
3223 2011-09-09 Juri Linkov <juri@jurta.org>
3224
3225 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
3226 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
3227 (wdired-isearch-filter-read-only): New function. (Bug#6362)
3228
3229 2011-09-09 Alan Mackenzie <acm@muc.de>
3230
3231 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
3232 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
3233
3234 2011-09-09 Eli Zaretskii <eliz@gnu.org>
3235
3236 Fix for Savannah bug#9392.
3237 * simple.el (mail-encode-mml): New defvar.
3238
3239 * mail/rmail.el (mail-encode-mml): Add a defvar.
3240 (rmail-enable-mime-composing): Default to t.
3241 (rmail-forward): Use MIME method of forwarding only if both
3242 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
3243 Set mail-encode-mml non-nil if the MIME method was used.
3244
3245 * mail/sendmail.el (mml-to-mime): Add autoload form.
3246 (mail-encode-mml): Add a defvar.
3247 (mail-mode): Make mail-encode-mml buffer-local and initialize it
3248 to nil.
3249 (mail-send): If mail-encode-mml is non-nil, run the outgoing
3250 message through mml-to-mime, and reset mail-encode-mml to nil.
3251
3252 2011-09-09 Glenn Morris <rgm@gnu.org>
3253
3254 * woman.el (woman-if-body): When processing an .el block,
3255 do not delete the next .el block as well. (Bug#9447)
3256 (woman-special-characters): Add oq, cq, and hy characters.
3257
3258 2011-09-08 Martin Rudalics <rudalics@gmx.at>
3259
3260 * window.el (window-deletable-p): Make sure window is live before
3261 invoking window-prev-buffers.
3262
3263 2011-09-08 Leo Liu <sdl.web@gmail.com>
3264
3265 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
3266
3267 2011-09-08 Juri Linkov <juri@jurta.org>
3268
3269 * progmodes/compile.el (compilation-environment): Make it
3270 a defcustom (bug#8340).
3271
3272 2011-09-08 Martin Rudalics <rudalics@gmx.at>
3273
3274 * window.el (frame-auto-delete): Rename to window-auto-delete.
3275 Make it control auto-deletion of windows and/or frames.
3276 (window-deletable-p): New argument FORCE. Rewrite conditions
3277 for deleting window/frame. (Bug#9419)
3278 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
3279 Rewrite handling of case when window/frame can be deleted.
3280 (delete-windows-on): Call window-deletable-p with new FORCE
3281 argument t. (Bug#9456)
3282
3283 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
3284
3285 * help-mode.el (help-mode): Restore autoload.
3286
3287 2011-09-07 Juri Linkov <juri@jurta.org>
3288
3289 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
3290 `compilation-environment'. Set buffer-local
3291 `compilation-environment' to `thisenv' later after (funcall mode).
3292 (Bug#8340)
3293
3294 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
3295 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
3296 instead of replacing its value. (Bug#8340)
3297
3298 2011-09-07 Juri Linkov <juri@jurta.org>
3299
3300 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
3301 based on text properties put by `grep-filter' instead of matching
3302 escape sequences.
3303 (grep-mode): Set buffer-local `compilation-error-screen-columns'
3304 to the value of `grep-error-screen-columns' (bug#9438).
3305
3306 2011-09-07 Juri Linkov <juri@jurta.org>
3307
3308 * simple.el (next-error-highlight, next-error-highlight-no-select):
3309 Doc fix (bug#9432).
3310
3311 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
3312
3313 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
3314 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
3315
3316 2011-09-07 Leo Liu <sdl.web@gmail.com>
3317
3318 * net/rcirc.el (rcirc-mode): Conditionally initialize
3319 rcirc-input-ring.
3320
3321 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3322
3323 * emacs-lisp/find-func.el (find-function-C-source): Only set
3324 find-function-C-source-directory after checking that we found a source
3325 file there (bug#9440).
3326
3327 2011-09-06 Alan Mackenzie <acm@muc.de>
3328
3329 * isearch.el (isearch-other-meta-char): Wherever a key list is
3330 unread, "unread" the prefix arg, too. This fixes bug #8901.
3331
3332 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
3333
3334 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
3335
3336 2011-09-05 Juri Linkov <juri@jurta.org>
3337
3338 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
3339
3340 2011-09-05 Juri Linkov <juri@jurta.org>
3341
3342 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
3343 keeping point where processing of grep matches begins, and
3344 continue to delete remaining escape sequences from the same point.
3345 (grep-filter): Make leading zero optional in "0?1;31m" because
3346 git-grep emits "\033[1;31m" escape sequences unlike expected
3347 "\033[01;31m" as GNU Grep does (bug#9408).
3348 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
3349
3350 2011-09-05 Juri Linkov <juri@jurta.org>
3351
3352 * subr.el (y-or-n-p): Capitalize "yes".
3353
3354 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
3355
3356 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
3357 `tramp-cache-unload-hook' where appropriate.
3358 (tramp-methods): Rename `tramp-remote-sh' to
3359 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
3360 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
3361
3362 * net/tramp-sh.el (top): Don't require 'shell.
3363 (tramp-methods): Add `tramp-remote-shell' and
3364 `tramp-remote-shell-args' entries.
3365 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
3366 (tramp-sh-handle-shell-command): Remove.
3367 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3368 Use `tramp-remote-shell'.
3369
3370 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
3371
3372 * mail/sendmail.el (sendmail-query-once-function): Delete.
3373 (sendmail-query-once): Save directly to send-mail-function.
3374 Update message-send-mail-function too.
3375
3376 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
3377
3378 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
3379
3380 * progmodes/python.el (python-mode-map): Use correct function to
3381 start python interpreter from menu-bar (as reported by Geert
3382 Kloosterman).
3383 (inferior-python-mode-map): Fix typo.
3384 (python-shell-map): Remove.
3385
3386 2011-09-03 Deniz Dogan <deniz@dogan.se>
3387
3388 * net/rcirc.el (rcirc-print): Simplify code for
3389 rcirc-scroll-show-maximum-output. There is no need to walk
3390 through all windows to find the right one.
3391
3392 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
3393
3394 * help.el (help-return-method): Doc fix.
3395
3396 2011-09-03 Martin Rudalics <rudalics@gmx.at>
3397
3398 * window.el (window-deletable-p): Don't return a non-nil value
3399 when there's a buffer that was shown in the window before.
3400 (Bug#9419)
3401 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
3402 Set window's previous buffers to nil.
3403
3404 2011-09-03 Eli Zaretskii <eliz@gnu.org>
3405
3406 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
3407 newline before and after the tag line, so it doesn't interfere
3408 with determining the paragraph direction of bidirectional text.
3409
3410 2011-09-03 Leo Liu <sdl.web@gmail.com>
3411
3412 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
3413
3414 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
3415
3416 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
3417 (pop-to-buffer): Change interactive spec. Pass second argument
3418 directly to display-buffer.
3419 (display-buffer): Fix interactive spec. Use functionp to
3420 distinguish between a function and a list of functions.
3421
3422 * abbrev.el (edit-abbrevs):
3423 * arc-mode.el (archive-extract):
3424 * autoinsert.el (auto-insert):
3425 * bookmark.el (bookmark-bmenu-list):
3426 * files.el (find-file):
3427 * view.el (view-buffer):
3428 * progmodes/compile.el (compilation-goto-locus):
3429 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
3430
3431 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
3432
3433 * window.el (display-buffer-alist): Doc fix.
3434 (display-buffer): Add docstring. Don't treat
3435 display-buffer-default specially.
3436 (display-buffer-reuse-selected-window)
3437 (display-buffer-same-window, display-buffer-maybe-same-window)
3438 (display-buffer-reuse-window, display-buffer-pop-up-frame)
3439 (display-buffer-pop-up-window)
3440 (display-buffer-reuse-or-pop-window)
3441 (display-buffer-use-some-window): New functions.
3442 (display-buffer-default-action): Use them.
3443 (display-buffer-default): Delete.
3444 (pop-to-buffer-1): Fix choice of actions.
3445
3446 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
3447
3448 * minibuffer.el (completion--insert-strings): Don't get confused by
3449 completion entries that end with an LF char.
3450
3451 2011-09-01 Eli Zaretskii <eliz@gnu.org>
3452
3453 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
3454
3455 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
3456
3457 * window.el (display-buffer): Restore interactive spec.
3458 (display-buffer-same-window, display-buffer-other-window):
3459 New functions.
3460 (pop-to-buffer-1): New function. Use the above.
3461 (pop-to-buffer, pop-to-buffer-same-window): Use it.
3462 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
3463
3464 * view.el (view-buffer-other-window, view-buffer-other-frame):
3465 Just use pop-to-buffer.
3466
3467 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3468
3469 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
3470
3471 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
3472
3473 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
3474
3475 2011-08-31 Richard Stallman <rms@gnu.org>
3476
3477 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
3478 of the separation of rmail-view-buffer from rmail-buffer.
3479 If you say no to "replace original", the decrypt is in the
3480 view buffer. If you say yes, the decrypt goes into the
3481 rmail buffer also.
3482
3483 2011-08-31 Martin Rudalics <rudalics@gmx.at>
3484
3485 * window.el (display-buffer-window): Rewrite doc-string.
3486 (display-buffer-record-window): New function.
3487 (display-buffer-macro-specifiers)
3488 (display-buffer-even-window-sizes, display-buffer-set-height)
3489 (display-buffer-set-width, display-buffer-in-window)
3490 (display-buffer-reuse-window, display-buffer-split-specifiers)
3491 (display-buffer-side-specifiers, display-buffer-split-window-1)
3492 (display-buffer-split-window, display-buffer-split-atom-window)
3493 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
3494 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
3495 (display-buffer-other-window-means-other-frame)
3496 (display-buffer-normalize-special)
3497 (display-buffer-normalize-default)
3498 (display-buffer-normalize-argument)
3499 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
3500 (display-buffer-normalize-specifiers, display-buffer-frame)
3501 (display-buffer-same-window, display-buffer-same-frame)
3502 (display-buffer-other-window)
3503 (display-buffer-same-frame-other-window)
3504 (display-buffer-other-frame, pop-to-buffer-same-window)
3505 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
3506 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
3507 (switch-to-buffer-same-frame)
3508 (switch-to-buffer-other-window-same-frame)
3509 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
3510 (display-buffer-alist-set-1, display-buffer-alist-set-2)
3511 (display-buffer-alist-set): Remove.
3512 (display-buffer-function, special-display-buffer-names)
3513 (special-display-regexps, special-display-function):
3514 In doc-string refer to display-buffer-window and quit-restore
3515 parameter.
3516 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
3517 (special-display-frame-alist, special-display-popup-frame)
3518 (same-window-buffer-names, same-window-regexps, same-window-p)
3519 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
3520 (split-window-preferred-function, split-height-threshold)
3521 (split-width-threshold, window-splittable-p)
3522 (split-window-sensibly, window--try-to-split-window)
3523 (window--frame-usable-p, even-window-heights)
3524 (window--even-window-heights, window--display-buffer-1)
3525 (window--display-buffer-2, display-buffer-other-frame):
3526 Restore old Emacs 23 code, order and doc-strings where applicable.
3527 (display-buffer-default, display-buffer-assq-regexp): New functions.
3528 (display-buffer-alist): Rewrite doc-string.
3529 (display-buffer-default-action)
3530 (display-buffer-overriding-action): New variables.
3531 (display-buffer, switch-to-buffer): Rewrite.
3532 (pop-to-buffer): Restore Emacs 23 behavior but use
3533 window-normalize-buffer-to-display.
3534 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
3535 Restore Emacs 23 behavior but use
3536 window-normalize-buffer-to-switch-to.
3537 (pop-to-buffer-same-window): Rewrite.
3538 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
3539 Rewrite using Emacs 23 options.
3540
3541 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
3542
3543 * net/tramp.el (tramp-root-regexp): Remove.
3544 (tramp-completion-file-name-regexp-unified)
3545 (tramp-completion-file-name-regexp-separate)
3546 (tramp-completion-file-name-regexp-url): Don't use leading volume
3547 letter on win32 systems. (Bug#5303, Bug#9311)
3548 (tramp-drop-volume-letter): Simplify definition.
3549 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
3550
3551 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
3552
3553 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
3554 (bug#9356).
3555
3556 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
3557
3558 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
3559
3560 2011-08-29 Juri Linkov <juri@jurta.org>
3561
3562 * isearch.el (isearch-done): Don't display message "Mark saved"
3563 when arg `edit' is non-nil to prevent its flicker in the echo area.
3564
3565 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
3566
3567 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
3568 obsolete packages for deletion.
3569
3570 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
3571
3572 * help-mode.el (help-mode-map): Add special-mode-map to parent.
3573 (help-mode): Derive help-mode from special-mode. Don't invoke
3574 view-mode from help-mode.
3575 (help-xref-override-view-map): Remove.
3576 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
3577 view-mode is not used anymore.
3578
3579 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
3580
3581 * server.el (server-port): Doc fix.
3582
3583 * cus-theme.el (custom-theme-choose-mode): Inherit from
3584 special-mode (Bug#9124).
3585 (custom-theme-choose-mode-map): Add special-mode to parent.
3586
3587 2011-08-28 Alan Mackenzie <acm@muc.de>
3588
3589 * progmodes/cc-fonts.el
3590 (c-make-font-lock-BO-decl-search-function): New function.
3591 (c-basic-matchers-after - "Fontify the clauses after various
3592 keywords"): Extract the three keyword lists for the 3 erroneous
3593 constructs from the list of four, and use the new function above
3594 in place of an old one.
3595
3596 2011-08-28 Deniz Dogan <deniz@dogan.se>
3597
3598 * net/rcirc.el (rcirc-insert-prev-input)
3599 (rcirc-insert-next-input): Remove unused argument.
3600
3601 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3602
3603 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
3604
3605 2011-08-27 Alan Mackenzie <acm@muc.de>
3606
3607 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
3608 handle function pointer parameters properly.
3609
3610 2011-08-27 Martin Rudalics <rudalics@gmx.at>
3611
3612 * window.el (display-buffer-reuse-window): Fix case where
3613 selected window was reused with non-nil OTHER-WINDOW argument.
3614 (Bug#9381)
3615
3616 2011-08-27 Deniz Dogan <deniz@dogan.se>
3617
3618 * net/rcirc.el (rcirc-check-auth-status): Adding support for
3619 oftc's NickServ messages.
3620
3621 2011-08-27 Glenn Morris <rgm@gnu.org>
3622
3623 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
3624
3625 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
3626
3627 * emacs-lisp/package.el (package-install): Call package-initialize
3628 if called interactively.
3629
3630 2011-08-26 Leo Liu <sdl.web@gmail.com>
3631
3632 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
3633
3634 2011-08-25 Juri Linkov <juri@jurta.org>
3635
3636 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
3637 `search-whitespace-regexp' (bug#9364).
3638
3639 2011-08-25 Juri Linkov <juri@jurta.org>
3640
3641 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
3642 `regexp-search-ring' to their global values to protect from
3643 updating by `read-from-minibuffer' (bug#9185).
3644
3645 2011-08-25 Juri Linkov <juri@jurta.org>
3646
3647 * textmodes/ispell.el (ispell-command-loop): Add newline
3648 at the end of the "Use option `i'..." line.
3649
3650 2011-08-25 Juri Linkov <juri@jurta.org>
3651
3652 * battery.el (display-battery-mode): If `battery-status-function'
3653 or `battery-mode-line-format' is nil, display the message and set
3654 `display-battery-mode' to nil (bug#9363).
3655
3656 2011-08-25 Eli Zaretskii <eliz@gnu.org>
3657
3658 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
3659 bidi-string-mark-left-to-right; they are unnecessary now.
3660
3661 2011-08-25 Deniz Dogan <deniz@dogan.se>
3662
3663 * net/quickurl.el: Documentation typo fixes.
3664
3665 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
3666
3667 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
3668
3669 2011-08-25 Glenn Morris <rgm@gnu.org>
3670
3671 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
3672
3673 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
3674 (smtpmail-via-smtp): Handle nil response from smtp.
3675
3676 2011-08-24 Juri Linkov <juri@jurta.org>
3677
3678 * proced.el (proced-marked): Inherit from `error' instead of
3679 `font-lock-warning-face'.
3680
3681 * ibuffer.el (ibuffer-marked-face): Change default face from
3682 `font-lock-warning-face' to `warning'.
3683 (ibuffer-deletion-face): Change default face from
3684 `font-lock-type-face' to `error'.
3685
3686 * battery.el (battery-update): Use the face `error' instead of
3687 `font-lock-warning-face' (bug#6117).
3688
3689 2011-08-24 Juri Linkov <juri@jurta.org>
3690
3691 * faces.el (success): Change face color from "Green3" to
3692 "ForestGreen" on light background (bug#9353).
3693
3694 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
3695
3696 * window.el (quit-window): Rename from quit-restore-window.
3697 Use same arglist as old quit-window.
3698 (frame-auto-delete): Doc fix.
3699
3700 * view.el (view-mode-exit): Use quit-window.
3701
3702 2011-08-24 Juri Linkov <juri@jurta.org>
3703
3704 * isearch.el (isearch-ring-adjust1): Start visiting previous
3705 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
3706 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
3707 for empty search string (when the last search string is reused
3708 automatically) to adjust the isearch ring to the last element and
3709 prepare the correct index for further M-p commands (bug#9185).
3710
3711 2011-08-24 Kenichi Handa <handa@m17n.org>
3712
3713 * international/ucs-normalize.el: If decomposition property of
3714 CHAR is the default one (i.e. a list of CHAR itself), treat it as
3715 nil.
3716 (nfd, nfkd): Likewise.
3717
3718 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
3719
3720 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
3721 from process filters aren't reliably transmitted to the surrounding
3722 accept-process-output.
3723 (mpc-proc-check): New function.
3724 (mpc-proc-sync): Use it (bug#8293)
3725
3726 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
3727
3728 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
3729 Add compatibility functions (bug#9313).
3730
3731 2011-08-23 Eli Zaretskii <eliz@gnu.org>
3732
3733 * cus-start.el (all): Add entry for bidi-paragraph-direction.
3734
3735 * international/uni-bidi.el: Regenerated.
3736
3737 2011-08-23 Kenichi Handa <handa@m17n.org>
3738
3739 * international/charprop.el:
3740 * international/uni-bidi.el:
3741 * international/uni-category.el:
3742 * international/uni-combining.el:
3743 * international/uni-comment.el:
3744 * international/uni-decimal.el:
3745 * international/uni-decomposition.el:
3746 * international/uni-digit.el:
3747 * international/uni-lowercase.el:
3748 * international/uni-mirrored.el:
3749 * international/uni-name.el:
3750 * international/uni-numeric.el:
3751 * international/uni-old-name.el:
3752 * international/uni-titlecase.el:
3753 * international/uni-uppercase.el: Regenerate.
3754
3755 2011-08-23 Martin Rudalics <rudalics@gmx.at>
3756
3757 * help.el (help-window-setup): Fix message displayed when other
3758 window is reused. (Bug#9341)
3759
3760 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
3761
3762 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
3763 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
3764
3765 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
3766 Mark obsolete.
3767 * shell.el (shell-parse-pcomplete-arguments): New function.
3768 (shell-completion-vars): Use it instead (bug#9160).
3769
3770 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
3771
3772 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
3773 strings and comments (bug#9333).
3774
3775 * emacs-lisp/debug.el (debug-arglist): New function.
3776 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
3777 (debug-on-entry-1): Handle interpreted closures (bug#9120).
3778
3779 2011-08-22 Juri Linkov <juri@jurta.org>
3780
3781 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3782 Revert regexp that highlights output switches to its old
3783 pre-2010-10-28 value and remove one `?' from it (bug#9319).
3784
3785 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
3786 to check for empty output (bug#9226).
3787
3788 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
3789
3790 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
3791 symbol-constituent as the default, as that stops font-lock from
3792 working properly (Bug#8843).
3793
3794 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3795
3796 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
3797 `coding-system-for-*' around the process open call to avoid
3798 auth-source side effects.
3799 (smtpmail-try-auth-methods): Expand the secret password.
3800 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
3801 probe hangs.
3802
3803 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
3804
3805 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
3806
3807 * emacs-lisp/find-func.el (find-function-noselect): New arg
3808 lisp-only.
3809
3810 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
3811 signal an error for built-in functions (Bug#6664).
3812
3813 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3814
3815 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
3816 (smtpmail-try-auth-methods): Use it.
3817
3818 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
3819
3820 * font-lock.el (font-lock-fontify-region)
3821 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
3822 (font-lock-default-unfontify-buffer)
3823 (font-lock-default-fontify-region)
3824 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
3825
3826 * progmodes/compile.el (compilation-error-properties):
3827 Fix confusion between file struct and message struct (Bug#9319).
3828 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
3829 `ant' regexp.
3830
3831 * net/browse-url.el (browse-url-firefox): Don't call
3832 browse-url-firefox-sentinel unless using -remote (Bug#9328).
3833
3834 2011-08-20 Glenn Morris <rgm@gnu.org>
3835
3836 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
3837
3838 * tutorial.el (tutorial--default-keys): Update some default bindings.
3839
3840 * files.el (hack-local-variables): Fully ignore case for "mode:".
3841
3842 2011-08-20 Alan Mackenzie <acm@muc.de>
3843
3844 Resolve invalid use of a regexp in regexp-opt.
3845
3846 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
3847 detection for a java annotation.
3848
3849 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
3850 detection for a java annotation.
3851
3852 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
3853 handling for java.
3854 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
3855
3856 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
3857
3858 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
3859 (Bug#9274).
3860
3861 2011-08-20 Alan Mackenzie <acm@muc.de>
3862
3863 Fontify CPP expressions correctly when starting in the middle of
3864 such a construct. Mainly for when jit-lock etc. starts a chunk
3865 here.
3866
3867 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
3868 variable.
3869 (c-make-font-lock-search-form): New function, extracted from
3870 c-make-font-lock-search-function.
3871 (c-make-font-lock-search-function): Use the above function.
3872 (c-make-font-lock-context-search-function): New function.
3873 (c-cpp-matchers): Enhance the preprocessor expression case with
3874 the above function
3875 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
3876 which takes an expression.
3877
3878 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
3879
3880 2011-08-20 Martin Rudalics <rudalics@gmx.at>
3881
3882 * window.el (display-buffer-reuse-window)
3883 (display-buffer-pop-up-window): Don't reuse or split a side
3884 window.
3885
3886 2011-08-19 Glenn Morris <rgm@gnu.org>
3887
3888 * files.el (hack-local-variables-prop-line, hack-local-variables):
3889 Downcase "Mode:". (Bug#9331)
3890
3891 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
3892
3893 * international/characters.el: Add L and R categories.
3894
3895 * subr.el (bidi-string-mark-left-to-right): Rename from
3896 string-mark-left-to-right. Use category search.
3897
3898 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
3899
3900 2011-08-18 Juri Linkov <juri@jurta.org>
3901
3902 * faces.el (error, warning, success): New faces with definitions
3903 copied from old default values of `font-lock-warning-face',
3904 `compilation-warning', `compilation-info' (bug#6117).
3905
3906 * font-lock.el (font-lock-warning-face): Inherit from `error'.
3907
3908 * progmodes/compile.el (compilation-error): Inherit from `error'.
3909 (compilation-warning): Inherit from `warning'.
3910 (compilation-info): Inherit from `success'.
3911
3912 * dired.el (dired-marked): Inherit from `warning'.
3913 (dired-flagged): Inherit from `error'.
3914
3915 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3916
3917 * mail/smtpmail.el (auth-source): Require to avoid problems with
3918 binding variables (bug#9298). Also clean up some unused
3919 autoloads.
3920
3921 * net/network-stream.el (network-stream-open-starttls):
3922 Support using starttls.el without using gnutls-cli.
3923
3924 2011-08-17 Juri Linkov <juri@jurta.org>
3925
3926 * progmodes/grep.el (rgrep): Handle the case when
3927 `grep-find-command' is a cons cell (bug#9278).
3928
3929 2011-08-17 Martin Rudalics <rudalics@gmx.at>
3930
3931 * window.el (display-buffer-pop-up-frame): Run frame creation
3932 function with BUFFER current (as special-display-popup-frame
3933 does). Reported by Drew Adams.
3934
3935 2011-08-17 Daiki Ueno <ueno@unixuser.org>
3936
3937 * epa-mail.el: Simplify GnuPG group expansion using
3938 epg-expand-group.
3939 (epa-mail-group-alist, epa-mail-group-modtime)
3940 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
3941 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
3942 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
3943 Remove.
3944
3945 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
3946
3947 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
3948
3949 2011-08-16 Alan Mackenzie <acm@muc.de>
3950
3951 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
3952 Correct, to avoid the inside of macros.
3953
3954 2011-08-16 Richard Stallman <rms@gnu.org>
3955
3956 * epa-mail.el: Handle GnuPG group definitions.
3957 (epa-mail-group-alist, epa-mail-group-modtime)
3958 (epa-mail-gnupg-conf-file): New variables.
3959 (epa-mail-parse-groups, epa-mail-sync-groups)
3960 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
3961 (epa-mail-expand-recipients): New functions.
3962 (epa-mail-encrypt): Call epa-mail-expand-recipients.
3963
3964 * mail/rmail.el (rmail-epa-decrypt): New command.
3965
3966 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
3967 Don't bind buffer-read-only, just inhibit-read-only.
3968 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
3969 (epa-decrypt-armor-in-region): Make error message clearer.
3970
3971 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3972
3973 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
3974 and "a2b" to "ab" for `prefix'.
3975
3976 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
3977
3978 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
3979 filter groups.
3980 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
3981 Fourquet (Bug#8804).
3982
3983 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
3984
3985 * startup.el (argi): Declare as global variable (bug#9275).
3986
3987 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
3988
3989 * subr.el (string-mark-left-to-right): Search the entire string
3990 for RTL script, not just the terminating character. Doc fix.
3991
3992 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3993
3994 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
3995 New function.
3996 (js--regexp-literal, js-syntax-propertize-function): Remove.
3997 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
3998 (js-mode-map): Don't rebind electric keys.
3999 (js-insert-and-indent): Remove.
4000 (js-mode): Setup electric-layout and electric-indent instead.
4001
4002 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
4003
4004 2011-08-12 Daiki Ueno <ueno@unixuser.org>
4005
4006 * epa.el (epa-progress-callback-function): Fix the logic of
4007 displaying progress.
4008 * epa-file.el (epa-file-insert-file-contents): Make progress
4009 display more user-friendly.
4010 (epa-file-write-region): Ditto.
4011
4012 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
4013
4014 * subr.el (string-mark-left-to-right): New function.
4015
4016 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
4017 Use string-mark-left-to-right.
4018 (list-buffers-noselect): Caller changed.
4019
4020 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
4021 Use string-mark-left-to-right.
4022 (tabulated-list-print): Recenter after moving point.
4023
4024 2011-08-10 Juri Linkov <juri@jurta.org>
4025
4026 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
4027 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
4028 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
4029
4030 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
4031
4032 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
4033 (Bug#7554).
4034
4035 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
4036
4037 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
4038 character. (Bug#6594)
4039
4040 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
4041
4042 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
4043 (image-dired--with-db-file): New macro.
4044 (image-dired-write-tags, image-dired-remove-tag)
4045 (image-dired-create-gallery-lists, image-dired-write-comments)
4046 (image-dired-get-comment, image-dired-mark-tagged-files)
4047 (image-dired-list-tags, image-dired-gallery-generate): Use it.
4048 (image-dired-gallery-generate): Use insert-file-contents.
4049
4050 * time.el (display-time-world-list, display-time-world-display):
4051 * time-stamp.el (time-stamp-string):
4052 * vc/add-log.el (add-change-log-entry): Use setenv instead of
4053 set-time-zone-rule (Bug#7337).
4054
4055 2011-08-08 Daiki Ueno <ueno@unixuser.org>
4056
4057 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
4058 (epg-error-to-string, epg-errors-to-string): New function.
4059 (epg-wait-for-completion): Reverse errors list.
4060 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
4061 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
4062 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
4063 (epg-sign-keys, epg-generate-key-from-file)
4064 (epg-generate-key-from-string): Format errors by using
4065 epg-errors-to-string (bug#9255).
4066 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
4067
4068 2011-08-07 Juri Linkov <juri@jurta.org>
4069
4070 * faces.el (list-faces-display): Remove extra angle bracket
4071 from `help-mode-map'.
4072
4073 * info.el (Info-history-toc-nodes): Doc fix.
4074
4075 * longlines.el (longlines-mode): Doc fix.
4076
4077 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
4078
4079 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
4080 of statements and in a few more cases (bug#9183).
4081
4082 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
4083 New functions.
4084 (cl-transform-lambda): Use them (bug#9239).
4085
4086 2011-08-05 Martin Rudalics <rudalics@gmx.at>
4087
4088 * window.el (display-buffer-same-window)
4089 (display-buffer-same-frame, display-buffer-other-window)
4090 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
4091 (pop-to-buffer-other-window)
4092 (pop-to-buffer-same-frame-other-window)
4093 (pop-to-buffer-other-frame): Make them defuns.
4094 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
4095
4096 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
4097
4098 * subr.el (make-composed-keymap): Move from C. Change calling
4099 convention, and improve docstring to bring attention to a subtle point.
4100 * minibuffer.el (completing-read-default): Adjust accordingly.
4101
4102 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
4103
4104 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
4105 (tramp-open-shell): Use `tramp-shell-quote-argument'.
4106
4107 * net/trampver.el: Update release number.
4108
4109 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
4110
4111 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
4112 "in" (bug#9190).
4113
4114 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4115
4116 * mail/sendmail.el (sendmail-query-once): Restore the current
4117 buffer after querying (bug#9074).
4118
4119 * dired.el (dired-flagged): Use different faces for marked and
4120 flagged files (bug#6117).
4121
4122 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
4123 (bug#4433).
4124
4125 * ido.el (ido-mode): Switch off the message if called
4126 non-interactively.
4127
4128 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
4129 before 587, since it appears that that's more likely to work for
4130 more people.
4131
4132 * cus-edit.el (custom-file): When running under emacs -q, always
4133 refuse to save the customizations, even if the .emacs file doesn't
4134 exist.
4135
4136 * info.el: Remove the `Info-beginning-of-buffer' function
4137 (bug#8325).
4138
4139 * net/network-stream.el (network-stream-open-starttls):
4140 Use `starttls-available-p' to see whether starttls.el can be used.
4141
4142 2011-08-01 Martin Rudalics <rudalics@gmx.at>
4143
4144 * window.el (display-buffer-in-window): Don't set dedicated status
4145 of window here (Bug#9215).
4146 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
4147 (display-buffer-pop-up-side-window)
4148 (display-buffer-in-side-window): Set dedicated status of window here.
4149
4150 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
4151
4152 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
4153 before binding generated-autoload-file.
4154
4155 2011-08-01 Deniz Dogan <deniz@dogan.se>
4156
4157 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
4158
4159 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
4160
4161 Sync with Tramp 2.2.2.
4162
4163 * net/trampver.el: Update release number.
4164
4165 2011-07-30 Juri Linkov <juri@jurta.org>
4166
4167 * dired-aux.el (dired-touch-initial): Remove function.
4168 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
4169 current time, and `default' to the last modification time of the
4170 current marked file (bug#6887).
4171
4172 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
4173
4174 * simple.el (goto-line): Use string-to-number to provide a
4175 numeric argument to read-number (bug#9163).
4176
4177 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
4178
4179 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
4180 connection process, it could be nil.
4181
4182 2011-07-27 Leo Liu <sdl.web@gmail.com>
4183
4184 Simplify url handling in rcirc-mode.
4185
4186 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
4187 (rcirc-browse-url-at-mouse): Remove.
4188 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
4189
4190 2011-07-26 Alan Mackenzie <acm@muc.de>
4191
4192 Fontify bitfield declarations properly.
4193
4194 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
4195 (c-symbol-chars): Now exported as a lang variable.
4196 (c-not-primitive-type-keywords): New lang variable.
4197
4198 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
4199 QT keyword "more" to prevent "more slots: ...." being spuriously
4200 parsed as a bitfield declaration.
4201
4202 * progmodes/cc-engine.el (c-beginning-of-statement-1):
4203 Refactor and enhance to handle bitfield declarations.
4204 (c-punctuation-in): New function.
4205 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
4206 declarations properly.
4207
4208 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
4209
4210 * calendar/icalendar.el (icalendar--all-events): Take care of
4211 multiple vcalendars in a single file.
4212 (icalendar--convert-float-to-ical): Checkdoc fixes.
4213
4214 2011-07-25 Deniz Dogan <deniz@dogan.se>
4215
4216 * image.el (insert-image): Clarifying docstring.
4217
4218 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
4219
4220 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
4221 `tramp-send-command-and-check' if there is no error.
4222 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
4223
4224 2011-07-22 Alan Mackenzie <acm@muc.de>
4225
4226 Prevent cc-langs.elc being loaded at run time.
4227
4228 * progmodes/cc-mode.el: Remove two autoload forms which loaded
4229 cc-langs.
4230
4231 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
4232 "(require 'cc-langs)". Quote a form so it will evaluate at
4233 (cc-mode's) compilation time.
4234
4235 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
4236
4237 * net/tramp.el (tramp-file-name-handler): Avoid recursive
4238 loading. (Bug#9114)
4239
4240 2011-07-21 Martin Rudalics <rudalics@gmx.at>
4241
4242 * window.el (display-buffer-pop-up-window)
4243 (display-buffer-pop-up-side-window)
4244 (display-buffer-in-side-window): Call display-buffer-set-height
4245 and display-buffer-set-width after setting the new window's
4246 buffer so `fit-window-to-buffer' and friends work on the right buffer.
4247
4248 2011-07-20 Sam Steingold <sds@gnu.org>
4249
4250 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
4251 (etags-tags-included-tables): Call `convert-standard-filename' on
4252 the file names contained in TAGS so that windows Emacs can handle
4253 TAGS files created by cygwin ctags.
4254
4255 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
4256
4257 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
4258 which apparently didn't work.
4259
4260 2011-07-19 Roland Winkler <winkler@gnu.org>
4261
4262 * proced.el (proced-send-signal): For *Marked Processes* buffer
4263 put point at beginning of buffer.
4264
4265 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
4266
4267 * proced.el (proced-format): Make header lines align with the text
4268 (bug#1779).
4269
4270 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4271
4272 * view.el (view-buffer): Allow running in `special' modes if we're
4273 visiting a file (bug#8615).
4274
4275 2011-07-19 Martin Rudalics <rudalics@gmx.at>
4276
4277 * window.el (display-buffer-alist-of-strings-p)
4278 (display-buffer-alist-set-1, display-buffer-alist-set-2):
4279 New functions.
4280 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
4281 more accurately.
4282
4283 2011-07-18 Alan Mackenzie <acm@muc.de>
4284
4285 Fontify declarators properly when, e.g., a jit-lock chunk begins
4286 inside a declaration.
4287
4288 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
4289
4290 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
4291 New function.
4292 (c-complex-decl-matchers): Insert reference to
4293 c-font-lock-enclosing-decls.
4294
4295 * progmodes/cc-engine.el (c-backward-single-comment):
4296 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
4297 to nil around calls to (forward-comment -1).
4298
4299 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
4300
4301 * image.el (put-image): Doc typo fix.
4302
4303 * progmodes/etags.el (tags-search): Doc typo fix.
4304
4305 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
4306 password if we get errors 550 to 554.
4307
4308 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
4309
4310 * net/gnutls.el (gnutls-log-level): Remove.
4311
4312 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
4313 indentation character (bug#6380).
4314
4315 * files.el (buffer-offer-save): Made permanently local (bug#6241).
4316
4317 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
4318 to clarify what the problem is (bug#4291).
4319
4320 * simple.el (current-kill): Clarify what
4321 `interprogram-paste-function' does (bug#7500).
4322 (auto-fill-mode): Document `auto-fill-function' in relation to
4323 `auto-fill-mode' (bug#2470).
4324
4325 2011-07-16 Lawrence Mitchell <wence@gmx.li>
4326
4327 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
4328 method if slot is read-only (bug#9035).
4329
4330 2011-07-16 Martin Rudalics <rudalics@gmx.at>
4331
4332 * frame.el (select-frame-set-input-focus): New argument NORECORD.
4333 * window.el (pop-to-buffer): Select window used even if it was
4334 selected before, see discussion of (Bug#8615), (Bug#6954).
4335 Pass argument NORECORD on to select-frame-set-input-focus.
4336
4337 2011-07-15 Glenn Morris <rgm@gnu.org>
4338
4339 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
4340 Respect help-form.
4341
4342 2011-07-09 Lawrence Mitchell <wence@gmx.li>
4343
4344 * net/gnutls.el (gnutls-min-prime-bits): New variable.
4345 (gnutls-negotiate): Use it.
4346
4347 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
4348
4349 * net/gnutls.el (gnutls-negotiate):
4350 Upcase `gnutls-algorithm-priority'.
4351
4352 2011-07-15 Glenn Morris <rgm@gnu.org>
4353
4354 * jka-compr.el (jka-compr-verbose): Move from here...
4355 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
4356 Add missing :version tag.
4357 * info.el: No need to require jka-compr when compiling.
4358
4359 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
4360
4361 * net/gnutls.el (gnutls-algorithm-priority): New variable.
4362 (gnutls-negotiate): Use it.
4363
4364 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
4365
4366 * info.el (Info-beginning-of-buffer): New command.
4367 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
4368 announcing `b' as the key (bug#8325).
4369 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
4370
4371 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
4372
4373 * international/mule-cmds.el
4374 (describe-specified-language-support): Make the error message
4375 clearer (bug#8905).
4376
4377 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
4378
4379 * isearch.el (isearch-barrier): Add a doc string, since it's
4380 mentioned in a function doc string (bug#8678).
4381
4382 2011-07-15 Martin Rudalics <rudalics@gmx.at>
4383
4384 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
4385 buffer argument (Bug#9083) and self-identifying label argument.
4386
4387 2011-07-15 Glenn Morris <rgm@gnu.org>
4388
4389 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
4390
4391 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
4392
4393 * man.el (Man-fontify-manpage): Fix message when formatting the
4394 man page (bug#7929).
4395
4396 2011-07-14 Eli Zaretskii <eliz@gnu.org>
4397
4398 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
4399 argument LRM; if non-nil, append an invisible LRM character to the
4400 buffer name.
4401 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
4402 last argument non-nil, when formatting buffer names.
4403 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
4404 paragraph direction.
4405
4406 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
4407
4408 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
4409 the man page name (bug#7929).
4410
4411 * image.el (put-image): Mention the `put-image' overlay property
4412 (bug#7834).
4413
4414 * scroll-bar.el (set-scroll-bar-mode): Mention that
4415 `scroll-bar-mode' lists the values (bug#7772).
4416
4417 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
4418 command (bug#7729).
4419
4420 * rect.el (apply-on-rectangle): Return the point after the last
4421 operation.
4422 (string-rectangle): Go to the point after the last operation
4423 (bug#7522).
4424
4425 * printing.el (pr-toggle-region): Clarify the documentation
4426 slightly (bug#7493).
4427
4428 * time.el (display-time-update):
4429 Allow `display-time-mail-function' to return nil (bug#7158).
4430 Fix suggested by Detlev Zundel.
4431
4432 * vc/diff.el (diff): Clarify the order the file names are read
4433 (bug#7111).
4434
4435 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
4436 the doc string (bug#7015).
4437
4438 * font-lock.el (font-lock-maximum-decoration): Mention what
4439 numeric levels mean (bug#6935).
4440
4441 * startup.el (initial-buffer-choice): Don't mention the `none'
4442 selection, which is against policy.
4443
4444 2011-07-14 Martin Rudalics <rudalics@gmx.at>
4445
4446 * window.el (display-buffer-normalize-special):
4447 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
4448
4449 2011-07-14 Eli Zaretskii <eliz@gnu.org>
4450
4451 * subr.el (version<, version<=, version=): Mention "-CVS" and
4452 "-12345" alpha version numbers.
4453
4454 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
4455
4456 * bindings.el: Add advertised binding for set-mark-command
4457 (Bug#5772).
4458
4459 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
4460
4461 * bindings.el (mode-line-other-buffer):
4462 * bookmark.el (bookmark-bmenu-2-window):
4463 * bs.el (bs-cycle-next, bs-cycle-previous):
4464 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
4465 switch-to-buffer.
4466
4467 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
4468 Delete.
4469
4470 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
4471
4472 * follow.el (follow-debug-message, follow-redisplay):
4473 * jka-cmpr-hook.el (with-auto-compression-mode):
4474 Fix typos in docstrings.
4475
4476 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4477
4478 * subr.el (with-silent-modifications): Clarify somewhat what the
4479 macro inhibits (bug#6525).
4480
4481 * simple.el (eval-expression): Note what it does if called
4482 interactively (bug#6495).
4483
4484 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
4485
4486 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
4487 Use pop-to-buffer buffer-or-name if it is nil.
4488
4489 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4490 Remove switch-to-buffer.
4491
4492 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4493
4494 * files.el (make-directory): Clarify that an error will be raised
4495 if there's an error (bug#6397).
4496
4497 * startup.el (initial-buffer-choice): Add `none' as a choice
4498 (bug#6234).
4499
4500 * subr.el (add-hook): Clarify section about buffer-local hooks
4501 (bug#6218).
4502
4503 * dired.el (dired-flagged): Clarify doc string (bug#6117).
4504
4505 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
4506
4507 * tabify.el (untabify): Preserve the current column so that point
4508 doesn't move (bug#6032).
4509
4510 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4511
4512 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
4513 Rewrite to avoid awkward possessive "s" (bug#5986).
4514
4515 2011-07-13 Glenn Morris <rgm@gnu.org>
4516
4517 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
4518 (dired-insert-directory): Give a message the first time
4519 if ls is found not to support --dired.
4520
4521 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4522
4523 * simple.el (toggle-truncate-lines): Clarify what is toggled
4524 (bug#5580). Text by Drew Adams.
4525
4526 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
4527
4528 * simple.el (blink-matching-open): Make the error message from the
4529 last change less verbose.
4530
4531 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
4532
4533 * font-lock.el (font-lock-comment-face): Use the high contrast
4534 "yellow" color for font-lock-comment-face on low color terminals
4535 using a dark background color (bug#4221).
4536
4537 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4538
4539 * dired.el (dired-insert-set-properties): Make the doc string
4540 reflect what it does now (bug#5325).
4541
4542 * simple.el (blink-matching-open): Say that we were unable to find
4543 the match within the limit, if we're limited (bug#5122).
4544
4545 * international/mule-cmds.el (prefer-coding-system): Add an
4546 example (bug#4869).
4547
4548 * progmodes/etags.el (tags-search): Document `file-list-form'
4549 (bug#4731).
4550
4551 2011-07-13 Lawrence Mitchell <wence@gmx.li>
4552
4553 * net/browse-url.el (browse-url-default-browser)
4554 (browse-url-browser-function): Make the default browser choice a
4555 bit more logical (bug#4300). Also clean up the doc string.
4556
4557 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
4558
4559 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
4560 binary endings (bug#4440).
4561
4562 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4563
4564 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
4565 which can be pretty annoying (bug#8971).
4566
4567 * jka-compr.el (jka-compr-verbose): New variable, and use
4568 throughout (bug#8971).
4569
4570 * info.el (Info-find-file): Fall back on the installation
4571 directory if we can't find the info node anywhere else.
4572
4573 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
4574
4575 * vc/vc.el (vc-revert-file):
4576 Don't set file time-stamp in the past. (Bug#5181)
4577
4578 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4579
4580 * files.el (after-find-file): Give a better error message when
4581 trying to find a symlink that points to a file that doesn't exist
4582 (bug#4398).
4583
4584 * progmodes/cc-vars.el: Remove (probably) misleading comment
4585 (bug#4396).
4586
4587 2011-07-12 Johan Bockgård <bojohan@gnu.org>
4588
4589 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
4590
4591 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
4592
4593 * mouse-sel.el: Hack restoring functionality, while keeping
4594 compatibility with 2010-07-03 changes to mouse selection.
4595 (mouse-sel-primary-overlay): New var.
4596 (mouse-sel-selection-alist): Use it.
4597 (mouse-sel-mode): Doc fix; remove points that are default features
4598 of mouse.el.
4599
4600 2011-07-12 Johan Bockgård <bojohan@gnu.org>
4601
4602 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4603 Fix previous fix (bug#2490).
4604
4605 2011-07-12 Roland Winkler <winkler@gnu.org>
4606
4607 * textmodes/bibtex.el (bibtex-initialize):
4608 Use pop-to-buffer-same-window.
4609 (bibtex-search-entries): Fix interactive call.
4610
4611 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4612
4613 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4614 Fontise bytecomp Error lines more correctly (bug#2490).
4615 Fix suggested by Johan Bockgård.
4616
4617 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
4618
4619 * dired-x.el (dired-guess-default): Use `delete-dups'.
4620
4621 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
4622
4623 * dired.el (dired-mark-prompt):
4624 * dired-aux.el (dired-read-shell-command): Doc fix.
4625
4626 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4627
4628 * mail/sendmail.el (sendmail-query-once):
4629 Use `customize-save-variable' unconditionally, now that it works under
4630 emacs -Q.
4631
4632 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
4633
4634 * cus-edit.el (custom-file): Take an optional no-error variable.
4635 (customize-save-variable): Set the variable, and give a warning if
4636 running under "emacs -q".
4637
4638 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
4639
4640 * loadhist.el (unload-feature-special-hooks):
4641 Add `auto-coding-functions', `fill-nobreak-predicate' and
4642 `find-directory-functions' (bug#5327).
4643
4644 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4645
4646 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
4647
4648 * cus-edit.el (custom-guess-name-alist): -alist variables should
4649 use the `alist' type (bug#3120). Suggested by Drew Adams.
4650
4651 * printing.el: Add documentation to all the `pr-toggle-' commands.
4652
4653 2011-07-11 Leo Liu <sdl.web@gmail.com>
4654
4655 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
4656 backends where it makes sense (bug#2623).
4657
4658 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4659
4660 * dired-x.el (dired-guess-default): Remove duplicate shell command
4661 entries (bug#2028).
4662 (dired-guess-default): Fix grammar in doc string (bug#2028).
4663 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
4664
4665 * subr.el (remove-duplicates): New conveniency function.
4666
4667 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4668
4669 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
4670 (bug#1526).
4671
4672 2011-07-10 Martin Rudalics <rudalics@gmx.at>
4673
4674 * window.el (display-buffer-normalize-default): Don't invert
4675 meaning of even-window-heights. Reported by Eli Zaretskii
4676 <eliz@gnu.org>.
4677
4678 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
4679
4680 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
4681
4682 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
4683
4684 * window.el (display-buffer): Fix arguments to
4685 display-buffer-reuse-window in last change.
4686
4687 * faces.el (link): Use a less saturated blue on light backgrounds.
4688
4689 * startup.el (fancy-startup-text, fancy-about-text)
4690 (fancy-startup-tail): Use font-lock faces, for background safety.
4691
4692 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
4693
4694 * emulation/viper-cmd.el (viper-change-state-to-vi):
4695 Limit triggering of abbrev expansion (Bug#9038).
4696
4697 2011-07-09 Martin Rudalics <rudalics@gmx.at>
4698
4699 * window.el (display-buffer-default-specifiers): Remove.
4700 (display-buffer-macro-specifiers): Remove default specifiers.
4701 (display-buffer-alist): Default to nil.
4702 (display-buffer-reuse-window): New optional argument other-window.
4703 (display-buffer-pop-up-window): Allow splitting internal
4704 windows. Check whether a live window was created.
4705 (display-buffer-other-window-means-other-frame)
4706 (display-buffer-normalize-arguments): Rename to
4707 display-buffer-normalize-argument and rewrite. Set the
4708 other-window specifier.
4709 (display-buffer-normalize-special): New function.
4710 (display-buffer-normalize-options): Rename to
4711 display-buffer-normalize-default and rewrite.
4712 (display-buffer-normalize-options-inhibit): Remove.
4713 (display-buffer-normalize-specifiers): Rewrite.
4714 (display-buffer): Process other-window specifier and call
4715 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
4716 more faithfully.
4717 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4718 (display-buffer-alist-set): Don't handle 'unset default values.
4719 (display-buffer-in-window, display-buffer-alist-set):
4720 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4721 <tassilo@member.fsf.org>.
4722
4723 2011-07-09 Leo Liu <sdl.web@gmail.com>
4724
4725 * register.el (insert-register): Restore accidental change on
4726 2011-06-26. (Bug#9028)
4727
4728 2011-07-09 Glenn Morris <rgm@gnu.org>
4729
4730 * subr.el (remq): Handle the empty list. (Bug#9024)
4731
4732 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
4733
4734 * mail/sendmail.el (send-mail-function): No longer delay custom
4735 initialization.
4736 * custom.el (custom-initialize-delay): Doc fix.
4737
4738 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4739
4740 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
4741
4742 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
4743
4744 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
4745 human-friendly prompt.
4746
4747 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4748
4749 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
4750 provided by a particular plugin.
4751
4752 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4753
4754 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
4755 save customizations (with "emacs -Q"), just set the variable
4756 instead of erroring out.
4757
4758 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
4759
4760 2011-07-08 Juri Linkov <juri@jurta.org>
4761
4762 * arc-mode.el (archive-zip-expunge, archive-zip-update)
4763 (archive-zip-update-case): Use 7z if found by `executable-find'.
4764 The order of searching the available programs is the same as in
4765 `archive-zip-extract' (bug#8968).
4766
4767 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
4768
4769 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
4770 (menu-bar-options-menu): Tweak descriptions.
4771
4772 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4773
4774 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
4775 menu items into verb phrases (bug#1421). Also refill to fit under
4776 80 columns.
4777
4778 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
4779
4780 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
4781 (Info-read-node-name): Doc fix (Bug#1084).
4782
4783 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
4784 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
4785 (end-of-sexp, beginning-of-sexp)
4786 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
4787 (forward-symbol, forward-same-syntax, word-at-point)
4788 (sentence-at-point): Doc fix (Bug#1144).
4789
4790 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4791
4792 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
4793 should cover it (bug#1281).
4794
4795 * cus-edit.el (custom-show): Mark as obsolete.
4796
4797 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
4798 negotiation fails, then possibly try again with a non-encrypted
4799 connection (bug#9017).
4800
4801 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
4802 be used.
4803
4804 2011-07-07 Richard Stallman <rms@gnu.org>
4805
4806 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
4807 property, and handle its changed format.
4808 Look for the correct line number.
4809 Use file's line contents (but not past first =) to find
4810 correct line in message.
4811
4812 2011-07-07 Kenichi Handa <handa@m17n.org>
4813
4814 * international/characters.el (build-unicode-category-table):
4815 Delete it.
4816 (unicode-category-table): Set it by unicode-property-table-internal.
4817
4818 * international/mule-cmds.el (char-code-property-alist): Move to
4819 to src/chartab.c.
4820 (get-char-code-property): Call unicode-property-table-internal to
4821 load a file. Call get-unicode-property-internal where necessary.
4822 (put-char-code-property): Call unicode-property-table-internal to
4823 load a file. Call put-unicode-property-internal where necessary.
4824 put-unicode-property-internal where necessary.
4825 (char-code-property-description):
4826 Call unicode-property-table-internal to load a file.
4827
4828 * international/charprop.el:
4829 * international/uni-bidi.el:
4830 * international/uni-category.el:
4831 * international/uni-combining.el:
4832 * international/uni-comment.el:
4833 * international/uni-decimal.el:
4834 * international/uni-decomposition.el:
4835 * international/uni-digit.el:
4836 * international/uni-lowercase.el:
4837 * international/uni-mirrored.el:
4838 * international/uni-name.el:
4839 * international/uni-numeric.el:
4840 * international/uni-old-name.el:
4841 * international/uni-titlecase.el:
4842 * international/uni-uppercase.el: Regenerate.
4843
4844 * loadup.el: Load international/charprop.el before
4845 international/characters.
4846
4847 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
4848
4849 * window.el (next-buffer, previous-buffer): Signal an error if
4850 called from a minibuffer window.
4851
4852 * bindings.el: Revert 2011-07-04 change.
4853
4854 2011-07-06 Richard Stallman <rms@gnu.org>
4855
4856 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
4857 (rmail-mime-insert-bulk, rmail-mime-insert-text):
4858 Treat markers like ints.
4859 (rmail-mime-entity): Doc fix.
4860
4861 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
4862
4863 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
4864 defcustom again for backwards compatibility.
4865
4866 * simple.el (shell-command-on-region): Fill.
4867
4868 * dired-aux.el (dired-kill-line): Add a doc string.
4869
4870 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
4871 to "\\sw\\|\\s_" (bug#358).
4872
4873 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
4874 (dired-unmark-backward): Ditto.
4875 (dired-flag-backup-files): Ditto.
4876
4877 * dired-x.el (dired-mark-sexp): Ditto.
4878
4879 2011-07-06 Richard Stallman <rms@gnu.org>
4880
4881 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
4882 (rmail-mime-entity): New arg TRUNCATED.
4883 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
4884 New functions.
4885 (rmail-mime-save): Warn if entity is truncated.
4886 (rmail-mime-toggle-hidden): Likewise, for showing.
4887 (rmail-mime-process-multipart): Record when an entity is truncated.
4888
4889 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
4890 if ENTITY is a string.
4891
4892 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
4893
4894 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
4895 of faces when `M-C-x'-ing their definitions (bug#8378).
4896 Also clean up the code slightly.
4897
4898 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
4899 because that makes the colors go away.
4900
4901 * mail/sendmail.el (send-mail-function): Change the default to
4902 `sendmail-query-once'.
4903 (sendmail-query-once): Add an autoload cookie.
4904
4905 * net/network-stream.el (network-stream-open-starttls): Try using
4906 a plain connection even if the server offered STARTTLS, and we
4907 kinda wanted to use it, if Emacs doesn't have any STARTTLS
4908 capability. This should make smtpmail.el work in slightly more
4909 configurations.
4910
4911 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
4912
4913 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
4914 New defun.
4915 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
4916
4917 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
4918
4919 * progmodes/sql.el: Version 3.0
4920 (sql-product-alist): Add product :completion-object,
4921 :completion-column, and :statement attributes.
4922 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
4923 (sql-mode-syntax-table): Mark all punctuation.
4924 (sql-font-lock-keywords-builder): Temporarily remove fallback on
4925 ansi keywords.
4926 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
4927 (sql-mode-oracle-font-lock-keywords): Improve.
4928 (sql-oracle-show-reserved-words): New function for development.
4929 (sql-product-font-lock): Simplify for source code buffers.
4930 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
4931 New functions.
4932 (sql-highlight-product): Set product specific syntax table.
4933 (sql-mode-map): Add statement movement functions.
4934 (sql-ansi-statement-starters, sql-oracle-statement-starters):
4935 New variable.
4936 (sql-statement-regexp, sql-beginning-of-statement)
4937 (sql-end-of-statement, sql-signum): New functions.
4938 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
4939 (sql-show-sqli-buffer): Bug fix.
4940 (sql-interactive-mode): Store connection data as buffer local.
4941 (sql-connect): Add NEW-NAME parameter. Redesign interaction
4942 with sql-interactive-mode.
4943 (sql-save-connection): Save buffer local settings.
4944 (sql-connection-menu-filter): Change menu entry name.
4945 (sql-product-interactive): Bug fix.
4946 (sql-preoutput-hold): New variable.
4947 (sql-interactive-remove-continuation-prompt): Bug fixes.
4948 (sql-debug-redirect): New variable.
4949 (sql-str-literal): New function.
4950 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
4951 Redesign.
4952 (sql-oracle-save-settings, sql-oracle-restore-settings)
4953 (sql-oracle-list-all, sql-oracle-list-table): New functions.
4954 (sql-completion-object, sql-completion-column)
4955 (sql-completion-sqlbuf): New variables.
4956 (sql-build-completions-1, sql-build-completions)
4957 (sql-try-completion): New functions.
4958 (sql-read-table-name): Use them.
4959 (sql-contains-names): New buffer local variable.
4960 (sql-list-all, sql-list-table): Use it.
4961 (sql-oracle-completion-types): New variable.
4962 (sql-oracle-completion-object, sql-sqlite-completion-object)
4963 (sql-postgres-completion-object): New functions.
4964
4965 2011-07-06 Glenn Morris <rgm@gnu.org>
4966
4967 * window.el (pop-to-buffer): Doc fix.
4968
4969 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
4970
4971 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
4972
4973 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
4974
4975 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4976
4977 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
4978
4979 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
4980
4981 * button.el (button): Inherit from link face. Suggested by Dan
4982 Nicolaescu.
4983
4984 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4985
4986 * progmodes/gdb-mi.el: Fit in 80 columns.
4987 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
4988 switch-to-buffer.
4989
4990 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
4991 if imenu is simply not configured (bug#8941).
4992
4993 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
4994
4995 * allout.el (allout-post-undo-hook): New allout outline-change
4996 event hook to signal undo activity.
4997 (allout-post-command-business): Run allout-post-undo-hook if an
4998 undo just occurred.
4999 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
5000 * allout-widgets.el (allout-widgets-after-undo-function):
5001 Ensure the integrity of the current item's decoration after it has been
5002 in the vicinity of an undo.
5003 (allout-widgets-mode): Include allout-widgets-after-undo-function
5004 on the new allout-post-undo-hook.
5005
5006 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
5007
5008 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
5009 Let define-derived-mode define it.
5010 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
5011 cycles of abbrev-table inheritance (bug#8998).
5012
5013 2011-07-05 Roland Winkler <winkler@gnu.org>
5014
5015 * textmodes/bibtex.el: Add support for biblatex.
5016 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
5017 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
5018 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
5019 (bibtex-entry-alist, bibtex-field-alist): New variables.
5020 (bibtex-entry-field-alist): Obsolete alias for
5021 bibtex-BibTeX-entry-alist.
5022 (bibtex-entry-alist, bibtex-field-alist): New widgets.
5023 (bibtex-set-dialect): New command.
5024 (bibtex-entry-type, bibtex-entry-head)
5025 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
5026 Bind via bibtex-set-dialect.
5027 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
5028 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
5029 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
5030 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
5031 Define via bibtex-set-dialect.
5032 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
5033 Obey bibtex-no-opt-remove-re.
5034 (bibtex-vec-push, bibtex-vec-incr): New functions.
5035 (bibtex-format-entry, bibtex-field-list)
5036 (bibtex-print-help-message, bibtex-validate)
5037 (bibtex-search-entries): Use new format of bibtex-entry-alist.
5038
5039 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
5040
5041 * progmodes/compile.el (compilation-goto-locus):
5042 * net/tramp-cmds.el (tramp-append-tramp-buffers):
5043 * bs.el (bs-cycle-next, bs-cycle-previous):
5044 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
5045 * bindings.el (mode-line-other-buffer):
5046 * autoinsert.el (auto-insert):
5047 * arc-mode.el (archive-extract):
5048 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
5049
5050 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
5051
5052 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
5053 Fix check of `emacs-lock-unlockable-modes'.
5054 Coerce true values of `emacs-lock--try-unlocking' to t.
5055
5056 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
5057
5058 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
5059 * emacs-lock.el: New file.
5060
5061 2011-07-05 Julien Danjou <julien@danjou.info>
5062
5063 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
5064 than `boundp' to check if face is set.
5065
5066 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
5067
5068 * register.el (registerv-make):
5069 * window.el (window-min-height): Fix typos in docstrings.
5070
5071 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
5072
5073 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
5074 Update doc string.
5075
5076 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
5077
5078 * server.el (server-execute): Catch quit and call
5079 `server-return-error' to pass the error back to emacsclient and
5080 close the connection (bug#8942).
5081
5082 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
5083
5084 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
5085 insecure exception for current topic. Also note that auto-saves
5086 are handled differently.
5087
5088 (allout-auto-save-temporarily-disabled), (allout-just-did-undo):
5089 State variables for tracking auto-save inhibition situation.
5090
5091 (allout-write-contents-hook-handler): Rename from
5092 'allout-write-file-hook-handler', and describe how it depends on
5093 write-contents-functions sensitivity to non-nil value to prevent
5094 file write.
5095
5096 (allout-auto-save-hook-handler): Remove. auto-save does not check
5097 this in individual buffers, only in the starting buffer, so this
5098 is not the right way for us to inhibit auto-save in a buffer
5099 according to its condition.
5100
5101 (allout-mode): Use new allout-write-contents-hook-handler, and
5102 only with write-contents-functions. Remove auto-save provisions -
5103 they're implemented elsewhere.
5104
5105 (allout-before-change-handler): If undo is in progress, note that
5106 for attention of allout-post-command-business.
5107
5108 (allout-post-command-business): If the command we're following was
5109 an undo, check for change in the status of encrypted items and
5110 adjust auto-save inhibitions accordingly.
5111
5112 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
5113 according to whether there are or aren't any plain-text topics
5114 pending encryption.
5115
5116 (allout-inhibit-auto-save-info-for-decryption):
5117 Adjust buffer-saved-size and some allout state to inhibit auto-saves
5118 if there are plain-text topics pending encryption.
5119
5120 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
5121 buffer-saved-size and some allout state to not inhibit auto-saves
5122 if there are no longer any plain-text topics pending encryption.
5123
5124 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
5125 No longer provide for exemption of the current topic.
5126
5127 2011-07-04 Juri Linkov <juri@jurta.org>
5128
5129 Add 7z operations to delete and save changed members (bug#8968).
5130 * arc-mode.el (archive-7z-expunge, archive-7z-update):
5131 New defcustoms.
5132 (archive-7z-write-file-member): New function.
5133 (archive-7z-summarize): Fix the number of dashes in the
5134 listing output.
5135
5136 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5137
5138 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
5139 (bug#8958).
5140
5141 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
5142
5143 * bindings.el: Ignore next-buffer and previous-buffer in
5144 minibuffer-local-map.
5145
5146 * font-lock.el (font-lock-builtin-face): Change light background
5147 color to dark slate blue (Bug#6693).
5148
5149 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
5150
5151 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
5152
5153 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5154
5155 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
5156 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5157 Add switch-to-buffer.
5158
5159 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
5160
5161 * isearch.el (isearch-search-fun-function): Clarify further the
5162 meaning of the function returned.
5163
5164 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
5165
5166 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
5167
5168 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
5169 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
5170 Use it.
5171 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
5172 `tramp-default-remote-path' does not exist.
5173 (tramp-send-command-and-read): New optional argument NOERROR.
5174 (tramp-open-connection-setup-interactive-shell)
5175 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
5176 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
5177 (tramp-process-sentinel): Flush also process' connection property.
5178 (tramp-sh-handle-start-file-process): Do not set process
5179 sentinel. It is done now ...
5180 (tramp-maybe-open-connection): ... here. (Bug#8929)
5181
5182 2011-07-04 MON KEY <monkey@sandpframing.com>
5183
5184 * play/animate.el (animate-string): Doc fixes and allow changing
5185 the buffer name (bug#5417).
5186
5187 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
5188
5189 * play/animate.el (animation-buffer-name): Rename from *animate*.
5190
5191 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
5192
5193 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
5194 This is simpler and helps future-proof the code.
5195 (timer-until): Use time-subtract and float-time.
5196 (timer--time-less-p): Use time-less-p.
5197
5198 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
5199
5200 * type-break.el (timep): Use the value of `float-time' to avoid a
5201 byte-compiler warning.
5202
5203 * server.el (server-eval-and-print): Return any result, even nil.
5204
5205 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
5206
5207 * type-break.el: Accept time formats that the builtins accept.
5208 (timep, type-break-time-difference): Accept any format that
5209 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
5210 This is simpler and helps future-proof the code.
5211 (type-break-time-difference): Round rather than ignoring
5212 subseconds components.
5213
5214 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5215
5216 * info.el (Info-apropos-matches): Make non-interactive, since it
5217 doesn't seem to do anything useful as a command (bug#8829).
5218
5219 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
5220
5221 * frame.el (frame-background-mode, frame-set-background-mode):
5222 Move from faces.el.
5223 (frame-default-terminal-background): New function.
5224
5225 * custom.el (custom-push-theme): Don't record faces in `changed'
5226 theme; this doesn't work correctly for per-frame face settings.
5227 (disable-theme): Use face-set-after-frame-default to reset faces.
5228 (custom--frame-color-default): New function.
5229
5230 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5231
5232 * dired.el (dired-flagging-regexp): Remove unused variable
5233 (bug#8769).
5234
5235 2011-03-29 Kevin Ryde <user42@zip.com.au>
5236
5237 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5238 `perl-Test2' extend to match possible "fail #N" rep count
5239 (bug#8377).
5240
5241 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5242
5243 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
5244 `smtpmail-via-smtp' now returns the error instead of nil.
5245
5246 * isearch.el (isearch-search-fun-function): Clarify the doc string
5247 (bug#8101).
5248
5249 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
5250
5251 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
5252 unnecessary spaces (bug#8987).
5253
5254 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5255
5256 * net/network-stream.el (open-network-stream): Use the
5257 :end-of-capability command thoughout.
5258
5259 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
5260
5261 * net/network-stream.el (open-network-stream): Add the
5262 :end-of-capability command parameter, used by pop3.el.
5263
5264 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5265
5266 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
5267
5268 * fringe.el (fringe-query-style): Remove redundant text " (type ?
5269 for list)" (bug#6475).
5270
5271 * files.el (file-expand-wildcards): Ignore non-readable
5272 sub-directories while trying to find matches instead of signaling
5273 an error (bug#6297).
5274
5275 * man.el (Man-reference-regexp): Allow matching possible
5276 word-wrapped references (bug#6289).
5277
5278 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
5279 for consistency with the other vc buffers (bug#6197).
5280 (vc-checkin): Ditto.
5281
5282 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
5283
5284 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
5285
5286 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
5287
5288 * custom.el (defcustom): Clarify that :set is only used in the
5289 Customize user interface (bug#6089).
5290
5291 * progmodes/flymake.el (flymake-mode): If the buffer isn't
5292 associated with a file, refuse to run instead of erroring out
5293 (bug#6084).
5294
5295 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
5296 the doc string, since it appears that using `fill-column' always
5297 controls the width (bug#7845).
5298
5299 * simple.el (shell-command-on-region): Say where the error output
5300 went if `shell-command-default-error-buffer' is set (bug#6857).
5301
5302 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
5303
5304 * allout.el (allout-yank-processing): Adjust cursor position for
5305 backwards-deleted space.
5306
5307 (allout-rebullet-heading): Register changes with
5308 allout-exposure-changed-hook, so the modified topic is properly
5309 decorated.
5310
5311 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
5312
5313 * minibuffer.el (completion-in-region): Document PREDICATE
5314 (bug#7136).
5315
5316 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
5317 of keyword/argument pairs (bug#6904).
5318
5319 * replace.el (multi-occur):
5320 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5321
5322 2011-07-02 Drew Adams <drew.adams@oracle.com>
5323
5324 * dired.el (dired-mark-if): Make the message about whether it's
5325 marking or unmarking clearer (bug#8523).
5326
5327 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
5328
5329 * disp-table.el (display-table-print-array): New function.
5330 (describe-display-table): Use it to print the vectors more pretty
5331 (Bug#8859).
5332
5333 2011-07-02 Martin Rudalics <rudalics@gmx.at>
5334
5335 * window.el (window-state-get-1): Don't assign clone numbers.
5336 Add clone-of item to list of window parameters.
5337 (window-state-put-2): Don't process clone numbers.
5338 (display-buffer-alist): Fix doc-string.
5339
5340 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
5341
5342 * subr.el (remq): Don't allocate if it's not needed.
5343 (keymap--menu-item-binding, keymap--menu-item-with-binding)
5344 (keymap--merge-bindings): New functions.
5345 (keymap-canonicalize): Use them to refine the canonicalization.
5346 * minibuffer.el (minibuffer-local-completion-map)
5347 (minibuffer-local-must-match-map): Move initialization from C.
5348 (minibuffer-local-filename-completion-map): Move initialization from C;
5349 don't inherit from anything here.
5350 (minibuffer-local-filename-must-match-map): Make obsolete.
5351 (completing-read-default): Use make-composed-keymap to combine
5352 minibuffer-local-filename-completion-map with either
5353 minibuffer-local-must-match-map or
5354 minibuffer-local-filename-completion-map.
5355
5356 2011-07-01 Glenn Morris <rgm@gnu.org>
5357
5358 * type-break.el (type-break-time-sum): Use dolist.
5359
5360 * textmodes/flyspell.el (flyspell-word-search-backward):
5361 Replace CL function.
5362
5363 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
5364
5365 * mouse.el (mouse--strip-first-event): New function.
5366 (function-key-map): Use it to map fringe clicks to normal clicks
5367 by default.
5368
5369 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
5370 (vc-bzr-revision-completion-table): Add support for annotate and date.
5371
5372 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
5373 inherit from parent.
5374
5375 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
5376
5377 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
5378 (dired-show-file-type): Doc fixup (bug#8818).
5379
5380 * dired.el (dired-mode): Fix up the doc string as suggested by
5381 Drew Adams (bug#8817).
5382
5383 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
5384 cookie, since the manual says that it should be possible to add
5385 this function to `find-file-hook' (bug#8709).
5386
5387 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
5388
5389 * progmodes/cfengine.el: Moved all cfengine3.el functionality
5390 here. Noted Ted Zlatanov as the maintainer.
5391 (cfengine-common-settings, cfengine-common-syntax): New functions
5392 to set up common things between `cfengine-mode' and
5393 `cfengine3-mode'.
5394 (cfengine3-mode): New mode.
5395 (cfengine3-defuns cfengine3-defuns-regex
5396 (cfengine3-class-selector-regex cfengine3-category-regex)
5397 (cfengine3-vartypes cfengine3-font-lock-keywords)
5398 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
5399 (cfengine3-indent-line): Add from cfengine3.el.
5400
5401 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
5402
5403 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
5404
5405 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
5406
5407 2011-07-01 Martin Rudalics <rudalics@gmx.at>
5408
5409 * window.el (same-window-buffer-names, same-window-regexps)
5410 (same-window-p, special-display-frame-alist)
5411 (special-display-popup-frame, special-display-function)
5412 (special-display-buffer-names, special-display-regexps)
5413 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
5414 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
5415 (split-window-preferred-function, split-height-threshold)
5416 (split-width-threshold, even-window-heights)
5417 (display-buffer-mark-dedicated, window-splittable-p)
5418 (split-window-sensibly, window-safely-shrinkable-p):
5419 Un-obsolete.
5420 (display-buffer): Don't spread args with function specifier
5421 because special-display-popup-frame won't like it.
5422
5423 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
5424
5425 Time-stamp simplifications and fixes.
5426 These improve accuracy slightly, and future-proof the code
5427 against some potential changes to current-time format.
5428
5429 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
5430 by using time-since and float-time.
5431
5432 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
5433 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
5434 + NNN microseconds".
5435
5436 * type-break.el (type-break-time-sum): Rewrite using time-add.
5437
5438 * play/hanoi.el (hanoi-current-time-float): Remove.
5439 All uses replaced by float-time.
5440
5441 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
5442 This yields a more-accurate answer.
5443 (rng-time-to-float): Remove; no longer needed.
5444
5445 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
5446
5447 * calendar/timeclock.el (timeclock-seconds-to-time):
5448 Defalias to seconds-to-time, since they're the same thing.
5449
5450 * emacs-lisp/elp.el (elp-elapsed-time):
5451 * emacs-lisp/benchmark.el (benchmark-elapse):
5452 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
5453
5454 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
5455
5456 * window.el (bury-buffer): Don't iconify the only frame.
5457 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
5458 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
5459
5460 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
5461
5462 * eshell/em-smart.el (eshell-smart-display-navigate-list):
5463 Add mouse-yank-primary.
5464
5465 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
5466
5467 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
5468
5469 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
5470
5471 * emacs-lisp/find-func.el (find-library--load-name): New fun.
5472 (find-library-name): Use it to find relative load names when provided
5473 absolute file name (bug#8803).
5474
5475 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
5476
5477 * textmodes/flyspell.el (flyspell-word): Consider words that
5478 differ only in case as potential doublons (bug#5687).
5479
5480 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
5481 Remove two rather uninteresting debugging-like messages to make
5482 debbugs.el more silent.
5483
5484 * comint.el (comint-password-prompt-regexp): Accept "Response" as
5485 a password-like phrase.
5486
5487 2011-06-30 Mastake YAMATO <yamato@redhat.com>
5488
5489 * progmodes/cc-guess.el: New file.
5490
5491 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
5492
5493 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
5494 derived from `c-basic-common-init'.
5495
5496 * progmodes/cc-mode.el (top-level): Require cc-guess.
5497 (c-basic-common-init): Use `cc-choose-style-for-mode'.
5498
5499 2011-06-30 Lawrence Mitchell <wence@gmx.li>
5500
5501 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
5502
5503 2011-06-30 Alan Mackenzie <acm@muc.de>
5504
5505 * progmodes/cc-engine.el (c-guess-continued-construct):
5506 Correct the handling of template-args-cont, particularly for when font
5507 lock is disabled. Name this case as "CASE G".
5508
5509 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
5510
5511 * allout.el (allout-yank-processing): Fix injection of extra space
5512 between bullet and non-whitespace character in first topic when
5513 pasting, ensuring that the actual spacing in the pasted topic
5514 following the bullet char is preserved. This extra space was
5515 causing pasted encrypted topics to get a decrypted status even
5516 when the content was actually still encrypted. Now the decryption
5517 status from before the paste is preserved.
5518
5519 (allout-flag-region): Set all allout overlays so they evaporate
5520 when reduced to zero length (evanescent), to prevent overlay
5521 leakage.
5522
5523 2011-06-30 Glenn Morris <rgm@gnu.org>
5524
5525 * w32-fns.el (w32-charset-info-alist): Declare.
5526
5527 * find-dired.el (find-grep-options): Simplify.
5528
5529 * term/ns-win.el (ns-set-resource): Declare.
5530
5531 * ses.el (row, col): Declare dynamic variables honestly.
5532
5533 * textmodes/reftex-parse.el (index-tags): Declare.
5534
5535 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
5536
5537 * cus-edit.el (customize-push-and-save): New function.
5538
5539 * files.el (hack-local-variables-confirm): Use it.
5540
5541 * custom.el (load-theme): New arg NO-CONFIRM.
5542 Use customize-push-and-save (Bug#8720).
5543 (custom-enabled-themes): Doc fix.
5544
5545 * cus-theme.el (customize-create-theme)
5546 (custom-theme-merge-theme): Callers to load-theme changed.
5547
5548 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
5549
5550 * thingatpt.el (thing-at-point-short-url-regexp): Require that
5551 short URLs have at least one dot in them (bug #7614).
5552
5553 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
5554 nil, because using a pty is apparently too slow (bug #895).
5555
5556 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
5557
5558 * mail/sendmail.el (sendmail-query-once): New function.
5559 (sendmail-query-once-function): New variable.
5560
5561 2011-06-29 Glenn Morris <rgm@gnu.org>
5562
5563 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
5564
5565 * ses.el (top-level): Require cl when compiling.
5566 (ses-set-localvars): Fix error statement.
5567 Call it at compile time to silence a storm of warnings.
5568
5569 2011-06-29 Martin Rudalics <rudalics@gmx.at>
5570
5571 * window.el (normalize-live-buffer): Rename to
5572 window-normalize-buffer.
5573 (normalize-live-frame): Rename to window-normalize-frame.
5574 (normalize-any-window): Rename to window-normalize-any-window.
5575 (normalize-live-window): Rename to window-normalize-live-window.
5576 (make-window-atom): Rename to window-make-atom.
5577 (window-resize-reset): Rename to window--resize-reset.
5578 (window-resize-reset-1): Rename to window--resize-reset-1.
5579 (resize-mini-window): Rename to window--resize-mini-window.
5580 (resize-subwindows-skip-p): Rename to
5581 window--resize-subwindows-skip-p.
5582 (resize-subwindows-normal): Rename to
5583 window--resize-subwindows-normal.
5584 (resize-subwindows): Rename to window--resize-subwindows.
5585 (resize-other-windows): Rename to window--resize-siblings.
5586 (resize-this-window): Rename to window--resize-this-window.
5587 (resize-root-window): Rename to window--resize-root-window.
5588 (resize-root-window-vertically): Rename to
5589 window--resize-root-window-vertically.
5590 (normalize-buffer-to-display): Rename to
5591 window-normalize-buffer-to-display.
5592 (normalize-buffer-to-switch-to): Rename to
5593 window-normalize-buffer-to-switch-to.
5594 Correspondingly update all callers of the functions listed
5595 above.
5596 (display-buffer-alist, display-buffer-normalize-arguments)
5597 (display-buffer-normalize-options, display-buffer)
5598 (display-buffer-alist-set): Use "function" instead of
5599 "fun-with-args".
5600
5601 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
5602
5603 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
5604 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
5605 debbugs.gnu.org. Mention acknowledgment email.
5606
5607 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
5608
5609 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
5610 buffer multibyteness, since it shouldn't matter.
5611
5612 2011-06-28 Martin Rudalics <rudalics@gmx.at>
5613
5614 * window.el (display-buffer-in-side-window): Handle dedicated
5615 windows as in display-buffer-reuse-window.
5616 (display-buffer-normalize-alist): Use value of override
5617 specifier.
5618 (display-buffer-normalize-specifiers): Use value of
5619 other-window-means-other-frame specifier.
5620 (display-buffer-alist): Rewrite some texts in widgets.
5621 (display-buffer): Spread arguments when calling function
5622 specified by fun-with-args.
5623
5624 2011-06-28 Deniz Dogan <deniz@dogan.se>
5625
5626 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
5627 Unnest `let'.
5628
5629 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
5630 selectors (Bug#5732).
5631 (css-proprietary-nmstart-re): Use `regexp-opt'.
5632
5633 2011-06-27 Jari Aalto <jari.aalto@cante.net>
5634
5635 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
5636 (eshell-ls-date-format): New defcustom.
5637 (eshell-ls-file): Use it.
5638
5639 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5640
5641 * help-fns.el (describe-variable): Fix message for terminal-local vars.
5642
5643 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
5644
5645 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
5646 (ange-ftp-make-tmp-name): New arg.
5647 (ange-ftp-file-local-copy): Use it.
5648
5649 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
5650
5651 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
5652 no-conversion (Bug#8870).
5653
5654 2011-06-27 Martin Rudalics <rudalics@gmx.at>
5655
5656 * window.el (window-right, window-left, window-child)
5657 (window-child-count, window-last-child)
5658 (window-iso-combination-p, walk-window-tree-1)
5659 (window-atom-check-1, window-tree-1, delete-window)
5660 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
5661 new naming conventions - window-vchild, window-hchild,
5662 window-next and window-prev are now called window-top-child,
5663 window-left-child, window-next-sibling and window-prev-sibling
5664 respectively.
5665 (resize-window-reset): Rename to window-resize-reset.
5666 (resize-window-reset-1): Rename to window-resize-reset-1.
5667 (resize-window): Rename to window-resize.
5668 (window-min-height, window-min-width)
5669 (resize-mini-window, resize-this-window, resize-root-window)
5670 (resize-root-window-vertically, adjust-window-trailing-edge)
5671 (enlarge-window, shrink-window, maximize-window)
5672 (minimize-window, delete-window, quit-restore-window)
5673 (split-window, balance-windows, balance-windows-area-adjust)
5674 (balance-windows-area, window-state-put-2)
5675 (display-buffer-even-window-sizes, display-buffer-set-height)
5676 (display-buffer-set-width, set-window-text-height)
5677 (fit-window-to-buffer): Rename all "resize-window" prefixed
5678 calls to use the "window-resize" prefix convention.
5679 (display-buffer-alist): Fix symbol for label specifier.
5680 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
5681 corresponding specifier.
5682 Reported by Juanma Barranquero <lekktu@gmail.com>.
5683
5684 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
5685
5686 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
5687 convention.
5688 (ses-call-printer): Does not pass an empty string to formatter when the
5689 cell is empty to keep from barking printer Calc math-format-value.
5690
5691 2011-06-27 Richard Stallman <rms@gnu.org>
5692
5693 * battery.el (battery-mode-line-limit): New variable.
5694 (battery-update): Handle it.
5695
5696 * mail/rmailmm.el (rmail-mime-process-multipart):
5697 Handle truncated messages.
5698
5699 2011-06-27 Glenn Morris <rgm@gnu.org>
5700
5701 * progmodes/flymake.el (flymake-err-line-patterns):
5702 Allow for column numbers in the ant/javac pattern. (Bug#8866)
5703
5704 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
5705
5706 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
5707 (ses--clean-!, ses--clean-_): New functions.
5708 (ses-range): Add configurability of readout order, and conversion
5709 to Calc vector.
5710
5711 * ses.el (ses-repair-cell-reference-all): New function.
5712 (ses-cell-symbol): Set macro as safe, so that it can be used in
5713 formulas.
5714
5715 * ses.el: Update cycle detection algorithm.
5716 (ses-localvars): Add ses--Dijkstra-attempt-nb and
5717 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
5718 (ses-set-localvars): New function.
5719 (ses-make-cell): Add property-list as a cell element.
5720 (ses-cell-property-get-fun, ses-cell-property-get)
5721 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
5722 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
5723 New functions.
5724 (ses-cell-property-set, ses-cell-property-pop)
5725 (ses-cell-property-get-handle): New macro.
5726 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
5727 New aliases, used for code readability.
5728 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
5729 cycle detection.
5730 (ses-self-reference-early-detection): New defcustom.
5731 (ses-formula-references): Robustify against self-referring cells.
5732 (ses-mode): Use ses-set-localvars.
5733 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
5734 before lauching the update processing.
5735 (ses-initialize-Dijkstra-attempt): New function.
5736 (ses-recalculate-cell): Update for cycle detection based on
5737 Dijkstra algorithm.
5738
5739 * ses.el: Fix commenting and indenting convention.
5740
5741 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5742
5743 * bs.el (bs-cycle-next): Complete last change.
5744
5745 2011-06-27 Drew Adams <drew.adams@oracle.com>
5746
5747 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
5748
5749 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
5750
5751 * net/network-stream.el (network-stream-open-starttls):
5752 Don't re-get capabilities unless we've reestablished connection.
5753 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
5754
5755 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
5756 to binary to possibly avoid line encoding issues on Windows (among
5757 other things).
5758
5759 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5760
5761 * net/network-stream.el (open-network-stream): Return an :error
5762 saying what the problem was, if possible.
5763
5764 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
5765 server.
5766
5767 * net/network-stream.el (network-stream-open-starttls): If we
5768 wanted to use STARTTLS, and the server offered it, but we weren't
5769 able to because we had no STARTTLS support, then close the connection.
5770 (open-network-stream): Return an :error element, if present.
5771
5772 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
5773
5774 * hl-line.el (hl-line-sticky-flag): Doc fix.
5775 (global-hl-line-sticky-flag): New option (Bug#8323).
5776 (global-hl-line-highlight): Obey it.
5777
5778 * vc/vc.el (vc-revert-show-diff): Default to t.
5779
5780 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
5781
5782 * allout-widgets.el (allout-widgets-post-command-business):
5783 Stop decorating intermediate isearch matches. They're not being
5784 undecorated when an isearch is continued past, and isearch
5785 automatically collapses them. This leads to "widget leaks", where
5786 decorated items accumulate in collapsed areas. Lines with lots of
5787 hidden widgets can slow down cursor travel, substantially.
5788 Too much complicated machinery would be needed to ensure undecoration,
5789 so we're doing without this nicety.
5790
5791 (allout-widgets-tally-string): Don't try to do a hash-table-count
5792 of allout-widgets-tally when it's nil. This eliminates spurious "Error
5793 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
5794 *Messages* when allout-widgets-maintain-tally is t.
5795
5796 2011-06-26 Martin Rudalics <rudalics@gmx.at>
5797
5798 * window.el (display-buffer-normalize-argument): Rename to
5799 display-buffer-normalize-arguments. Handle special meaning of
5800 LABEL argument. Respect special-display-function when popping up
5801 a new frame. Fix code searching for a window showing the buffer
5802 on another frame.
5803 (display-buffer-normalize-specifiers):
5804 Call display-buffer-normalize-arguments.
5805 (display-buffer-in-window): Don't undedicate the window if its
5806 buffer remains the same.
5807 Reported by Drew Adams <drew.adams@oracle.com>.
5808 (display-buffer-alist): Add choice for same-window macro
5809 specfier.
5810 (display-buffer): Mention special meaning of LABEL argument in
5811 doc-string. Fix quoting. Don't pop up a new frame even as
5812 fallback.
5813
5814 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
5815
5816 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
5817 avoid deleting the current window in some cases (bug#8911).
5818
5819 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
5820
5821 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
5822 (Bug#8934)
5823
5824 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5825
5826 * net/network-stream.el (network-stream-open-starttls):
5827 Use built-in TLS support if `gnutls-available-p' is true.
5828 (network-stream-open-tls): Ditto.
5829
5830 2011-06-26 Leo Liu <sdl.web@gmail.com>
5831
5832 * register.el (registerv): New struct.
5833 (registerv-make): New function.
5834 (jump-to-register, describe-register-1, insert-register):
5835 Support the jump-func, print-func and insert-func slot of a registerv
5836 struct. (Bug#8415)
5837
5838 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
5839
5840 * vc/vc.el (vc-revert-show-diff): New defcustom.
5841 (vc-diff-internal): New arg specifying diff buffer.
5842 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
5843 reuse an existing *vc-diff* buffer (Bug#8927).
5844
5845 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
5846
5847 2011-06-26 Glenn Morris <rgm@gnu.org>
5848
5849 * progmodes/f90.el (f90-critical-indent): New option.
5850 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
5851 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
5852 (f90-mode): Doc fix.
5853 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
5854 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
5855 (f90-beginning-of-block, f90-next-block, f90-indent-region)
5856 (f90-match-end): Handle block, critical.
5857
5858 2011-06-25 Glenn Morris <rgm@gnu.org>
5859
5860 * calendar/diary-lib.el (diary-included-files): Doc fix.
5861 (diary-include-files): New function, extracted from
5862 diary-include-other-diary-files and diary-mark-included-diary-files.
5863 (diary-include-other-diary-files, diary-mark-included-diary-files):
5864 Just call diary-include-files.
5865 (diary-mark-entries): Reset diary-included-files on first call.
5866
5867 * calendar/diary-lib.el (diary-mark-entries)
5868 (diary-mark-included-diary-files):
5869 Visit included diary-files in temp buffers.
5870
5871 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
5872 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
5873 (f90-start-block-re, f90-imenu-generic-expression)
5874 (f90-looking-at-program-block-start, f90-no-block-limit):
5875 Add support for submodules.
5876
5877 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
5878 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
5879
5880 2011-06-25 Eli Zaretskii <eliz@gnu.org>
5881
5882 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
5883 buffer-file-type before setting its value, to avoid disastrous
5884 global effects on decoding files for DOS/Windows systems. (Bug#8780)
5885
5886 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
5887
5888 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
5889
5890 * ses.el (ses-unload-function):
5891 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
5892
5893 * proced.el (proced-unload-function):
5894 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
5895
5896 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
5897
5898 * server.el (server-create-window-system-frame): Add parameters arg.
5899 (server-process-filter): Doc fix. Handle frame-parameters.
5900
5901 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
5902
5903 Fix bug#8730, bug#8781.
5904
5905 * loadhist.el (unload--set-major-mode): New function.
5906 (unload-feature): Use it.
5907
5908 * progmodes/python.el (python-after-info-look): Add autoload cookie.
5909 (python-unload-function): New function.
5910
5911 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5912
5913 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
5914
5915 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
5916
5917 * net/browse-url.el (browse-url-firefox-program): Add icecat to
5918 the candidates list.
5919
5920 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
5921
5922 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
5923
5924 2011-06-23 Richard Stallman <rms@gnu.org>
5925
5926 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
5927 (rmail-variables): Set next-error-move-function.
5928 (rmail-what-message): Take argument POS.
5929 (rmail-next-error-move): New function.
5930
5931 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5932
5933 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
5934 messages for adjacent non-terminals.
5935
5936 2011-06-23 Richard Stallman <rms@gnu.org>
5937
5938 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
5939 (rmail-show-message-1): Preserve buffer modified flag.
5940 (rmail-start-mail): Don't specify use of rmail-mail-return;
5941 that's done by mail-bury now.
5942 (rmail-mail-return): Handle arg NEWBUF.
5943
5944 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
5945
5946 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
5947 SIZE is a number.
5948
5949 2011-06-23 Martin Rudalics <rudalics@gmx.at>
5950
5951 * window.el (get-lru-window, get-mru-window)
5952 (get-largest-window): Never return a minibuffer window.
5953 (display-buffer-pop-up-window): Fix a bug that could lead to
5954 reusing the minibuffer window.
5955 (display-buffer): Pass original specifier argument to
5956 display-buffer-function instead of the normalized one.
5957 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
5958
5959 2011-06-22 Leo Liu <sdl.web@gmail.com>
5960
5961 * minibuffer.el (completing-read-function)
5962 (completing-read-default): Move from minibuf.c
5963
5964 2011-06-22 Richard Stallman <rms@gnu.org>
5965
5966 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
5967 to Rmail even if not started by a special Rmail command.
5968
5969 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
5970 Copy the buffer currently showing just one message.
5971
5972 2011-06-22 Roland Winkler <winkler@gnu.org>
5973
5974 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
5975 (bibtex-clean-entry): First delete the old key so that a
5976 customized algorithm for generating the new key does not get
5977 confused by the old key.
5978 (bibtex-url): Obey regexp of first step.
5979 (bibtex-search-entries): Do not use add-to-list with local
5980 list-var.
5981
5982 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5983
5984 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
5985 stored a user name, then query for the password first, instead of
5986 waiting for SMTP to give an error message and the trying again.
5987
5988 2011-06-22 Lawrence Mitchell <wence@gmx.li>
5989
5990 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
5991 BUFFER in call-process.
5992
5993 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5994
5995 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
5996 QUIT twice.
5997 (smtpmail-try-auth-methods): Require user name and password from
5998 auth-source.
5999
6000 2011-06-22 Martin Rudalics <rudalics@gmx.at>
6001
6002 * window.el (display-buffer-default-specifiers)
6003 (display-buffer-alist): Remove entries for pop-up-frame-alist.
6004 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
6005 (split-window): Normalize SIDE argument (Bug#8916).
6006
6007 * frame.el (pop-up-frame-alist, pop-up-frame-function)
6008 (special-display-frame-alist, special-display-popup-frame):
6009 Remove duplicate declarations. These are now in window.el.
6010
6011 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
6012
6013 * mail/smtpmail.el (smtpmail-via-smtp):
6014 Set :use-starttls-if-possible so that we always use STARTTLS if the
6015 server supports it. SMTP servers that support STARTTLS commonly
6016 require it.
6017
6018 * net/network-stream.el (network-stream-open-starttls): Support
6019 upgrading to STARTTLS always, even if we don't have built-in support.
6020 (open-network-stream): Add the :always-query-capabilities keyword.
6021
6022 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
6023 upgrades with `open-network-stream', and rely solely on
6024 auth-source for all credentials. Big changes throughout the file,
6025 but in particular:
6026 (smtpmail-auth-credentials): Remove.
6027 (smtpmail-starttls-credentials): Remove.
6028 (smtpmail-via-smtp): Check for servers saying they want AUTH after
6029 MAIL FROM, too.
6030
6031 * net/network-stream.el (network-stream-open-starttls):
6032 Provide support for client certificates both for external and built-in
6033 STARTTLS.
6034 (auth-source): Require.
6035 (open-network-stream): Document the :client-certificate keyword.
6036 (network-stream-certificate): Change cert-cert to cert and
6037 cert-key to key.
6038
6039 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
6040
6041 * net/tramp-cache.el (top): Don't load the persistency file when
6042 "emacs -Q" has been called.
6043
6044 2011-06-21 Tim Harper <timcharper@gmail.com>
6045
6046 * term/ns-win.el (ns-initialize-window-system):
6047 Set application-specific `ApplePressAndHoldEnabled' system
6048 resource to NO as it is not yet supported by the NS port.
6049
6050 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
6051
6052 * misc.el (list-dynamic-libraries--refresh): Compute header here...
6053 (list-dynamic-libraries): ...not here.
6054
6055 2011-06-21 Leo Liu <sdl.web@gmail.com>
6056
6057 * subr.el (sha1): Implement sha1 using secure-hash.
6058
6059 2011-06-21 Martin Rudalics <rudalics@gmx.at>
6060
6061 * window.el (display-buffer-alist): In default value do not
6062 enforce searching a window on any but the selected frame.
6063 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
6064 (display-buffer-select-window): Remove function.
6065 (display-buffer-in-window): When a window on another frame gets
6066 reused, do not select it any more but just raise its frame if
6067 necessary (Bug#8851) and (Bug#8856).
6068 (display-buffer-normalize-options): Handle pop-up-frames related
6069 options more faithfully.
6070 (pop-to-buffer): Don't rely on `display-buffer' selecting the
6071 window if it is on another frame.
6072 (display-buffer-alist, display-buffer-default-specifiers):
6073 Don't make new frame unsplittable by default.
6074 (display-buffer-normalize-argument): Fix doc-string typo and use
6075 'same-frame-other-window instead of 'other-window when associating
6076 with display-buffer-macro-specifiers.
6077
6078 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
6079
6080 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
6081 New functions.
6082 (5x5-mode-map, 5x5-mode-menu): Bind them.
6083 (5x5-draw-grid): Tweak the solver's rendering.
6084
6085 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
6086
6087 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
6088 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
6089
6090 2011-06-21 Drew Adams <drew.adams@oracle.com>
6091
6092 * menu-bar.el: Use function variable instead of switch-to-buffer.
6093 (menu-bar-select-buffer-function): New variable.
6094 (menu-bar-update-buffers): Use it (bug#8876).
6095
6096 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
6097
6098 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
6099 variable's status.
6100
6101 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
6102
6103 * x-dnd.el (x-dnd-version-from-flags)
6104 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
6105 and long as number (Bug#8899).
6106 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
6107
6108 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
6109
6110 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
6111 (completion-try-completion, completion-all-completions): Compute the
6112 metadata argument if it's missing; make it optional (bug#8795).
6113
6114 * wid-edit.el: Use lex-bind and move towards completion-at-point.
6115 (widget-complete): Use new :completion-function property.
6116 (widget-completions-at-point): New function.
6117 (default): Use :completion-function instead of :complete.
6118 (widget-default-completions): Rename from widget-default-complete;
6119 Rewrite.
6120 (widget-string-complete, widget-file-complete, widget-color-complete):
6121 Remove functions.
6122 (file, symbol, function, variable, coding-system, color):
6123 * international/mule-cmds.el (default-input-method, charset)
6124 (language-info-custom-alist):
6125 * cus-edit.el (face): Use new property :completions.
6126
6127 * progmodes/pascal.el (pascal-completions-at-point): New function.
6128 (pascal-mode): Use it.
6129 (pascal-mode-map): Use completion-at-point.
6130 (pascal-toggle-completions): Make obsolete.
6131 (pascal-complete-word, pascal-show-completions):
6132 * progmodes/octave-mod.el (octave-complete-symbol):
6133 Redefine as obsolete alias.
6134 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
6135 Signal absence of completion info for old Octave,
6136 (inferior-octave-complete): Redefine as obsolete alias.
6137 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
6138 (meta-completions-at-point): Rename from meta-complete-symbol and
6139 adapt it for use on completion-at-point-functions.
6140 (meta-common-mode): Use it.
6141 (meta-looking-at-backward, meta-match-buffer): Remove.
6142 (meta-complete-symbol): Redefine as obsolete alias.
6143 (meta-common-mode-map): Use completion-at-point.
6144 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
6145 (makefile-mode-map): Use completion-at-point.
6146 (makefile-completions-at-point): Rename from makefile-complete and
6147 adapt it for use on completion-at-point-functions.
6148 (makefile-mode): Use it.
6149 (makefile-complete): Redefine as obsolete alias.
6150
6151 2011-06-20 Deniz Dogan <deniz@dogan.se>
6152
6153 * net/rcirc.el: Delete trailing whitespaces once and for all.
6154
6155 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
6156
6157 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
6158
6159 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
6160
6161 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
6162
6163 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
6164
6165 2011-06-19 Martin Rudalics <rudalics@gmx.at>
6166
6167 * window.el (display-buffer-other-window-means-other-frame):
6168 Call display-buffer-normalize-alist.
6169 (display-buffer-normalize-specifiers-1): Rename to
6170 display-buffer-normalize-argument. New argument other-frame.
6171 Rewrite.
6172 (display-buffer-normalize-specifiers-2): Rename to
6173 display-buffer-normalize-options.
6174 (display-buffer-normalize-alist-1): New function.
6175 (display-buffer-normalize-specifiers-3): Rename to
6176 display-buffer-normalize-alist.
6177 Call display-buffer-normalize-alist-1.
6178 (display-buffer-normalize-options-inhibit): New variable.
6179 (display-buffer-normalize-specifiers): Rewrite calling
6180 display-buffer-normalize-alist,
6181 display-buffer-normalize-argument, and
6182 display-buffer-normalize-options. Don't call the latter if
6183 display-buffer-normalize-options-inhibit is non-nil.
6184 (frame-auto-delete): New option.
6185 (window-deletable-p): Use frame-auto-delete.
6186 (window-list-no-nils, window-state-ignored-parameters)
6187 (window-state-get-1, window-state-get, window-state-put-list)
6188 (window-state-put-1, window-state-put-2, window-state-put):
6189 New functions.
6190 (display-buffer-normalize-options): Move special-display-p group
6191 after pop-up-frame group (Bug#8851) and (Bug#8856).
6192
6193 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
6194
6195 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
6196 groups (Bug#8776).
6197 (rx-submatch-n): New function.
6198 (rx): Document it.
6199
6200 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
6201 (Bug#8768).
6202
6203 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
6204
6205 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
6206
6207 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
6208 anytime existing face settings are present (Bug#8889).
6209
6210 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
6211 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
6212 Remove unused argument.
6213
6214 2011-06-18 Martin Rudalics <rudalics@gmx.at>
6215
6216 * window.el (display-buffer-default-specifiers):
6217 Remove pop-up-frame. Add pop-up-window-min-height,
6218 pop-up-window-min-width, and another reuse-window specifier
6219 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
6220 (display-buffer-normalize-specifiers-2):
6221 Handle split-height-threshold and split-width-threshold also when
6222 pop-up-windows is unset. Add a reuse-window specifier for the
6223 case popping up a new window fails.
6224 (special-display-popup-frame): Remove double quoting.
6225 (display-buffer-normalize-specifiers-1): Fix thinko.
6226
6227 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
6228
6229 * shell.el (shell-completion-vars): Set pcomplete-termination-string
6230 according to comint-completion-addsuffix.
6231
6232 * pcomplete.el: Convert to lexical binding and fix bug#8819.
6233 (pcomplete-suffix-list): Mark as obsolete.
6234 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
6235 pcomplete-seen in the closure.
6236 (pcomplete-comint-setup): Setup completion-at-point as well.
6237 (pcomplete--entries): New function.
6238 (pcomplete--env-regexp): New var.
6239 (pcomplete-entries): Rewrite to work with partial-completion and
6240 without relying on pcomplete-suffix-list.
6241 (pcomplete-pare-list): Remove, unused.
6242
6243 2011-06-17 Martin Rudalics <rudalics@gmx.at>
6244
6245 * window.el (display-buffer-alist): Set pop-up-window-min-height
6246 and pop-up-window-min-width in default value. Reported by
6247 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
6248 other-window-means-other-frame.
6249 (display-buffer-macro-specifiers): Comment out entry for
6250 other-window specifier.
6251 (display-buffer-other-window-means-other-frame): New function.
6252 (display-buffer-normalize-specifiers-1): New arguments
6253 buffer-name and label. Treat other-window case specially.
6254 (display-buffer-normalize-specifiers-2): Treat other-window case
6255 specially.
6256 (display-buffer-normalize-specifiers-3): New function.
6257 (display-buffer-normalize-specifiers):
6258 Call display-buffer-normalize-specifiers-3.
6259
6260 2011-06-17 Martin Rudalics <rudalics@gmx.at>
6261
6262 * window.el (same-window-p): Fix two typos introduced when
6263 adding with-no-warnings.
6264 (display-buffer-normalize-specifiers-1): Don't check
6265 pop-up-frames for 'unset initialization.
6266 (display-buffer-normalize-specifiers-2): Major rewrite using
6267 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
6268 (pop-up-frames, display-buffer-reuse-frames)
6269 (display-buffer-mark-dedicated): Don't initialize to 'unset.
6270 Suggested by David Engster <deng@randomsample.de>.
6271 (even-window-heights): Initialize to 'unset.
6272 (display-buffer-alist-set): Handle new 'unset initializations.
6273 (display-buffer-macro-specifiers): Don't pop up a new frame in the
6274 other window case.
6275
6276 2011-06-16 Martin Rudalics <rudalics@gmx.at>
6277
6278 * window.el (display-buffer-normalize-specifiers-1):
6279 Respect current value of pop-up-frames for most reasonable values of
6280 second argument of display-buffer (Bug#8865).
6281 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
6282 (switch-to-buffer-other-window-same-frame)
6283 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
6284 Adams (Bug#8875).
6285 (display-buffer): Don't check noninteractive when calling
6286 display-buffer-pop-up-frame.
6287 (display-buffer-pop-up-frame): Never pop up a frame in
6288 noninteractive mode (Bug#8857).
6289 (enlarge-window, shrink-window): Don't report an error when the
6290 window can't be resized as requested (Bug#8862).
6291
6292 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6293
6294 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
6295
6296 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
6297
6298 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
6299
6300 2011-06-15 Alan Mackenzie <acm@muc.de>
6301
6302 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
6303 for declarators, disable knr checking to speed up for normal files.
6304 2: Refactor, replacing a sequence of nested if forms by a cond form.
6305
6306 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
6307
6308 * net/network-stream.el (open-network-stream): Add the keyword
6309 :always-query-capabilities for the case where you want to force a
6310 `plain' network connection, but the protocol still requires the
6311 capabilitiy command (i.e., SMTP and EHLO).
6312
6313 * subr.el (process-live-p): Rename from `process-alive-p' for
6314 consistency with other `-live-p' functions.
6315
6316 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6317
6318 * window.el (same-window-buffer-names, same-window-regexps)
6319 (special-display-frame-alist, special-display-popup-frame)
6320 (special-display-function, special-display-buffer-names)
6321 (special-display-regexps, pop-up-frame-alist)
6322 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
6323 (pop-up-windows, split-window-preferred-function)
6324 (split-height-threshold, split-width-threshold, even-window-heights)
6325 (display-buffer-mark-dedicated): Don't encourage the use of
6326 display-buffer-alist from Elisp code.
6327
6328 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
6329
6330 * progmodes/python.el (python-mode): Derive from prog-mode.
6331 * progmodes/ps-mode.el (ps-mode):
6332 * progmodes/mixal-mode.el (mixal-mode):
6333 * progmodes/cfengine.el (cfengine-mode):
6334 * progmodes/ld-script.el (ld-script-mode): Likewise.
6335
6336 2011-06-15 Martin Rudalics <rudalics@gmx.at>
6337
6338 * window.el (display-buffer-alist): Trim default value to avoid
6339 popping up a new frame (Bug#8857) or reusing an arbitrary window
6340 on another frame.
6341 (display-buffer): Do not fall back on popping up a new frame in
6342 batch mode (Bug#8857).
6343
6344 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
6345
6346 * cus-theme.el (describe-theme-1): Use custom-theme-p.
6347 (custom-theme-summary): New function.
6348 (customize-themes): Use it.
6349
6350 2011-06-13 Glenn Morris <rgm@gnu.org>
6351
6352 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
6353
6354 2011-06-13 Martin Rudalics <rudalics@gmx.at>
6355
6356 * help.el (help-window): Remove variable.
6357 (help-window-point-marker, temp-buffer-max-height)
6358 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
6359 (help-print-return-message): Don't set help-window.
6360 (resize-temp-buffer-window): Rewrite cod eand doc-string.
6361 (help-window-setup-finish): Remove.
6362 (help-window-display-message, help-window-setup)
6363 (with-help-window): Major rewrite based on new
6364 display-buffer-window variable.
6365
6366 * help-mode.el (help-mode-finish): Remove help-window related
6367 code.
6368
6369 * view.el (view-exits-all-viewing-windows): Remove reference to
6370 view-return-to-alist in doc-string.
6371 (view-return-to-alist): Make obsolete.
6372 (view-buffer): Call pop-to-buffer-same-window and remove
6373 undo-window code.
6374 (view-buffer-other-window): Call pop-to-buffer-other-window and
6375 simplify code. Ignore second argument.
6376 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
6377 simplify code. Ignore second argument.
6378 (view-return-to-alist-update): Make obsolete.
6379 (view-mode-enter): Rename second argument to QUIT-RESTORE.
6380 Rewrite using quit-restore window parameters.
6381 (view-mode-exit): Rename second argument to EXIT-ONLY.
6382 Rewrite using quit-restore-window.
6383 (View-exit, View-exit-and-edit, View-leave, View-quit)
6384 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
6385 appropriate arguments.
6386 (view-end-message): Use quit-restore window parameter.
6387
6388 * window.el (display-buffer-function): Rewrite doc-string.
6389 (display-buffer-window, display-buffer-alist): New variables.
6390 (display-buffer-split-specifiers)
6391 (display-buffer-side-specifiers)
6392 (display-buffer-macro-specifiers): New constants.
6393 (display-buffer-even-window-sizes, display-buffer-set-height)
6394 (display-buffer-set-width, display-buffer-select-window)
6395 (display-buffer-in-window, display-buffer-reuse-window)
6396 (display-buffer-split-window-1, display-buffer-split-window)
6397 (display-buffer-split-atom-window, display-buffer-pop-up-window)
6398 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
6399 (display-buffer-in-side-window, normalize-buffer-to-display)
6400 (display-buffer-normalize-specifiers-1)
6401 (display-buffer-normalize-specifiers-2)
6402 (display-buffer-normalize-specifiers, display-buffer-frame):
6403 New functions.
6404 (display-buffer): Major rewrite.
6405 (display-buffer-other-window, display-buffer-other-frame)
6406 (pop-to-buffer, switch-to-buffer-other-window)
6407 (switch-to-buffer-other-frame): Rewrite.
6408 (display-buffer-same-window, display-buffer-same-frame)
6409 (display-buffer-same-frame-other-window)
6410 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
6411 (pop-to-buffer-other-window)
6412 (pop-to-buffer-same-frame-other-window)
6413 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
6414 (switch-to-buffer-other-window-same-frame): New functions.
6415 (same-window-p, special-display-p): Rewrite disabling warnings.
6416 Make obsolete.
6417 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
6418 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
6419 Make obsolete
6420 (same-window-buffer-names, same-window-regexps)
6421 (special-display-frame-alist, special-display-popup-frame)
6422 (special-display-function, special-display-buffer-names)
6423 (special-display-regexps, pop-up-frame-alist)
6424 (pop-up-frame-function, split-window-preferred-function)
6425 (split-height-threshold, split-width-threshold)
6426 (even-window-heights): Make obsolete.
6427
6428 2011-06-12 Glenn Morris <rgm@gnu.org>
6429
6430 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
6431 Misc simplifications.
6432
6433 2011-06-12 Martin Rudalics <rudalics@gmx.at>
6434
6435 * window.el (window-safely-shrinkable-p): Restore function which
6436 was inadvertently removed in change from 2011-06-11. Declare as
6437 obsolete.
6438
6439 * calendar/calendar.el (calendar-generate-window):
6440 Use window-iso-combined-p instead of combination of one-window-p and
6441 window-safely-shrinkable-p.
6442
6443 2011-06-12 Glenn Morris <rgm@gnu.org>
6444
6445 * progmodes/fortran.el (fortran-mode-syntax-table):
6446 * progmodes/f90.el (f90-mode-syntax-table):
6447 Set % to punctuation. (Bug#8820)
6448 (f90-find-tag-default): Remove, no longer needed.
6449
6450 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
6451
6452 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
6453
6454 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
6455
6456 * image.el (image-animated-p): Return animation delay in seconds.
6457 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
6458 (image-animate-timeout): Remove DELAY argument. Don't assume
6459 every subimage has the same delay; get it from image-animated-p.
6460 (image-animate): Caller changed.
6461
6462 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
6463
6464 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
6465 to ignored backtrace functions.
6466
6467 2011-06-11 Glenn Morris <rgm@gnu.org>
6468
6469 * calendar/appt.el (appt-disp-window-function): Doc fix.
6470 (appt-check): Handle overlapping appointments. (Bug#8337)
6471
6472 2011-06-11 Martin Rudalics <rudalics@gmx.at>
6473
6474 * window.el (window-tree-1, window-tree): New functions, moving
6475 the latter to window.el.
6476 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
6477 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
6478 (bw-refresh-edges): Remove.
6479 (balance-windows-1, balance-windows-2): New functions.
6480 (balance-windows): Rewrite in terms of window tree functions,
6481 balance-windows-1 and balance-windows-2.
6482 (bw-adjust-window): Remove.
6483 (balance-windows-area-adjust): New function with functionality of
6484 bw-adjust-window but using resize-window.
6485 (set-window-text-height): Rewrite doc-string.
6486 Use normalize-live-window and resize-window.
6487 (enlarge-window-horizontally, shrink-window-horizontally):
6488 Rename argument to DELTA.
6489 (window-buffer-height): New function.
6490 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
6491 Rewrite using new window resize routines.
6492 (kill-buffer-and-window, mouse-autoselect-window-select):
6493 Use ignore-errors instead of condition-case.
6494 (quit-window): Call delete-frame instead of delete-windows-on
6495 for the only buffer on frame.
6496
6497 2011-06-10 Martin Rudalics <rudalics@gmx.at>
6498
6499 * loadup.el (top-level): Load window before files for the sake
6500 of replace-buffer-in-windows.
6501
6502 * files.el (read-buffer-to-switch)
6503 (switch-to-buffer-other-window)
6504 (switch-to-buffer-other-frame, display-buffer-other-frame):
6505 Move to window.el.
6506
6507 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
6508 (previous-buffer): Move to window.el.
6509
6510 * bindings.el (unbury-buffer): Move to window.el.
6511
6512 * window.el (delete-other-windows-vertically): Move after
6513 definition of delete-other-windows.
6514 (other-window, delete-windows-on, replace-buffer-in-windows):
6515 Move here from window.c.
6516 (record-window-buffer, unrecord-window-buffer)
6517 (set-window-buffer-start-and-point, switch-to-prev-buffer)
6518 (switch-to-next-buffer): New functions.
6519 (get-next-valid-buffer, last-buffer, next-buffer): Move here
6520 from simple.el. Call switch-to-next-buffer.
6521 (previous-buffer): Move here from simple.el.
6522 Call switch-to-prev-buffer.
6523 (bury-buffer): Move here from buffer.c. Switch to previous
6524 buffer when window cannot be deleted.
6525 (unbury-buffer): Move here from bindings.el.
6526 (ctl-x-map): Move binding for other-window from window.c to
6527 here.
6528 (read-buffer-to-switch, switch-to-buffer-other-window)
6529 (switch-to-buffer-other-frame): Move here from files.el.
6530 (normalize-buffer-to-switch-to): New functions.
6531 (switch-to-buffer): Move here from buffer.c.
6532 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
6533
6534 2011-06-10 Martin Rudalics <rudalics@gmx.at>
6535
6536 * window.el (window-min-height, window-min-width): Move here
6537 from window.c. Add defcustoms and rewrite doc-strings.
6538 (resize-mini-window, resize-window): New functions.
6539 (adjust-window-trailing-edge, enlarge-window, shrink-window):
6540 Move here from window.c.
6541 (maximize-window, minimize-window): New functions.
6542 (delete-window, delete-other-windows, split-window): Move here
6543 from window.c.
6544 (window-split-min-size): New function.
6545 (split-window-keep-point): Mention split-window-above-each-other
6546 instead of split-window-vertically.
6547 (split-window-above-each-other, split-window-vertically):
6548 Rename split-window-vertically to split-window-above-each-other
6549 and provide defalias for old definition.
6550 (split-window-side-by-side, split-window-horizontally):
6551 Rename split-window-horizontally to split-window-side-by-side
6552 and provide defalias for the old definition.
6553 (ctl-x-map): Move bindings for delete-window,
6554 delete-other-windows and enlarge-window here from window.c.
6555 Replace bindings for split-window-vertically and
6556 split-window-horizontally by bindings for
6557 split-window-above-each-other and split-window-side-by-side.
6558
6559 * cus-start.el (all): Remove entries for window-min-height and
6560 window-min-width. Add entries for window-splits and
6561 window-nest.
6562
6563 2011-06-09 Glenn Morris <rgm@gnu.org>
6564
6565 * calendar/appt.el (appt-mode-line): New function.
6566 (appt-check, appt-disp-window): Use it.
6567
6568 * files.el (hack-one-local-variable-eval-safep):
6569 Allow minor-modes with explicit +/-1 arguments.
6570
6571 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
6572
6573 * term/xterm.el (xterm): Add defgroup.
6574 (xterm-extra-capabilities): Add defcustom to supply known xterm
6575 capabilities, skip querying them, or query them (default).
6576 (terminal-init-xterm): Use it.
6577 (terminal-init-xterm-modify-other-keys): New function to set up
6578 modifyOtherKeys support to simplify `terminal-init-xterm'.
6579
6580 2011-06-09 Martin Rudalics <rudalics@gmx.at>
6581
6582 * window.el (resize-window-reset, resize-window-reset-1)
6583 (resize-subwindows-skip-p, resize-subwindows-normal)
6584 (resize-subwindows, resize-other-windows, resize-this-window)
6585 (resize-root-window, resize-root-window-vertically)
6586 (window-deletable-p, window-or-subwindow-p)
6587 (frame-root-window-p): New functions.
6588
6589 2011-06-09 Glenn Morris <rgm@gnu.org>
6590
6591 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
6592 (ange-ftp-get-files): Use it.
6593
6594 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
6595
6596 * mail/sendmail.el (mail-recover-1, mail-recover):
6597 * files.el (recover-file, recover-session):
6598 Handle dired-listing-switches not being just a single short option.
6599
6600 2011-06-09 Glenn Morris <rgm@gnu.org>
6601
6602 * calendar/appt.el (appt-display-message, appt-disp-window):
6603 Handle lists of appointments.
6604
6605 2011-06-08 Martin Rudalics <rudalics@gmx.at>
6606
6607 * window.el (one-window-p): Move down in code.
6608 Rewrite doc-string.
6609 (window-current-scroll-bars): Rewrite doc-string.
6610 Normalize live window argument.
6611 (walk-windows, get-window-with-predicate, count-windows):
6612 Rewrite doc-string. Use window-list-1.
6613 (window-in-direction-2, window-in-direction, get-mru-window):
6614 New functions.
6615
6616 2011-06-08 Reuben Thomas <rrt@sc3d.org>
6617
6618 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
6619 Doc fix (Bug#8713).
6620
6621 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
6622
6623 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
6624
6625 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
6626
6627 * loadhist.el (unload-feature-special-hooks):
6628 Add `comint-output-filter-functions'.
6629
6630 2011-06-08 Ivan Kanis <gnu@kanis.fr>
6631
6632 * calendar/appt.el (appt-check): Move some initializations into the let.
6633
6634 2011-06-08 Martin Rudalics <rudalics@gmx.at>
6635
6636 * window.el (window-height): Defalias to window-total-height.
6637 (window-width): Defalias to window-body-width.
6638
6639 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
6640
6641 * image-mode.el (image-toggle-animation): New command.
6642 (image-mode-map): Bind it to RET.
6643 (image-mode): Update message.
6644 (image-toggle-display-image): Avoid a spurious cache flush.
6645 (image-transform-rotation): Doc fix.
6646 (image-transform-properties): Return quickly in the normal case.
6647 (image-animate-loop): Rename from image-animate-max-time.
6648
6649 * image.el (image-animate-max-time): Move to image-mode.el.
6650 (create-animated-image): Remove unnecessary function.
6651 (image-animate): Rename from image-animate-start. New arg.
6652 (image-animate-stop): Remove; just use image-animate-timer.
6653 (image-animate-timer): Use car-safe.
6654 (image-animate-timeout): Rename argument.
6655
6656 2011-06-07 Martin Rudalics <rudalics@gmx.at>
6657
6658 * window.el (get-lru-window, get-largest-window): Move here from
6659 window.c. Rename first argument to ALL-FRAMES.
6660 Rephrase doc-strings.
6661 (get-buffer-window-list): Rewrite using window-list-1.
6662 Rephrase doc-string.
6663 (window-safe-min-height, window-safe-min-width): New constants.
6664 (window-size-ignore, window-min-size, window-min-size-1)
6665 (window-sizable, window-sizable-p, window-size-fixed-1)
6666 (window-size-fixed-p, window-min-delta-1, window-min-delta)
6667 (window-max-delta-1, window-max-delta, window-resizable)
6668 (window-resizable-p, window-total-height, window-total-width)
6669 (window-body-width): New functions.
6670 (window-full-height-p, window-full-width-p): Rewrite using
6671 window-total-size.
6672 (window-body-height): Rewrite using window-body-size.
6673
6674 2011-06-06 Martin Rudalics <rudalics@gmx.at>
6675
6676 * window.el (window-right, window-left, window-child)
6677 (window-child-count, window-last-child, window-any-p)
6678 (normalize-live-buffer, normalize-live-frame)
6679 (normalize-any-window, normalize-live-window)
6680 (window-iso-combination-p, window-iso-combined-p)
6681 (window-iso-combinations)
6682 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
6683 (windows-with-parameter, window-with-parameter)
6684 (window-atom-root, make-window-atom, window-atom-check-1)
6685 (window-atom-check, window-side-check, window-check):
6686 New functions.
6687 (ignore-window-parameters, window-sides, window-sides-vertical)
6688 (window-sides-slots): New variables.
6689 (window-size-fixed): Move down in code. Minor doc-string fix.
6690
6691 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
6692
6693 * comint.el (comint-dynamic-complete-as-filename)
6694 (comint-dynamic-complete-filename): Correctly call
6695 completion-in-region.
6696
6697 2011-06-05 Deniz Dogan <deniz@dogan.se>
6698
6699 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
6700 in last change.
6701
6702 2011-06-05 Deniz Dogan <deniz@dogan.se>
6703
6704 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
6705 (rcirc): Use it to prompt for encryption.
6706
6707 2011-06-05 Roland Winkler <winkler@gnu.org>
6708
6709 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
6710 (bibtex-search-entries): New command bound to C-c C-a.
6711 (bibtex-display-entries): New function.
6712
6713 2011-06-05 Roland Winkler <winkler@gnu.org>
6714
6715 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
6716 (bibtex-insert-kill): After yanking insert newline if necessary.
6717 (bibtex-initialize): Call bibtex-string-files-init only once.
6718 (bibtex-mode): Do not call easy-menu-add.
6719 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
6720 (bibtex-yank): Set arg properly if nil.
6721
6722 2011-06-05 Roland Winkler <winkler@gnu.org>
6723
6724 * textmodes/bibtex.el (bibtex-search-entry-globally):
6725 New variable.
6726 (bibtex-search-entry): Use it.
6727
6728 2011-06-05 Roland Winkler <winkler@gnu.org>
6729
6730 * textmodes/bibtex.el (bibtex-entry-format): New option
6731 sort-fields.
6732 (bibtex-format-entry, bibtex-reformat): Honor this option.
6733 (bibtex-parse-entry): Return fields in proper order.
6734
6735 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
6736
6737 * doc-view.el (doc-view-remove-if): Move computation of result out
6738 of `dolist' to silence misleading lexical-binding warning.
6739
6740 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
6741
6742 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
6743 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
6744
6745 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
6746
6747 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
6748 "SunOS 5.10".
6749
6750 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
6751
6752 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
6753 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
6754 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
6755 (tramp-parse-putty):
6756 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
6757 (tramp-completion-function-alist-ssh)
6758 (tramp-completion-function-alist-telnet)
6759 (tramp-completion-function-alist-su)
6760 (tramp-completion-function-alist-putty): Set `tramp-autoload'
6761 cookie.
6762
6763 * net/tramp-ftp.el:
6764 * net/tramp-sh.el:
6765 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
6766 load "tramp.el" `tramp-set-completion-function'.
6767
6768 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
6769
6770 * shell.el: Require and use pcomplete.
6771 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
6772 (shell-completion-vars): Set pcomplete-default-completion-function.
6773
6774 2011-06-04 Deniz Dogan <deniz@dogan.se>
6775
6776 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
6777 `memq' (Bug#8799).
6778
6779 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6780
6781 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
6782
6783 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
6784
6785 * bs.el (bs--mark-unmark, bs--nth-wrapper):
6786 * mpc.el (mpc-select-extend, mpc-songpointer-context):
6787 * vc/log-view.el (log-view-beginning-of-defun):
6788 * vc/smerge-mode.el (smerge-apply-resolution-patch)
6789 (smerge-refine-forward, smerge-refine-chopup-region):
6790 Silence warning for unused `dotimes' counter variables.
6791
6792 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6793
6794 * net/tramp.el (tramp-with-progress-reporter): Rename from
6795 with-progress-reporter. Use `declare'.
6796 * net/tramp-smb.el:
6797 * net/tramp-sh.el:
6798 * net/tramp-gvfs.el: Update all uses.
6799
6800 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
6801
6802 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
6803 buffer isn't killed before making it current.
6804
6805 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6806
6807 Silence various byte-compiler warnings.
6808 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
6809 `access-type' and new obsolescence format.
6810 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
6811 new format.
6812 (byte-compile-check-variable): New `access-type' argument.
6813 Only warn if the access-type is obsolete.
6814 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
6815 (byte-compile-variable-set): Adjust callers.
6816 * help-fns.el (describe-variable): Adjust to new obsolescence format.
6817 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
6818 setting it as obsolete.
6819 * simple.el (minibuffer-completing-symbol):
6820 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
6821 access as obsolete.
6822 * minibuffer.el (minibuffer-completing-file-name): Don't make it
6823 obsolete yet.
6824 * international/quail.el (quail-mouse-choose-completion): Remove unused
6825 code referring to obsolete var.
6826 (quail-choose-completion-string): Remove.
6827 * server.el (server-clients-with, server-kill-buffer-query-function)
6828 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
6829 * proced.el (proced-send-signal):
6830 * emacs-lisp/lisp.el (lisp-complete-symbol):
6831 Replace completion-annotate-function with completion-extra-properties.
6832
6833 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6834
6835 * simple.el (goto-line): Use read-number.
6836 (overriding-map-is-bound): Remove.
6837 (saved-overriding-map): Change default.
6838 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
6839 Take the map as argument.
6840 (universal-argument, negative-argument, digit-argument): Use it.
6841 (restore-overriding-map): Adjust.
6842 (do-auto-fill): Use fill-forward-paragraph.
6843 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
6844
6845 * minibuffer.el (minibuffer-inactive-mode-map): New var.
6846 (minibuffer-inactive-mode): New major mode.
6847 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
6848 the *Messages* buffer" hack.
6849 (mouse-popup-menubar): Don't burp if the event is a normal key.
6850
6851 Miscellaneous tweaks.
6852 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
6853 lexical scoping as in subr.el's dolist and dotimes.
6854 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
6855 Silence compiler warning.
6856 * thingatpt.el (forward-whitespace): Trivial coding style fix.
6857 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
6858 * international/ccl.el (ccl-compile): Trivial simplification.
6859 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
6860 * emacs-lisp/testcover.el (testcover-end): Remove spurious
6861 `printflag' argument.
6862 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
6863 Purecopy the whole obsolescence data.
6864
6865 2011-06-01 Leo Liu <sdl.web@gmail.com>
6866
6867 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
6868 improve doc-string as suggested by Marco Pessotto
6869 <melmothx@gmail.com>.
6870 (rcirc-print): Fix last change.
6871
6872 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6873
6874 * minibuffer.el (complete-with-action): Return nil for the metadata and
6875 boundaries of non-functional tables.
6876 (completion-table-dynamic): Return nil for the metadata.
6877 (completion-table-with-terminator): Add default case, using
6878 complete-with-action.
6879 (completion--metadata): New function.
6880 (completion-all-sorted-completions, minibuffer-completion-help): Use it
6881 to try and avoid pathological performance problems.
6882 (completion--embedded-envvar-table): Return `category' metadata.
6883
6884 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
6885
6886 * subr.el (process-alive-p): New tiny convenience function.
6887
6888 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6889
6890 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
6891 content but also its previous major mode.
6892
6893 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
6894
6895 * emacs-lisp/debug.el (debug): Restore the previous content of the
6896 *Backtrace* buffer when we exit with C-M-c.
6897
6898 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6899
6900 * minibuffer.el: Add metadata method to completion tables.
6901 (completion-category-overrides): New defcustom.
6902 (completion-metadata, completion--field-metadata)
6903 (completion-metadata-get, completion--styles)
6904 (completion--cycle-threshold): New functions.
6905 (completion-try-completion, completion-all-completions):
6906 Add `metadata' argument to choose completion-styles.
6907 (completion--do-completion): Use metadata to choose cycling.
6908 (completion-all-sorted-completions): Use metadata for sorting.
6909 Remove :completion-cycle-penalty which is not needed any more.
6910 (completion--try-word-completion): Add `metadata' argument.
6911 (minibuffer-completion-help): Check metadata for annotation function
6912 and sorting.
6913 (completion-file-name-table): Return `category' metadata.
6914 (minibuffer-completing-file-name): Make obsolete.
6915 * simple.el (minibuffer-completing-symbol): Make obsolete.
6916 * icomplete.el (icomplete-completions): Pass new `metadata' param to
6917 completion-try-completion.
6918
6919 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6920
6921 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
6922
6923 2011-05-30 Leo Liu <sdl.web@gmail.com>
6924
6925 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
6926 (rcirc-print): Decode all incoming messages (bug#8744).
6927 (rcirc-decode-coding-system): Allow value nil for automatic coding
6928 system detection.
6929
6930 2011-06-01 Glenn Morris <rgm@gnu.org>
6931
6932 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
6933
6934 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
6935
6936 * image.el (image-animate-max-time): Allow nil and t values.
6937 Default to nil.
6938 (create-animated-image): Doc fix.
6939 (image-animate-start): Remove second arg; just use
6940 image-animate-max-time.
6941 (image-animate-timeout): Doc fix. Args changed.
6942
6943 * image-mode.el (image-toggle-display-image): Ensure that the
6944 image spec passed to the animate timer is the same object as in
6945 the buffer's display property (Bug#6981).
6946 (image-transform-properties): Doc fix.
6947
6948 * image.el (image-animate-max-time): Default to nil.
6949
6950 2011-05-29 Martin Rudalics <rudalics@gmx.at>
6951
6952 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
6953 entire buffer list (Bug#8184).
6954
6955 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
6956
6957 * image.el (imagemagick-types-inhibit)
6958 (imagemagick-register-types): Doc fix.
6959
6960 2011-05-29 Deniz Dogan <deniz@dogan.se>
6961
6962 * net/rcirc.el (rcirc): Use the user's stored encryption method by
6963 default.
6964
6965 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
6966
6967 * select.el: Don't perform clipboard-manager saving in hooks;
6968 leave the hooks empty.
6969
6970 2011-05-28 Leo Liu <sdl.web@gmail.com>
6971
6972 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
6973 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
6974 (occur-edit-mode): New major mode (Bug#8463).
6975 (occur-after-change-function): New function.
6976 (occur-engine): Give Occur tags a read-only property.
6977
6978 2011-05-28 Kevin Ryde <user42@zip.com.au>
6979
6980 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
6981
6982 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
6983
6984 * bindings.el (help-echo): Make the initial non-indicator dash
6985 empty on graphical terminals (Bug#7295).
6986
6987 * files.el (auto-mode-alist): Move config rule after the
6988 in-stripping one (Bug#8547).
6989
6990 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
6991
6992 * startup.el (normal-splash-screen): Remove gratuitous mode-line
6993 setting (Bug#8740).
6994
6995 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
6996
6997 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
6998 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
6999 (Bug#8539).
7000
7001 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
7002
7003 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
7004
7005 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
7006
7007 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
7008 (hs-hide-block-at-point, hs-find-block-beginning)
7009 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
7010 (Bug#8279).
7011
7012 2011-05-28 Glenn Morris <rgm@gnu.org>
7013
7014 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
7015
7016 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
7017
7018 * help-fns.el (describe-function-1): If the function is a derived
7019 major mode, print the parent mode.
7020
7021 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
7022 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
7023
7024 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
7025
7026 * minibuffer.el (completion--capf-wrapper): Check applicability before
7027 returning non-nil for non-exclusive completion data.
7028 * progmodes/etags.el (tags-completion-at-point-function):
7029 * info-look.el (info-lookup-completions-at-point): Mark as
7030 non-exclusive.
7031 (info-complete): Adjust accordingly.
7032
7033 * info-look.el: Convert to lexical-binding and completion-at-point.
7034 (info-lookup-completions-at-point): New function.
7035 (info-complete): Use it and completion-in-region.
7036
7037 2011-05-28 Drew Adams <drew.adams@oracle.com>
7038
7039 * isearch.el: Let M-e start with point at the first mismatched char.
7040 (isearch-fail-pos): New function.
7041 (isearch-edit-string): Use it.
7042
7043 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
7044
7045 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
7046
7047 2009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
7048
7049 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
7050 traversal functions for avl-trees.
7051 (avl-tree--stack): New struct.
7052 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
7053 (avl-tree-enter): Add optional `updatefun' arg.
7054 (avl-tree--do-enter): Add optional `updatefun' arg.
7055 Change return value.
7056 (avl-tree-delete): Add optional `test' and `nilflag' args.
7057 (avl-tree--do-delete): Add `test' and `nilflag' args.
7058 Change return value.
7059 (avl-tree-member): Add optional `nilflag'
7060 (avl-tree-member-p): New function.
7061 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
7062 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
7063 (avl-tree-stack-empty-p): New functions.
7064
7065 2009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
7066
7067 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
7068 avl-tree--del-balance1 and make it work both ways.
7069 (avl-tree--del-balance2): Remove.
7070 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
7071 make it work both ways.
7072 (avl-tree--enter-balance2): Remove.
7073 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
7074 New macros.
7075 (avl-tree--mapc, avl-tree-map): Add direction argument.
7076
7077 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7078
7079 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
7080
7081 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
7082
7083 * select.el: Support clipboard managers with built-in function
7084 x-clipboard-manager-save, via delete-frame-functions and
7085 kill-emacs-hook.
7086 (xselect-convert-to-targets): Add MULTIPLE target to list.
7087 (xselect-convert-to-save-targets): New function.
7088
7089 2011-05-27 Kenichi Handa <handa@m17n.org>
7090
7091 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
7092 let-binding rfc2047-encode-encoded-words to nil.
7093
7094 2011-05-27 Glenn Morris <rgm@gnu.org>
7095
7096 * mail/emacsbug.el: Don't require url-util.
7097
7098 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
7099
7100 * files.el (set-auto-mode):
7101 Also respect mode: entries at the end of the file. (Bug#8586)
7102
7103 2011-05-26 Glenn Morris <rgm@gnu.org>
7104
7105 * files.el (hack-local-variables-prop-line, hack-local-variables):
7106 Downcase mode names, as seems to be traditional.
7107 (hack-local-variables, hack-local-variables-apply): Doc fixes.
7108
7109 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
7110 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
7111
7112 2011-05-25 Julien Danjou <julien@danjou.info>
7113
7114 * textmodes/rst.el (rst-define-level-faces): Do not define face
7115 symbol if it is already defined.
7116
7117 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
7118
7119 * play/5x5.el (5x5-new-game, 5x5-randomize):
7120 Reset 5x5-solver-output to nil when a new grid is cast.
7121 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
7122 these debugging traces, as defmacro breaks the compiled code.
7123
7124 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
7125
7126 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
7127
7128 2011-05-24 Leo Liu <sdl.web@gmail.com>
7129
7130 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
7131 (vc-bzr-sha1): Adapt.
7132
7133 * sha1.el: Remove. Function `sha1' is now builtin.
7134
7135 * bindings.el: Provide sha1 feature.
7136
7137 2011-05-24 Kenichi Handa <handa@m17n.org>
7138
7139 * mail/sendmail.el: Require `rfc2047'.
7140 (mail-insert-from-field): Do not perform RFC2047 encoding.
7141 (mail-encode-header): New function.
7142 (sendmail-send-it): Set buffer-file-coding-system of the work
7143 buffer to the return value of select-message-coding-system.
7144 Call mail-encode-header.
7145
7146 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
7147
7148 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7149
7150 * mail/supercite.el (sc-default-cite-frame):
7151 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7152
7153 2011-05-24 Glenn Morris <rgm@gnu.org>
7154
7155 * progmodes/python.el (brm-menu): Declare.
7156
7157 * emulation/viper.el (viper-set-hooks): Declare.
7158
7159 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
7160 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
7161 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
7162 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
7163 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
7164 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
7165
7166 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
7167
7168 Add an :exit-function for completion-at-point.
7169
7170 * minibuffer.el (completion--done): New fun.
7171 (completion--do-completion): Use it. New arg `expect-exact'.
7172 (minibuffer-complete, minibuffer-complete-word): Don't output message,
7173 since completion--do-completion does it for us now.
7174 (minibuffer-force-complete): Use completion--done and
7175 completion--replace. Handle sole-completion case with more care.
7176 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
7177 (completion-extra-properties): New var.
7178 (completion-annotate-function): Make obsolete.
7179 (minibuffer-completion-help): Adjust accordingly.
7180 Use completion-list-insert-choice-function.
7181 (completion-at-point, completion-help-at-point):
7182 Bind completion-extra-properties.
7183 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
7184 * simple.el (completion-list-insert-choice-function): New var.
7185 (completion-setup-function): Preserve it.
7186 (choose-completion): Pay attention to it, shuffle the code a bit.
7187 (choose-completion-string): New arg `insert-function'.
7188
7189 * textmodes/bibtex.el: Convert to lexical binding.
7190 (bibtex-mode-map): Use completion-at-point.
7191 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
7192 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
7193 (bibtex-complete): Define as obsolete alias.
7194 (bibtex-complete-internal): Remove.
7195 (bibtex-format-entry): Remove unused sub-group in regexp.
7196 * shell.el (shell--command-completion-data)
7197 (shell-environment-variable-completion):
7198 * pcomplete.el (pcomplete-completions-at-point):
7199 * comint.el (comint--complete-file-name-data): Use :exit-function
7200 instead of completion-table-with-terminator so it also works for
7201 choose-completion.
7202
7203 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
7204
7205 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
7206
7207 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
7208 (bug#8710).
7209
7210 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
7211
7212 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
7213
7214 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
7215 customization variable and implement: If non-nil, auto-fill will
7216 be inhibited while on topic's header line.
7217
7218 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
7219
7220 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
7221 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
7222 always have a solution in grid size = 5 cases.
7223 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
7224 (5x5-solver-output, 5x5-log-buffer): New vars.
7225 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
7226 Make these variables buffer local to achieve 5x5 multi-session-ness.
7227 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
7228 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
7229 (5x5-solve-suggest): New funs.
7230 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
7231 randomize a grid so that we ensure that there is always a solution.
7232 (5x5-make-random-grid): Allow other movement than flipping.
7233
7234 2011-05-23 Kevin Ryde <user42@zip.com.au>
7235
7236 * emacs-lisp/advice.el (ad-read-advised-function):
7237 Use `function-called-at-point' as the default, if it has
7238 advice and passes PREDICATE.
7239
7240 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
7241
7242 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
7243 byte-compile-lambda if it's actually a lambda.
7244
7245 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
7246 Fix function quoting. Use backquote better.
7247
7248 2011-05-22 Yuanle Song <sylecn@gmail.com>
7249
7250 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
7251 matching (Bug#8516).
7252
7253 2011-01-22 Jari Aalto <jari.aalto@cante.net>
7254
7255 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
7256 different face (Bug#8178).
7257
7258 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
7259
7260 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
7261 defface (Bug#8144).
7262
7263 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
7264
7265 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
7266 funcall as well (bug#8712). Warn when performing those conversions.
7267 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
7268
7269 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
7270
7271 2011-05-22 Glenn Morris <rgm@gnu.org>
7272
7273 * files.el (hack-local-variables-prop-line): Small simplifications.
7274 (hack-local-variables, hack-local-variables-prop-line):
7275 If MODE-ONLY, return the mode, rather than just `t'.
7276
7277 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7278
7279 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
7280
7281 2011-05-21 Glenn Morris <rgm@gnu.org>
7282
7283 * files.el (hack-local-variables-prop-line, hack-local-variables):
7284 If only interested in the mode, don't bother doing the other stuff.
7285
7286 * image-mode.el (image-after-revert-hook):
7287 Redraw all frames on which the image is visible. (Bug#8567)
7288
7289 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
7290
7291 * wid-edit.el (widget-checklist-match-inline):
7292 Fix 2011-04-19 change. (Bug#8649)
7293
7294 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
7295
7296 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
7297 Also allow singlespace after single-letter capitals followed by a dot.
7298
7299 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
7300 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
7301
7302 2011-05-20 Nix <nix@esperi.org.uk>
7303
7304 * files.el (basic-save-buffer-2):
7305 Fix handling of break-hardlink-on-save with non-existent files.
7306
7307 2011-05-19 Deniz Dogan <deniz@dogan.se>
7308
7309 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
7310 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
7311
7312 2011-05-19 Glenn Morris <rgm@gnu.org>
7313
7314 * progmodes/f90.el (f90-type-def-re):
7315 Handle "type, bind(c)". (Bug#8691)
7316
7317 * emacs-lisp/autoload.el (batch-update-autoloads):
7318 Set autoload-excludes by parsing loadup.el rather than Makefiles.
7319
7320 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
7321
7322 * net/tramp.el (tramp-process-actions): Set "first-password-request"
7323 property for the correct connection in case of multihops.
7324
7325 2011-05-18 Glenn Morris <rgm@gnu.org>
7326
7327 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
7328 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
7329
7330 Rationalize calendar handling of day and month abbrev-arrays.
7331 * calendar/calendar.el (calendar-customized-p): New function.
7332 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
7333 (calendar-day-name-array, calendar-month-name-array): Doc fix.
7334 Add :set function.
7335 (calendar-abbrev-length, calendar-day-abbrev-array)
7336 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
7337 (calendar-day-abbrev-array, calendar-month-abbrev-array):
7338 Elements may no longer be nil.
7339 (calendar-day-name, calendar-month-name):
7340 Update for changed nature of abbrev arrays.
7341 * calendar/diary-lib.el (diary-name-pattern):
7342 Update for changed nature of abbrev arrays.
7343 (diary-mark-entries-1): Update calendar-make-alist calls.
7344 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
7345 * calendar/cal-html.el (cal-html-day-abbrev-array):
7346 Simply inherit from calendar-day-abbrev-array.
7347
7348 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7349
7350 * progmodes/grep.el (grep-mode): Disable default
7351 compilation-directory-matcher setting (bug#8684).
7352
7353 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
7354
7355 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
7356 instead of "head" and "tail". There were problems with SunOS 5.9,
7357 and it performs better.
7358
7359 2011-05-17 Glenn Morris <rgm@gnu.org>
7360
7361 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
7362
7363 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
7364 Replace obsolete function.
7365
7366 * shell.el (pcomplete-parse-arguments-function): Declare.
7367
7368 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
7369 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
7370 (appt-check): Doc fixes.
7371 (appt-disp-window-function, appt-delete-window-function):
7372 Remove needless special case in custom :type.
7373 (appt-display-count): Default to 0, not nil.
7374 (appt-check): Reset appt-display-count to 0, not nil.
7375
7376 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
7377
7378 * progmodes/python.el (python-font-lock-keywords):
7379 Add the Python 3.X keyword "nonlocal" (bug#8639).
7380
7381 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
7382
7383 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
7384
7385 2011-05-16 Kevin Ryde <user42@zip.com.au>
7386
7387 * info-look.el (makefile-automake-mode): New setups, looking in
7388 automake manual, then makefile-mode.
7389 (makefile-mode): Remove automake manual, have it just in
7390 makefile-automake-mode since there's various things different or
7391 not relevant to plain make.
7392 (makefile-mode): Remove "other-modes" non-existent automake-mode,
7393 believe a hypothetical automake-mode would go to makefile-mode,
7394 not the other way around.
7395
7396 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
7397
7398 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
7399 hunk-end tags (Bug#8672).
7400
7401 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
7402 vc-annotate-show-diff-revision-at-line (Bug#8671).
7403
7404 2011-05-14 Glenn Morris <rgm@gnu.org>
7405
7406 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
7407 in the middle of an existing one with multiple authors. (Bug#8645)
7408 (change-log-font-lock-keywords): Also handle multiple author lines
7409 with leading tabs. (Bug#8644)
7410
7411 * calendar/appt.el (appt-check): Rename some local variables.
7412 Some simplification/reordering.
7413
7414 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
7415 (feedmail-sendmail-f-doesnt-sell-me-out)
7416 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
7417 (feedmail-debug-sit-for, feedmail-queue-express-hook)
7418 (feedmail-queue-runner-message-sender): Set :version.
7419 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
7420 (bbdb-dwim-net-address, vm-mail): Declare.
7421 (feedmail-binmail-gnulinuxish-template):
7422 Rename from feedmail-binmail-linuxish-template.
7423 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
7424 Use insert-buffer-substring.
7425
7426 2011-05-14 Bill Carpenter <bill@carpenter.org>
7427
7428 * mail/feedmail.el (feedmail-patch-level): Increase.
7429 (feedmail-debug): New custom group.
7430 (feedmail-confirm-outgoing-timeout)
7431 (feedmail-sendmail-f-doesnt-sell-me-out)
7432 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
7433 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
7434 (feedmail-sender-line, feedmail-from-line)
7435 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
7436 (feedmail-spray-this-address)
7437 (feedmail-spray-address-fiddle-plex-list)
7438 (feedmail-queue-use-send-time-for-date)
7439 (feedmail-queue-use-send-time-for-message-id)
7440 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
7441 (feedmail-buffer-eating-function):
7442 Doc fixes.
7443 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
7444 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
7445 (feedmail-message-action-scroll-down): New functions.
7446 (feedmail-queue-directory, feedmail-queue-draft-directory):
7447 Use expand-file-name.
7448 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
7449 Remove C-v help entry.
7450 (feedmail-queue-buffer-file-name): New variable.
7451 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
7452 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
7453 (feedmail-message-action-send-strong, feedmail-message-action-edit)
7454 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
7455 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
7456 (feedmail-message-action-toggle-spray)
7457 (feedmail-run-the-queue-no-prompts)
7458 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
7459 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
7460 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
7461 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
7462 (feedmail-envelope-deducer, feedmail-fiddle-from)
7463 (feedmail-fiddle-sender, feedmail-default-date-generator)
7464 (feedmail-fiddle-date, feedmail-fiddle-message-id)
7465 (feedmail-fiddle-spray-address)
7466 (feedmail-fiddle-list-of-spray-fiddle-plexes)
7467 (feedmail-fiddle-list-of-fiddle-plexes)
7468 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
7469 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
7470 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
7471 Change default. Doc fix.
7472 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
7473 (feedmail-binmail-linuxish-template): New constant.
7474 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
7475 Respect feedmail-sendmail-f-doesnt-sell-me-out.
7476 (feedmail-send-it): Add debug call.
7477 Use feedmail-queue-buffer-file-name, and
7478 feedmail-send-it-immediately-wrapper.
7479 (feedmail-message-action-send): Add debug call.
7480 Use feedmail-send-it-immediately-wrapper.
7481 (feedmail-queue-express-to-queue): Add debug call.
7482 Run feedmail-queue-express-hook.
7483 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
7484 (feedmail-message-action-help-blat):
7485 Rename from feedmail-queue-send-edit-prompt-help-first.
7486 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
7487 Check line-endings. Handle errors better.
7488 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
7489 Doc fix. Add debug call.
7490 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
7491 Use feedmail-queue-send-edit-prompt-inner.
7492 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
7493 (feedmail-queue-send-edit-prompt-inner): New function, extracted
7494 from feedmail-queue-send-edit-prompt.
7495 (feedmail-queue-send-edit-prompt-help)
7496 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
7497 (feedmail-tidy-up-slug): Add debug call.
7498 Respect feedmail-queue-slug-suspect-regexp.
7499 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
7500 (feedmail-dump-message-to-queue): Add debug call.
7501 Expand queue-directory.
7502 (feedmail-dump-message-to-queue): Change message slightly.
7503 Use feedmail-say-chatter.
7504 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
7505 (feedmail-send-it-immediately-wrapper): New function.
7506 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
7507 Insert empty string rather than newline. Handle full-frame case.
7508 Use catch/throw. Use feedmail-say-chatter.
7509 (feedmail-fiddle-from): Try mail-host-address.
7510 (feedmail-default-message-id-generator): Doc fix.
7511 Bind system-time-locale. Handle missing end.
7512 (feedmail-fiddle-x-mailer): Add debug call.
7513 Handle feedmail-x-mailer-line being nil.
7514 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
7515 Add debug call. Use buffer-substring-no-properties.
7516 (feedmail-say-debug, feedmail-say-chatter): New functions.
7517 (feedmail-find-eoh): Give an explicit error.
7518
7519 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
7520
7521 * net/newst-treeview.el (newsticker-treeview-face): Change default
7522 family from helvetica to sans.
7523 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
7524 etc/images/newsticker.
7525
7526 * net/newst-reader.el (newsticker-feed-face): Change default
7527 family from helvetica to sans.
7528
7529 * net/newst-plainview.el (newsticker-new-item-face)
7530 (newsticker-old-item-face, newsticker-immortal-item-face)
7531 (newsticker-obsolete-item-face, newsticker-date-face)
7532 (newsticker-statistics-face): Change default family from
7533 helvetica to sans.
7534 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
7535 etc/images/newsticker.
7536
7537 * net/newst-backend.el (newsticker--do-run-auto-mark-filter),
7538 (newsticker--process-auto-mark-filter-match): : Tell user about
7539 auto-marking.
7540
7541 2011-05-13 Didier Verna <didier@xemacs.org>
7542
7543 Common Lisp indentation improvements on defmethod and lambda-lists.
7544 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
7545 TODO entries.
7546 (lisp-lambda-list-keyword-parameter-indentation)
7547 (lisp-lambda-list-keyword-parameter-alignment)
7548 (lisp-lambda-list-keyword-alignment): New customizable user options.
7549 (lisp-indent-defun-method): Improve docstring.
7550 (extended-loop-p): Fix comment.
7551 (lisp-indent-lambda-list-keywords-regexp): New variable.
7552 (lisp-indent-lambda-list): New function.
7553 (lisp-indent-259): Use it.
7554 (lisp-indent-defmethod): Support for more than one
7555 method qualifier and properly indent methods lambda-lists.
7556 (defgeneric): Provide a missing common-lisp-indent-function property.
7557
7558 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7559
7560 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
7561 bounds for the empty string (bug#8667).
7562
7563 2011-05-13 Glenn Morris <rgm@gnu.org>
7564
7565 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
7566
7567 * mail/sendmail.el (sendmail-program): Try executable-find first.
7568 (sendmail-send-it): `sendmail-program' cannot be unbound.
7569
7570 * calendar/appt.el (appt-make-list): Simplify.
7571 (appt-time-msg-list): Doc fix.
7572 (appt-check): Change mode-line message at the time of the appointment.
7573
7574 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
7575
7576 * progmodes/ld-script.el (ld-script-keywords)
7577 (ld-script-builtins): Update keywords list.
7578
7579 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
7580
7581 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
7582
7583 * shell.el (shell-completion-vars): New function.
7584 (shell-mode):
7585 * simple.el (read-shell-command): Use it.
7586 (blink-matching-open): No need for " [...]" in minibuffer-message.
7587
7588 2011-05-12 Glenn Morris <rgm@gnu.org>
7589
7590 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
7591 (appt-check): Simplify.
7592
7593 2011-05-12 Eli Zaretskii <eliz@gnu.org>
7594
7595 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
7596 literal "/dev/null".
7597
7598 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
7599
7600 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
7601 Fix typo.
7602
7603 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
7604
7605 * progmodes/which-func.el (which-function):
7606 Use add-log-current-defun instead of add-log-current-defun-function,
7607 which might not be defined (Bug#8260).
7608
7609 2011-05-12 Glenn Morris <rgm@gnu.org>
7610
7611 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
7612 Let byte-compile-initial-macro-environment always take precedence.
7613
7614 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
7615
7616 * net/rcirc.el: Add support for SSL/TLS connections.
7617 (rcirc-server-alist): New field `encryption'.
7618 (rcirc): Check `encryption' settings.
7619 (rcirc-connect): New arg `encryption'. Use open-network-stream.
7620 Merge make-local-variable into `set'.
7621 (rcirc--connection-open-p): New function.
7622 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
7623 the process is not a network process (e.g. running gnutls-cli).
7624 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
7625 Make rcirc-(en|de)code-coding-system local here.
7626 (rcirc-mode): Merge make-local-variable into `set'.
7627 (rcirc-parent-buffer): Make permanent buffer-local.
7628 (rcirc-multiline-minor-mode): Don't do it here.
7629 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
7630 there's no server buffer.
7631
7632 2011-05-11 Glenn Morris <rgm@gnu.org>
7633
7634 * newcomment.el (comment-kill): Prefix "unused" local.
7635
7636 * term/w32console.el (get-screen-color): Declare.
7637
7638 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
7639 Handle symbol elements of byte-compile-initial-macro-environment.
7640
7641 2011-05-10 Leo Liu <sdl.web@gmail.com>
7642
7643 * bookmark.el (bookmark-bmenu-mode-map):
7644 Bind bookmark-bmenu-search to `/'.
7645
7646 * mail/footnote.el: Convert to utf-8 encoding.
7647 (footnote-unicode-string, footnote-unicode-regexp): New variable.
7648 (Footnote-unicode): New function.
7649 (footnote-style-alist): Add unicode style to the list.
7650 (footnote-style): Doc fix.
7651
7652 2011-05-10 Jim Meyering <meyering@redhat.com>
7653
7654 Fix doubled-word typos.
7655 * international/quail.el (quail-insert-kbd-layout): and and -> and
7656 * kermit.el: and and -> and
7657 * net/ldap.el (ldap-search-internal): to to -> to
7658 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
7659 * progmodes/js.el (js-mode): and and -> and
7660 * textmodes/artist.el (artist-move-to-xy): at at -> at
7661 (artist-draw-region-trim-line-endings): if if -> if
7662 And Safetyc -> Safety.
7663 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
7664
7665 2011-05-10 Glenn Morris <rgm@gnu.org>
7666 Stefan Monnier <monnier@iro.umontreal.ca>
7667
7668 * files.el (hack-one-local-variable-eval-safep):
7669 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
7670
7671 2011-05-10 Glenn Morris <rgm@gnu.org>
7672
7673 * calendar/diary-lib.el (diary-list-entries-hook)
7674 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
7675 (diary-nongregorian-marking-hook, diary-list-entries)
7676 (diary-include-other-diary-files, diary-mark-entries)
7677 (diary-mark-included-diary-files): Doc fixes.
7678
7679 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
7680
7681 * misc.el: Require tabulated-list.el during compilation.
7682
7683 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
7684
7685 * progmodes/compile.el (compilation-start):
7686 Run compilation-filter-hook for the async case too.
7687 (compilation-filter-hook): Doc fix.
7688
7689 2011-05-09 Deniz Dogan <deniz@dogan.se>
7690
7691 * wdired.el: Remove outdated installation comment. Fix usage
7692 comment.
7693
7694 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
7695
7696 * misc.el: Implement new command `list-dynamic-libraries'.
7697 (list-dynamic-libraries--loaded-only-p): New variable.
7698 (list-dynamic-libraries--refresh): New function.
7699 (list-dynamic-libraries): New command.
7700
7701 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
7702
7703 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7704 Fix the ant regexp to handle end-line and end-column info from jikes.
7705 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
7706 higher priority to avoid clobbering by gnu.
7707
7708 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
7709
7710 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
7711 if the face has existing theme settings (Bug#8454).
7712
7713 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
7714
7715 * progmodes/perl-mode.el (perl-imenu-generic-expression):
7716 Only match variables declared via `my' or `our' (Bug#8261).
7717
7718 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
7719 special file names `.' and `..' (Bug#8259).
7720
7721 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
7722
7723 * progmodes/grep.el (grep-mode-font-lock-keywords):
7724 Remove buffer-changing entries.
7725 (grep-filter): New function.
7726 (grep-mode): Add it to compilation-filter-hook.
7727
7728 * progmodes/compile.el (compilation-filter-hook)
7729 (compilation-filter-start): New defvars.
7730 (compilation-filter): Call compilation-filter-hook prior to
7731 updating the process mark.
7732
7733 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7734
7735 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
7736
7737 2011-05-07 Eli Zaretskii <eliz@gnu.org>
7738
7739 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
7740 mailclient-send-it even if window-system is nil. (Bug#8595)
7741
7742 * term/w32console.el (terminal-init-w32console):
7743 Call get-screen-color and use its output to set the frame
7744 background-mode. (Bug#8597)
7745
7746 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7747
7748 Make bytecomp.el understand that defmethod defines funs (bug#8631).
7749 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
7750 New functions.
7751 (defgeneric, eieio--defmethod): Use them.
7752 (eieio-defgeneric): Remove.
7753 (defmethod): Call defgeneric in a way visible to the byte-compiler.
7754
7755 2011-05-07 Glenn Morris <rgm@gnu.org>
7756
7757 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
7758 Use let rather than let*.
7759 (timeclock-find-discrep): Remove unused local.
7760
7761 * calendar/diary-lib.el (diary-comment-start): Doc fix.
7762
7763 * calendar/appt.el (appt-time-msg-list): Doc fix.
7764
7765 2011-05-06 Noah Friedman <friedman@splode.com>
7766
7767 * apropos.el (apropos-print-doc): Only use
7768 emacs-lisp-docstring-fill-column when it is bound to an integer,
7769 per that variable's documentation.
7770
7771 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7772
7773 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
7774 and warnings are not silently discarded (e.g. use -d instead of -P).
7775
7776 2011-05-06 Glenn Morris <rgm@gnu.org>
7777
7778 * calendar/appt.el (appt-message-warning-time): Doc fix.
7779 (appt-warning-time-regexp): New option.
7780 (appt-make-list): Respect appt-message-warning-time.
7781
7782 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
7783 New options.
7784 (diary-add-to-list): Strip comments from the displayed string.
7785 (diary-mode): Set comment-start and comment-end.
7786
7787 * vc/diff-mode.el (smerge-refine-subst): Declare.
7788 (diff-refine-hunk): Don't require smerge-mode when compiling.
7789
7790 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
7791
7792 * simple.el (list-processes): Return nil as the docstring says.
7793
7794 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
7795
7796 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
7797 to "".
7798 (ange-ftp-write-region, ange-ftp-insert-file-contents)
7799 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
7800 determining of binary transfer. (Bug#7383)
7801
7802 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
7803
7804 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7805 Fix port computation bug. (Bug#8618)
7806
7807 2011-05-05 Glenn Morris <rgm@gnu.org>
7808
7809 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
7810
7811 * simple.el (shell-dynamic-complete-functions)
7812 (comint-dynamic-complete-functions): Declare.
7813
7814 * net/network-stream.el (gnutls-negotiate):
7815 * simple.el (tabulated-list-print): Fix declarations.
7816
7817 * progmodes/gud.el (syntax-symbol, syntax-point):
7818 Remove unnecessary and incorrect declarations.
7819
7820 * emacs-lisp/check-declare.el (check-declare-scan):
7821 Handle byte-compile-initial-macro-environment in bytecomp.el
7822
7823 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7824
7825 Fix earlier half-done eieio-defmethod change (bug#8338).
7826 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
7827 Streamline and change calling convention.
7828 (defmethod): Adjust accordingly and simplify.
7829 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
7830 new eieio--defmethod.
7831 (slot-boundp): Minor CSE simplification.
7832
7833 2011-05-05 Milan Zamazal <pdm@zamazal.org>
7834
7835 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
7836 (glasses-make-readable): Use glasses-separate-capital-groups.
7837
7838 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
7839
7840 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
7841 (warning-series): Doc fix.
7842 (display-warning): Don't try to create the buffer if we just found it.
7843
7844 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
7845
7846 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
7847 (autoload-find-generated-file): New function.
7848 (generate-file-autoloads): Bind generated-autoload-file to
7849 buffer-file-name.
7850 (update-file-autoloads, update-directory-autoloads):
7851 Use autoload-find-generated-file. If called interactively, prompt for
7852 output file (Bug#7989).
7853 (batch-update-autoloads): Doc fix.
7854
7855 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
7856
7857 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
7858
7859 2011-05-04 Glenn Morris <rgm@gnu.org>
7860
7861 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
7862 function, so it follows changes in calendar-date-style.
7863 (diary-fancy-date-matcher): New function.
7864 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
7865 (diary-fancy-font-lock-fontify-region-function):
7866 Use diary-fancy-date-pattern as a function.
7867
7868 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
7869 non-numbers for `year' etc pseudo-variables. (Bug#8583)
7870
7871 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
7872
7873 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
7874 instead of positional arguments. Allow :keylist and :crlfiles
7875 arguments.
7876 (open-gnutls-stream): Call it.
7877
7878 * net/network-stream.el (network-stream-open-starttls): Adjust to
7879 call `gnutls-negotiate' with :process and :hostname arguments.
7880
7881 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7882
7883 * minibuffer.el (completion--message): New function.
7884 (completion--do-completion, minibuffer-complete)
7885 (minibuffer-force-complete, minibuffer-complete-word): Use it.
7886 (completion--do-completion): Don't ignore completion-auto-help when in
7887 icomplete-mode.
7888
7889 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
7890 internal encoding (e.g. tibetan zero is not whitespace).
7891 (global-whitespace-mode): Prefer save-current-buffer.
7892 (whitespace-trailing-regexp): Remove useless save-match-data.
7893 (whitespace-empty-at-bob-regexp): Minor simplification.
7894
7895 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
7896
7897 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
7898
7899 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7900
7901 * textmodes/ispell.el (ispell-add-per-file-word-list):
7902 Use `concat' to create string for insertion.
7903
7904 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7905
7906 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
7907 Avoid open-line which runs post-self-insert-hook.
7908 (bibtex-fill-entry): Remove unused `end' var.
7909
7910 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
7911
7912 * textmodes/ispell.el (ispell-add-per-file-word-list):
7913 Protect against `nil' value of `comment-start' (Bug#8579).
7914
7915 2011-05-03 Leo Liu <sdl.web@gmail.com>
7916
7917 * isearch.el (isearch-yank-pop): New command.
7918 (isearch-mode-map): Bind it to `M-y'.
7919 (isearch-forward): Mention it.
7920
7921 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7922
7923 * simple.el (minibuffer-complete-shell-command): Remove.
7924 (minibuffer-local-shell-command-map): Use completion-at-point.
7925 (read-shell-command): Setup completion vars here instead.
7926 (read-expression-map): Bind TAB to symbol completion.
7927
7928 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
7929 error directly rather via storing it into `results'.
7930
7931 2011-05-02 Leo Liu <sdl.web@gmail.com>
7932
7933 * vc/diff.el: Fix description.
7934
7935 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
7936
7937 * server.el (server-eval-at): New function.
7938
7939 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
7940
7941 * net/network-stream.el (open-network-stream): Take a :nowait
7942 parameter and pass it on to `make-network-process'.
7943 (network-stream-open-plain): Ditto.
7944
7945 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
7946
7947 * faces.el (face-spec-set-match-display): Don't match toolkit
7948 options on terminal frames.
7949
7950 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
7951
7952 * progmodes/pascal.el: Use lexical binding.
7953 (pascal-mode-map): Remove author preferences.
7954
7955 * pcomplete.el (pcomplete-std-complete): Don't abuse
7956 completion-at-point.
7957
7958 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
7959
7960 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
7961 removing code that has been dead since 1991 or so.
7962
7963 * startup.el (command-line): When warning about "_emacs", use a
7964 delayed warning to allow the user to filter it out.
7965
7966 2011-04-28 Deniz Dogan <deniz@dogan.se>
7967
7968 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
7969 user has not joined.
7970
7971 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7972
7973 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
7974 aren't any completions at point.
7975
7976 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
7977
7978 * subr.el (display-delayed-warnings): New function.
7979 (delayed-warnings-hook): New variable.
7980
7981 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7982
7983 * minibuffer.el (completion-at-point, completion-help-at-point):
7984 Don't presume that a given completion-at-point-function will always
7985 use the same calling convention.
7986
7987 * pcomplete.el (pcomplete-completions-at-point):
7988 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
7989 pcomplete-seen is non-nil.
7990 (pcomplete-comint-setup): Also recognize the new comint/shell
7991 completion functions.
7992 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
7993 pcomplete-seen is non-nil.
7994
7995 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
7996
7997 * calendar/icalendar.el (diary-lib): Add require statement.
7998 (icalendar--create-uid): Read out a uid from a text-property on
7999 the first character in the entry. This allows for code to add its
8000 own uid to the entry.
8001 (icalendar--convert-float-to-ical): Add export of
8002 `diary-float'-entries save for those with the optional DAY
8003 argument.
8004
8005 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
8006
8007 * subr.el (shell-quote-argument): Use alternate escaping strategy
8008 when we spot a variable reference in a string.
8009
8010 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8011
8012 * cus-start.el (all): Define customization for debug-on-event.
8013
8014 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8015
8016 * subr.el (shell-quote-argument): Escape correctly under Windows.
8017
8018 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8019
8020 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
8021
8022 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
8023
8024 * net/tramp.el (tramp-process-actions): Add POS argument.
8025 Delete region between POS and (pos).
8026
8027 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
8028 Use `nil' position in `tramp-process-actions' call.
8029 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
8030
8031 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
8032 position in `tramp-process-actions' call.
8033
8034 * net/trampver.el: Update release number.
8035
8036 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8037
8038 * custom.el (defcustom): Obey lexical-binding.
8039
8040 Fix octave-inf completion problems reported by Alexander Klimov.
8041 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
8042 Inherit from octave-mode-syntax-table.
8043 (inferior-octave-mode): Set info-lookup-mode.
8044 (inferior-octave-completion-at-point): New function.
8045 (inferior-octave-complete): Use it and completion-in-region.
8046 (inferior-octave-dynamic-complete-functions): Use it as well, and use
8047 comint-filename-completion.
8048 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
8049 symbol elements which shouldn't be word elements.
8050 (octave-font-lock-keywords, octave-beginning-of-defun)
8051 (octave-function-header-regexp): Adjust regexps accordingly.
8052 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
8053
8054 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
8055
8056 * net/gnutls.el (gnutls-errorp): Declare before first use.
8057
8058 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
8059
8060 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
8061 verify-error, and verify-hostname-error parameters. Check whether
8062 default trustfile exists before going to use it. Add missing
8063 argument to gnutls-message-maybe call. Return value.
8064 Reported by Claudio Bley <claudio.bley@gmail.com>.
8065 (open-gnutls-stream): Add usage example.
8066
8067 * net/network-stream.el (network-stream-open-starttls): Give host
8068 parameter to `gnutls-negotiate'.
8069 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8070 * subr.el (shell-quote-argument): Escape correctly under Windows.
8071
8072 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
8073
8074 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
8075 Use correct match group (bug#8438).
8076
8077 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
8078
8079 * emacs-lisp/package.el (package-built-in-p): Fix typo.
8080 (package-menu--generate): New arg specifying packages to show.
8081 (package-menu-refresh, package-menu-execute, list-packages):
8082 Callers changed.
8083 (package-show-package-list): New function, replacing deleted
8084 package--list-packages (renamed because it is non-internal).
8085
8086 * finder.el (finder-list-matches): Use package-show-package-list
8087 instead of deleted package--list-packages.
8088
8089 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
8090 Based on a previous implementation by Juanma Barranquero (Bug#8366).
8091 (vc-annotate-mode-map): Bind it to RET.
8092
8093 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
8094
8095 * progmodes/etags.el (next-file): Don't use set-buffer to change
8096 buffers (Bug#8478).
8097
8098 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
8099
8100 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
8101
8102 * apropos.el (apropos-label-face): Avoid variable-pitch face.
8103 (apropos-accumulator): Doc fix.
8104 (apropos-function, apropos-macro, apropos-command)
8105 (apropos-variable, apropos-face, apropos-group, apropos-widget)
8106 (apropos-plist): Add face property.
8107 (apropos-symbols-internal): Fix indentation.
8108 (apropos-print): Simplify help, and recognize apropos-multi-type.
8109 (apropos-print-doc): Use button-type-get to extract the button's
8110 face property. Fill docstring (Bug#8352).
8111
8112 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
8113
8114 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
8115
8116 * play/mpuz.el (mpuz-silent): Doc fix.
8117 (mpuz-mode-map): Use mapc.
8118 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
8119 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
8120 Fix typos in docstrings.
8121
8122 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
8123 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
8124
8125 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
8126
8127 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
8128
8129 * minibuffer.el (completion--do-completion): Avoid the "Next char
8130 not unique" prompt if icomplete-mode is enabled (Bug#5849).
8131
8132 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
8133 mouse-2 into unread-command-events, it is interpreted correctly.
8134
8135 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
8136 (image-toggle-display): Doc fix.
8137
8138 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
8139
8140 * textmodes/page.el (what-page): Use line-number-at-pos to
8141 calculate line number (Bug#6825).
8142
8143 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
8144
8145 * eshell/esh-mode.el (find-tag-interactive): Declare function.
8146 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
8147 Pass argument NO-DEFAULT to `find-tag-interactive'.
8148
8149 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
8150
8151 Lexical-binding cleanup.
8152
8153 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
8154 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
8155 * progmodes/ada-prj.el (ada-prj-initialize-values)
8156 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
8157 (ada-prj-show-value):
8158 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
8159 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
8160 (antlr-invalidate-context-cache, antlr-options-menu-filter)
8161 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
8162 * progmodes/bug-reference.el (bug-reference-push-button):
8163 * progmodes/fortran.el (fortran-line-length):
8164 * progmodes/glasses.el (glasses-change):
8165 * progmodes/octave-mod.el (octave-fill-paragraph):
8166 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
8167 (python-pdbtrack-grub-for-buffer, python-sentinel):
8168 * progmodes/sql.el (sql-save-connection):
8169 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
8170 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
8171 Mark unused parameters.
8172
8173 * progmodes/compile.el (compilation--flush-directory-cache)
8174 (compilation--flush-parse, compile-internal): Mark unused parameters.
8175 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
8176 (compilation-next-error-function): Remove unused variable `timestamp'.
8177
8178 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
8179 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
8180
8181 * progmodes/dcl-mode.el (dcl-end-of-command):
8182 Remove unused variable `start'.
8183 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
8184 (dcl-option-value-basic, dcl-option-value-offset)
8185 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
8186 Mark unused parameters.
8187 (dcl-save-local-variable): Remove unused variable `val'.
8188 (mode): Declare.
8189
8190 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
8191 Mark unused parameters.
8192 (delphi-ignore-changes): Move before first use.
8193 (delphi-charset-token-at): Remove unused variable `start'.
8194 (delphi-else-start): Remove unused variable `if-count'.
8195 (delphi-comment-block-start, delphi-comment-block-end):
8196 Remove unused variable `kind'.
8197 (delphi-indent-line): Remove unused variable `new-point'.
8198
8199 * progmodes/ebrowse.el (ebrowse-files-list)
8200 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
8201 Mark unused parameters. Don't quote `lambda'.
8202 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
8203 Don't quote `lambda'.
8204 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
8205 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
8206 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
8207 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
8208 Use `ignore-errors'.
8209 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
8210 (ebrowse-view/find-file-and-search-pattern)
8211 (ebrowse-view/find-member-declaration/definition):
8212 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
8213 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
8214 Rename parameter PREFIX-ARG to PREFIX.
8215 (ebrowse-tags-read-name): Remove unused variables `start' and
8216 `member-info'.
8217 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
8218 to `tags-file'.
8219
8220 * progmodes/etags.el (local-find-tag-hook): Declare.
8221 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
8222 Mark unused parameters.
8223
8224 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
8225 (executable-interpret): Mark unused parameter.
8226
8227 * progmodes/flymake.el (flymake-process-sentinel)
8228 (flymake-after-change-function)
8229 (flymake-create-temp-with-folder-structure)
8230 (flymake-get-include-dirs-dot): Mark unused parameters.
8231 (flymake-safe-delete-directory): Remove unused variable `err'.
8232
8233 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
8234 (speedbar-timer-fn, speedbar-line-text)
8235 (speedbar-change-expand-button-char, speedbar-delete-subblock)
8236 (speedbar-center-buffer-smartly): Declare functions.
8237 (gdb-find-watch-expression): Remove unused variable `array'.
8238 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
8239 (gdb-starting): Mark unused parameters.
8240 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
8241 (gdb-table-string): Remove unused variable `res'.
8242 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
8243 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
8244 (gdb-display-buffer): Remove unused variable `cur-size'.
8245
8246 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
8247 allow lexical-binding compilation.
8248 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
8249 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
8250 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
8251 Mark unused parameters.
8252 (gud-gdb-marker-filter): Remove unused variable `match'.
8253 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
8254 lambda expressions and funcall them, instead of using `fset'.
8255
8256 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
8257 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
8258
8259 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
8260 variable `header-beg'; use `let'.
8261
8262 * progmodes/icon.el (indent-icon-exp): Remove unused variables
8263 `restart', `last-sexp' and `at-do'.
8264
8265 * progmodes/js.el (js--debug): Mark unused parameter.
8266 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
8267 (js--splice-into-items): Remove unused variable `item'.
8268 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
8269
8270 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
8271 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
8272 (makefile-complete): Remove unused variable `try'.
8273 (makefile-fill-paragraph, makefile-match-function-end):
8274 Mark unused parameters.
8275
8276 * progmodes/octave-inf.el (inferior-octave-complete):
8277 Remove unused variable `proc'.
8278 (inferior-octave-output-digest): Mark unused parameter.
8279
8280 * progmodes/perl-mode.el (perl-calculate-indent):
8281 Remove unused variable `err'.
8282
8283 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
8284 (prolog-indent-line): Mark unused parameters.
8285 (prolog-indent-line): Remove unused variable `beg'.
8286
8287 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
8288 (reporter-dont-compact-list): Declare.
8289
8290 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
8291 Remove unused variable `char'.
8292 (sh-debug): Mark unused parameter.
8293 (sh-get-indent-info): Remove unused variable `start'.
8294 (sh-calculate-indent): Remove unused variable `var'.
8295
8296 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
8297 (simula-electric-keyword): Remove unused variable `null'.
8298 (simula-search-backward, simula-search-forward): Remove unused
8299 variables `begin' and `end'.
8300
8301 * progmodes/vera-mode.el (vera-guess-basic-syntax):
8302 Remove unused variable `pos'.
8303 (vera-electric-tab, vera-comment-uncomment-region):
8304 Mark unused parameters.
8305 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
8306
8307 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
8308
8309 * emacs-lisp/package.el (package--builtins, package-alist)
8310 (package-load-descriptor, package-built-in-p, package-activate)
8311 (define-package, package-installed-p)
8312 (package-compute-transaction, package-buffer-info)
8313 (package--push): Doc fix. Distinguish more clearly between
8314 version strings and version lists.
8315
8316 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
8317
8318 Lexical-binding cleanup.
8319
8320 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
8321 (5x5-make-mutate-best):
8322 * play/fortune.el (fortune-in-buffer):
8323 * play/gomoku.el (gomoku-init-display):
8324 * play/solitaire.el (solitaire, solitaire-do-check):
8325 * play/tetris.el (tetris-default-update-speed-function):
8326 Mark unused parameters.
8327
8328 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
8329 (bubbles--shift): Remove unused variable `char-org'.
8330 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
8331 (bubbles--show-images): Remove unused variable `char'.
8332
8333 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
8334 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
8335 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
8336 (decipher-analyze-buffer): Use ?\s.
8337 (decipher-make-checkpoint): Remove unused variable `mapping'.
8338
8339 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
8340
8341 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
8342 Remove unused variable `result'; use `let'.
8343
8344 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
8345 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
8346 (gametree-children-shown-p, gametree-compute-reduced-score):
8347 Use `ignore-errors'.
8348
8349 * play/handwrite.el (ps-lpr-switches): Declare.
8350 (handwrite): Remove unused variables `pmin' and `lastp'.
8351
8352 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
8353
8354 * play/landmark.el (landmark-init-display)
8355 (landmark-update-naught-weights): Mark unused parameters.
8356 (landmark-y): Remove unused variable `noise'. Simplify.
8357 (landmark-human-plays): Remove unused variable `score'.
8358
8359 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
8360 (mpuz-try-proposal): Remove unused variable `game'.
8361
8362 * play/zone.el (life-patterns): Declare.
8363
8364 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
8365
8366 * vc/vc.el (ediff-vc-internal): Declare function.
8367
8368 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8369
8370 * shell.el: Use lexical-binding and std completion UI.
8371 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
8372 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
8373 comint-preoutput-filter-functions rather than on
8374 comint-output-filter-functions.
8375 (shell-command-completion, shell--command-completion-data)
8376 (shell-filename-completion, shell-environment-variable-completion)
8377 (shell-c-a-p-replace-by-expanded-directory): New functions.
8378 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
8379 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
8380 (shell-dynamic-complete-environment-variable): Use them.
8381 (shell-dynamic-complete-as-environment-variable)
8382 (shell-dynamic-complete-as-command): Remove.
8383 (shell-match-partial-variable): Match past point.
8384 * comint.el: Clean up use of completion-at-point-functions.
8385 (comint-completion-at-point): New function.
8386 (comint-mode): Use it completion-at-point-functions.
8387 (comint-dynamic-complete): Make it obsolete.
8388 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
8389 (comint-c-a-p-replace-by-expanded-history): New function.
8390 (comint-dynamic-complete-functions)
8391 (comint-replace-by-expanded-history): Use it.
8392 * minibuffer.el (completion-table-with-terminator): Allow dynamic
8393 termination strings. Try harder to avoid second try-completion.
8394 (completion-in-region-mode-map): Disable bindings that don't work yet.
8395
8396 * comint.el: Use lexical-binding. Require CL.
8397 (comint-dynamic-complete-functions): Use comint-filename-completion.
8398 (comint-completion-addsuffix): Tweak custom type.
8399 (comint-filename-completion, comint--common-suffix)
8400 (comint--common-quoted-suffix, comint--table-subvert)
8401 (comint--complete-file-name-data): New functions.
8402 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
8403 (comint-dynamic-list-filename-completions): Use them.
8404 (comint-dynamic-simple-complete): Make obsolete.
8405
8406 * minibuffer.el (completion-in-region-mode):
8407 Keep completion-in-region-mode--predicate global.
8408 (completion-in-region--postch):
8409 Assume completion-in-region-mode--predicate is not null.
8410
8411 * progmodes/flymake.el (flymake-start-syntax-check-process):
8412 Obey `dir'. Simplify.
8413
8414 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
8415 we're in VC after all.
8416
8417 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
8418
8419 * vc/vc.el (vc-diff-build-argument-list-internal)
8420 (vc-version-ediff, vc-ediff): New commands.
8421 (vc-version-diff): Use vc-diff-build-argument-list-internal.
8422
8423 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8424
8425 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
8426 add sanity check.
8427
8428 * obsolete/erc-hecomplete.el: Make obsolete.
8429 * obsolete/: Standardize obsolescence info in the header.
8430
8431 2011-04-20 Glenn Morris <rgm@gnu.org>
8432
8433 * calendar/solar.el (solar-horizontal-coordinates):
8434 Use the longitude argument rather than `calendar-longitude'.
8435 (solar-date-next-longitude): Remove unused locals.
8436
8437 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8438
8439 * whitespace.el: New version 13.2.1.
8440
8441 2011-04-20 felix <EmacsWiki> (tiny change)
8442
8443 * whitespace.el (global-whitespace-mode): Keep highlight when
8444 switching between major modes on a file.
8445
8446 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8447
8448 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
8449 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
8450 multi-line comments as well.
8451
8452 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
8453
8454 Lexical-binding cleanup.
8455
8456 * arc-mode.el (archive-mode-revert):
8457 * cmuscheme.el (scheme-interactively-start-process):
8458 * custom.el (custom-initialize-delay):
8459 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
8460 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
8461 * emacs-lock.el (emacs-lock-clear-sentinel):
8462 * ezimage.el (defezimage):
8463 * follow.el (follow-avoid-tail-recenter):
8464 * fringe.el (set-fringe-mode-1):
8465 * generic-x.el (bat-generic-mode-compile):
8466 * help-mode.el (help-info-variable, help-do-xref)
8467 (help-mode-revert-buffer):
8468 * help.el (view-emacs-todo):
8469 * iswitchb.el (iswitchb-completion-help):
8470 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
8471 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
8472 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
8473 * locate.el (locate-update):
8474 * longlines.el (longlines-encode-region)
8475 (longlines-after-change-function):
8476 * outline.el (outline-isearch-open-invisible):
8477 * ps-def.el (declare-function, charset-dimension, char-width)
8478 (encode-char):
8479 * ps-mule.el (ps-mule-plot-string):
8480 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
8481 (recentf-edit-list-select, recentf-edit-list-validate)
8482 (recentf-open-files-action):
8483 * rect.el (delete-whitespace-rectangle-line)
8484 (rectangle-number-line-callback):
8485 * register.el (window-configuration-to-register)
8486 (frame-configuration-to-register):
8487 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
8488 * select.el (xselect-convert-to-string, xselect-convert-to-length)
8489 (xselect-convert-to-targets, xselect-convert-to-delete)
8490 (xselect-convert-to-filename, xselect-convert-to-charpos)
8491 (xselect-convert-to-lineno, xselect-convert-to-colno)
8492 (xselect-convert-to-os, xselect-convert-to-host)
8493 (xselect-convert-to-user, xselect-convert-to-class)
8494 (xselect-convert-to-name, xselect-convert-to-integer)
8495 (xselect-convert-to-atom, xselect-convert-to-identity):
8496 * subr.el (declare, ignore, process-kill-without-query)
8497 (text-clone-maintain):
8498 * terminal.el (te-get-char, te-tic-sentinel):
8499 * tool-bar.el (tool-bar-make-keymap):
8500 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
8501 * type-break.el (type-break-mode, type-break-noninteractive-query):
8502 * view.el (View-back-to-mark):
8503 * wid-browse.el (widget-browse-action, widget-browse-widget)
8504 (widget-browse-widgets, widget-browse-sexp):
8505 * widget.el (define-widget-keywords):
8506 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
8507 Mark unused parameters.
8508
8509 * align.el (align-adjust-col-for-rule): Mark unused parameter.
8510 (align-areas): Remove unused variable `look'.
8511 (align-region): Remove unused variables `real-end' and `pos-list'.
8512
8513 * apropos.el (apropos-score-doc): Remove unused variable `i'.
8514
8515 * bindings.el (mode-line-modified, mode-line-remote):
8516 Mark unused parameters.
8517 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
8518
8519 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
8520 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
8521
8522 * comint.el (comint-history-isearch-pop-state)
8523 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
8524 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
8525 (comint-substitute-in-file-name): Doc fix.
8526
8527 * completion.el (cmpl-statistics-block): Mark unused parameter.
8528 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
8529 (save-completions-to-file, load-completions-from-file):
8530 Remove unused local variable `e'.
8531
8532 * composite.el (compose-chars): Remove unused variable `len'.
8533 (lgstring-insert-glyph): Remove unused variable `g'.
8534 (compose-glyph-string): Remove unused variables `ascent',
8535 `descent', `lbearing' and `rbearing'.
8536 (compose-glyph-string-relative): Remove unused variables
8537 `lbearing', `rbearing' and `wadjust'.
8538 (compose-gstring-for-graphic): Remove unused variables `header',
8539 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
8540 (compose-gstring-for-terminal): Remove unused variables `header'
8541 and `nchars'. Use `let', not `let*'.
8542
8543 * cus-edit.el (Custom-set, Custom-save, custom-reset)
8544 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
8545 (Custom-buffer-done, custom-buffer-create-internal)
8546 (custom-browse-visibility-action, custom-browse-group-tag-action)
8547 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
8548 (widget-magic-mouse-down-action, custom-toggle-parent)
8549 (custom-add-parent-links, custom-toggle-hide-variable)
8550 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
8551 (custom-toggle-hide-face, face, hook, custom-group-link-action)
8552 (custom-face-menu-create, custom-variable-menu-create, get)
8553 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
8554 (custom-reset-standard-save-and-update): Remove unused variable `value'.
8555 (customize-apropos): Remove unused variable `tests'.
8556 (custom-group-value-create): Remove unused variable `hidden-p'.
8557 (sort-fold-case): Declare.
8558
8559 * cus-theme.el (custom-reset-standard-faces-list)
8560 (custom-reset-standard-variables-list): Declare.
8561 (customize-create-theme, custom-theme-revert, custom-theme-write)
8562 (custom-theme-choose-mode, customize-themes, custom-theme-save):
8563 Mark unused parameters.
8564
8565 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
8566
8567 * delim-col.el (delimit-columns-max): Move defvar before first use.
8568
8569 * descr-text.el (describe-char-categories): Don't quote `lambda'.
8570 (describe-char): Don't quote `lambda'. Mark unused parameter.
8571
8572 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
8573 (auto-insert): Declare.
8574 (desktop-restore-file-buffer): Rename desktop-* parameters;
8575 mark unused ones.
8576 (desktop-create-buffer): Rename desktop-* parameters and bind them.
8577 (desktop-buffer): Rename desktop-* parameters.
8578
8579 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
8580 (dframe-reposition-frame-xemacs, dframe-help-echo)
8581 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
8582 Mark unused parameters.
8583
8584 * dired-aux.el (backup-extract-version-start, overwrite-query)
8585 (overwrite-backup-query, rename-regexp-query)
8586 (rename-non-directory-query): Declare.
8587 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
8588 (dired-add-entry): Remove unused variable `orig-file-name'.
8589 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
8590 Use parameter PRESERVE-TIME instead of accessing dynamic variable
8591 `dired-copy-preserve-time' directly.
8592 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
8593 (dired-insert-subdir-newpos): Rename unused variable `pos'.
8594
8595 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
8596 (dired-virtual-revert, dired-make-relative-symlink):
8597 Mark unused parameters.
8598 (manual-program): Declare.
8599 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
8600 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
8601 wrapped in `with-no-warnings' to avoid replacing one warning by another.
8602
8603 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
8604
8605 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
8606
8607 * echistory.el (electric-history-in-progress, Helper-return-blurb):
8608 Declare.
8609
8610 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
8611
8612 * electric.el (Electric-command-loop): Rename parameter
8613 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
8614
8615 * expand.el (expand-in-literal): Remove unused variable `here'.
8616
8617 * facemenu.el (facemenu-add-new-color):
8618 Remove unused variable `docstring'.
8619
8620 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
8621 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
8622 (face-attr-construct): Mark unused parameter. Doc fix.
8623 (read-color): Remove unused variable `hex-string'.
8624
8625 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
8626 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
8627 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
8628 (display-buffer-other-frame): Remove unused variable `old-window'.
8629 (kill-buffer-hook): Declare.
8630 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
8631 Mark unused parameters.
8632 (after-find-file): Pass 1 to `auto-save-mode', not t.
8633
8634 * files-x.el (auto-insert): Declare.
8635 (modify-file-local-variable-prop-line): Remove unused variable `val'.
8636
8637 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
8638 variable `buf'. Mark unused parameter.
8639 (find-lisp-insert-directory): Mark unused parameter.
8640
8641 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
8642 (format-encode-region): Remove unused variables `cur-buf' and `result'.
8643 (format-common-tail): Remove, unused.
8644 (format-deannotate-region): Remove unused variable `loc'.
8645 (format-annotate-region): Remove unused variable `p'.
8646 (format-annotate-single-property-change): Remove unused variables
8647 `default' and `tail'.
8648
8649 * forms.el (read-file-filter): Declare.
8650 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
8651
8652 * frame.el (frame-creation-function-alist): Mark unused parameter.
8653 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
8654
8655 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
8656 Remove unused parameters.
8657 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
8658 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
8659
8660 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
8661 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
8662 (hfy-prepare-tag-map): Mark unused parameters.
8663 (htmlfontify-buffer): Use `called-interactively-p'.
8664
8665 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
8666 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
8667 (ibuffer-do-occur): Mark unused parameters.
8668 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
8669 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
8670
8671 * ibuffer.el: Don't quote `lambda'.
8672 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
8673 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
8674 Mark unused parameters.
8675
8676 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
8677 (ido-completing-read): Mark unused parameters.
8678 (ido-copy-current-word): Mark unused parameters;
8679 remove unused variable `name'.
8680 (ido-sort-merged-list): Remove unused parameter `dirs'.
8681
8682 * ielm.el (ielm-input-sender): Mark unused parameter.
8683 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
8684 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
8685 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
8686 `ielm-string' as a dynamic variable accessible from the IELM prompt.
8687 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
8688
8689 * image-dired.el (image-dired-display-thumbs): Remove unused
8690 variables `curr-file' and `count'.
8691 (image-dired-remove-tag): Remove unused variable `start'.
8692 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
8693 variable `curr-file'
8694 (image-dired-rotate-original): Remove unused variable `temp-file'.
8695 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
8696 Remove unused variable `file'.
8697 (image-dired-gallery-generate): Remove unused variable `curr'.
8698 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
8699
8700 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
8701
8702 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
8703
8704 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
8705
8706 * isearch.el (minibuffer-history-symbol): Declare.
8707 (isearch-edit-string): Remove unused variable `err'.
8708 (isearch-message-prefix, isearch-message-suffix):
8709 Mark unused parameters.
8710
8711 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
8712
8713 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
8714
8715 * makesum.el (double-column): Remove unused variable `cnt'.
8716
8717 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
8718 (ido-ignore-item-temp-list): Declare.
8719
8720 * mouse-drag.el (mouse-drag-throw): Remove unused variables
8721 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
8722 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
8723 (mouse-drag-drag): Remove unused variables `mouse-delta' and
8724 `mouse-col-delta'.
8725
8726 * mouse-sel.el (mouse-extend-internal):
8727 Remove unused variable `orig-window-frame'.
8728
8729 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
8730 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
8731 Move declarations before first use.
8732 (pcomplete-opt): Mark unused parameters; doc fix.
8733
8734 * proced.el (proced-revert): Mark unused parameter.
8735 (proced-send-signal): Remove unused variable `err'.
8736
8737 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
8738 Rename parameter PREFIX-ARG to ARG.
8739 (ps-basic-plot-string, ps-basic-plot-whitespace):
8740 Mark unused parameters.
8741
8742 * replace.el (replace-count): Define.
8743 (occur-revert-function): Mark unused parameters.
8744 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
8745 (isearch-case-fold-search, isearch-string): Declare.
8746 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
8747 bind `case-fold-search'. Remove unused variables `beg' and `end',
8748 and simplify.
8749 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
8750 COUNT and bind `replace-count'.
8751 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
8752 to COUNT.
8753
8754 * savehist.el (print-readably, print-string-length): Declare.
8755
8756 * shadowfile.el (shadow-expand-cluster-in-file-name):
8757 Remove unused variable `cluster'.
8758 (shadow-copy-file): Remove unused variable `i'.
8759 (shadow-noquery, shadow-clusters, shadow-site-cluster)
8760 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
8761 (shadow-define-literal-group, shadow-define-regexp-group)
8762 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
8763
8764 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
8765 (shell): Use `called-interactively-p'.
8766 (shell-directory-tracker): Remove unused variable `chdir-failure'.
8767
8768 * simple.el (compilation-context-lines, comint-file-name-quote-list)
8769 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
8770 (delete-backward-char): Remove unused variable `ocol'.
8771 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
8772 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
8773 (event-apply-hyper-modifier, event-apply-shift-modifier)
8774 (event-apply-control-modifier, event-apply-meta-modifier):
8775 Mark unused parameters.
8776 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
8777 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
8778
8779 * speedbar.el (speedbar-ignored-directory-expressions)
8780 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
8781 (speedbar-find-file, speedbar-dir-follow)
8782 (speedbar-directory-buttons-follow, speedbar-tag-find)
8783 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
8784 (speedbar-buffers-line-directory, speedbar-buffer-click):
8785 Mark unused parameters.
8786 (speedbar-tag-file): Remove unused variable `mode'.
8787 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
8788
8789 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
8790
8791 * talk.el (talk): Remove unused variable `display'.
8792
8793 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
8794 (tar-write-region-annotate): Mark unused parameter.
8795
8796 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
8797 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
8798 Declare them, wrapped in `with-no-warnings' to avoid replacing one
8799 warning by another.
8800
8801 * time-stamp.el (time-stamp-string-preprocess):
8802 Remove unused variable `require-padding'.
8803
8804 * tree-widget.el (widget-glyph-enable): Declare.
8805 (tree-widget-action): Mark unused parameter.
8806
8807 * w32-fns.el (x-get-selection): Mark unused parameter.
8808 (autoload-make-program, generated-autoload-file): Declare.
8809
8810 * wdired.el (wdired-revert): Mark unused parameters.
8811 (wdired-xcase-word): Remove unused variable `err'.
8812
8813 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
8814 (whitespace-help-scroll): Remove unused variable `data-help'.
8815
8816 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
8817 (widget-image-insert, widget-after-change, default)
8818 (widget-default-format-handler, widget-default-notify)
8819 (widget-default-prompt-value, widget-info-link-action)
8820 (widget-url-link-action, widget-function-link-action)
8821 (widget-variable-link-action, widget-file-link-action)
8822 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
8823 (widget-field-prompt-internal, widget-field-action, widget-field-match)
8824 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
8825 (widget-insert-button-action, widget-delete-button-action, visibility)
8826 (widget-documentation-link-action, widget-documentation-string-action)
8827 (widget-const-prompt-value, widget-regexp-match, symbol)
8828 (widget-coding-system-prompt-value)
8829 (widget-key-sequence-value-to-external, sexp)
8830 (widget-sexp-value-to-internal, character, vector, cons)
8831 (widget-choice-prompt-value, widget-boolean-prompt-value)
8832 (widget-color--choose-action): Mark unused parameters.
8833 (widget-item-match-inline, widget-choice-match-inline)
8834 (widget-checklist-match, widget-checklist-match-inline)
8835 (widget-group-match): Rename parameter VALUES to VALS.
8836 (widget-field-value-set): Remove unused variable `size'.
8837 (widget-color-action): Remove unused variables `value' and `start'.
8838
8839 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
8840 variable `dir'. Doc fix.
8841 (windmove-find-other-window): Don't pass it.
8842
8843 * window.el (count-windows): Mark unused parameter.
8844 (bw-adjust-window): Remove unused variable `err'.
8845
8846 * woman.el (woman-file-name): Remove unused variable `default'.
8847 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
8848 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
8849 (global-font-lock-mode): Declare.
8850 (woman-decode-region): Mark unused parameter.
8851 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
8852
8853 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
8854 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
8855 (x-dnd-handle-moz-url): Remove unused variable `title'.
8856 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
8857
8858 * xml.el (xml-parse-tag, xml-parse-attlist):
8859 Remove unused variable `pos'.
8860
8861 2011-04-19 Glenn Morris <rgm@gnu.org>
8862
8863 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
8864 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
8865 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8866 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
8867 * calendar/cal-html.el (cal-html-insert-minical):
8868 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
8869 (calendar-mark-date-pattern):
8870 Prefix "unused" locals.
8871
8872 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
8873 optional argument `style'.
8874
8875 * calendar/appt.el (appt-make-list):
8876 * calendar/cal-china.el (calendar-chinese-date-string):
8877 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
8878 (diary-hebrew-yahrzeit):
8879 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
8880 * calendar/calendar.el (calendar-generate-window):
8881 * calendar/time-date.el (time-to-days):
8882 Remove unused local variables.
8883
8884 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
8885
8886 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
8887 glyphless-char-display table.
8888 (tabulated-list-glyphless-char-display): New var.
8889
8890 2011-04-18 Sam Steingold <sds@gnu.org>
8891
8892 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
8893 to acknowledgments.
8894
8895 2011-04-17 Glenn Morris <rgm@gnu.org>
8896
8897 * calendar/diary-lib.el (diary-sexp-entry):
8898 * calendar/holidays.el (holiday-sexp):
8899 Set debug-on-error rather than the removed stack-trace-on-error.
8900
8901 2011-04-16 Glenn Morris <rgm@gnu.org>
8902
8903 * progmodes/f90.el: Use lexical-binding.
8904 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
8905
8906 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8907
8908 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
8909 (mail-mode): Setup mailalias completion here instead.
8910 * mail/mailalias.el: Use lexical-binding.
8911 (pattern, mailalias-done): Declare dynamic.
8912 (mail-completion-at-point-function): New function, from mail-complete.
8913 (mail-complete): Use it.
8914 (mail-completion-expand): New function.
8915 (mail-get-names): Use it.
8916 (mail-directory, mail-directory-process, mail-directory-stream):
8917 Don't use `pattern' for lexically bound arg.
8918
8919 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
8920
8921 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
8922 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
8923 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
8924
8925 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
8926 (byte-save-window-excursion, byte-temp-output-buffer-setup)
8927 (byte-interactive-p): Define them again, for use when inlining
8928 old code.
8929
8930 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
8931
8932 * loadup.el: Use `string-to-number', not `string-to-int'.
8933
8934 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8935
8936 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
8937 gud-gdb-complete-command.
8938 (gud-gdb-completions): New function, from gud-gdb-complete-command.
8939 (gud-gdb-completion-at-point): New function.
8940 (gud-gdb-completions): Remove.
8941
8942 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
8943
8944 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
8945 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
8946 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
8947 whether `executable-find' is bound.
8948
8949 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
8950
8951 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8952
8953 * minibuffer.el (completion-in-region-mode-predicate)
8954 (completion-in-region-mode--predicate): New vars.
8955 (completion-in-region, completion-in-region--postch)
8956 (completion-in-region-mode): Use them.
8957 (completion--capf-wrapper): Also return the hook function.
8958 (completion-at-point, completion-help-at-point):
8959 Adjust and provide a predicate.
8960
8961 Preserve arg names for advice of subr and lexical functions (bug#8457).
8962 * help-fns.el (help-function-arglist): Consolidate the subr and
8963 new-byte-code cases. Add argument `preserve-names' to extract names
8964 from the docstring when needed.
8965 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
8966 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
8967 (ad-arglist): Use help-function-arglist's new arg.
8968 (ad-definition-type): Use cond.
8969
8970 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
8971
8972 * autorevert.el (auto-revert-handler):
8973 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
8974 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
8975 Don't quote lambda.
8976
8977 * image-mode.el (image-transform-set-scale):
8978 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
8979
8980 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
8981
8982 * net/network-stream.el (network-stream-open-starttls): Only do
8983 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
8984 Upgrades via gnutls-cli are too slow to be done opportunistically.
8985
8986 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
8987
8988 * dframe.el (dframe-current-frame): Remove spurious quote.
8989
8990 2011-04-12 Glenn Morris <rgm@gnu.org>
8991
8992 * calendar/cal-tex.el (cal-tex-end-document):
8993 Try to automatically use latin1 input if needed.
8994
8995 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
8996 Don't try to cons a mark onto an empty element.
8997
8998 2011-04-11 Leo Liu <sdl.web@gmail.com>
8999
9000 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
9001 buffers.
9002 (ido-kill-buffer-at-head): Support killing virtual buffers.
9003
9004 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
9005
9006 * minibuffer.el (completion-show-inline-help): New var.
9007 (completion--do-completion, minibuffer-complete)
9008 (minibuffer-force-complete, minibuffer-complete-word):
9009 Inhibit minibuffer messages if completion-show-inline-help is nil.
9010
9011 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
9012 to avoid interference from inline help (Bug#5849).
9013
9014 2011-04-10 Leo Liu <sdl.web@gmail.com>
9015
9016 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9017 Fix typo.
9018
9019 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
9020
9021 * image-mode.el (image-toggle-display-image): Signal an error if
9022 not in Image mode.
9023 (image-transform-mode, image-transform-resize)
9024 (image-transform-set-rotation): Doc fix.
9025 (image-transform-set-resize): Delete.
9026 (image-transform-set-scale, image-transform-fit-to-height)
9027 (image-transform-fit-to-width): Handle image-toggle-display-image
9028 and image-transform-resize directly.
9029
9030 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
9031
9032 * doc-view.el (doc-view-fit-width-to-window)
9033 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
9034 New functions for fitting the shown image to the Emacs window size.
9035 (doc-view-mode-map): Add bindings for the new functions.
9036
9037 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
9038
9039 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
9040 Fix typo in docstring.
9041
9042 2011-04-08 Eli Zaretskii <eliz@gnu.org>
9043
9044 * files.el (file-size-human-readable): Produce one digit after
9045 decimal, like "ls -lh" does.
9046
9047 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
9048 the file size representation.
9049
9050 * simple.el (list-processes): If async subprocesses are not
9051 available, error out with a clear error message.
9052
9053 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
9054
9055 * help.el (help-form-show): New function, to be called from C.
9056 Put help-form output in a buffer named differently than *Help*.
9057
9058 2011-04-08 Eli Zaretskii <eliz@gnu.org>
9059
9060 * files.el (file-size-human-readable): New function.
9061
9062 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
9063 computing the representation inline. Don't require `cl'.
9064
9065 2011-04-08 Glenn Morris <rgm@gnu.org>
9066
9067 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
9068
9069 * net/browse-url.el (browse-url-firefox):
9070 Test system-type, not system-configuration.
9071
9072 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
9073 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
9074 Use log-edit-empty-buffer-p. (Bug#7598)
9075
9076 * net/rlogin.el (rlogin-process-connection-type): Simplify.
9077 (rlogin-mode-map): Initialize in the defvar.
9078 (rlogin): Use ignore-errors.
9079
9080 * replace.el (occur-mode-map): Some fixes for menu items.
9081
9082 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
9083
9084 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
9085
9086 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
9087
9088 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
9089 issuing unused warnings.
9090
9091 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
9092 macro directly.
9093
9094 * simple.el: Lisp reimplement of list-processes. Based on an
9095 earlier reimplementation by Leo Liu, but using tabulated-list.el.
9096 (process-menu-mode): New major mode.
9097 (list-processes--refresh, list-processes):
9098 (process-menu-visit-buffer): New functions.
9099
9100 * files.el (save-buffers-kill-emacs): Don't assume any return
9101 value of list-processes, which is undocumented anyway.
9102
9103 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
9104
9105 * emacs-lisp/tabulated-list.el: New file.
9106
9107 * emacs-lisp/package.el: Use Tabulated List mode.
9108 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
9109 (package-menu-mode): Derive from tabulated-list-mode. Set up the
9110 table format using Tabulated List mode variables.
9111 (package--push): New macro, replacing package-list-maybe-add.
9112 (package-menu--generate): Use package--push. Renamed from
9113 package--generate-package-list.
9114 (package-menu-refresh, list-packages): Use it.
9115 (package-menu--print-info): Rename from package-print-package.
9116 Return insertion data instead of inserting it directly.
9117 (package-menu-describe-package, package-menu-execute):
9118 Use tabulated-list-get-id.
9119 (package-menu-mark-delete, package-menu-mark-install)
9120 (package-menu-mark-unmark, package-menu-backup-unmark)
9121 (package-menu-mark-obsolete-for-deletion):
9122 Use tabulated-list-put-tag.
9123 (package--list-packages, package-menu-revert)
9124 (package-menu-get-package, package-menu-get-version)
9125 (package-menu-sort-by-column): Functions deleted.
9126 (package-menu-package-list, package-menu-sort-key): Vars deleted.
9127 (package-menu--status-predicate, package-menu--version-predicate)
9128 (package-menu--name-predicate)
9129 (package-menu--description-predicate): Handle arguments in the
9130 Tabulated List format.
9131 (package-list-packages-no-fetch): Call list-packages.
9132
9133 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
9134
9135 * files.el (after-find-file-from-revert-buffer): Remove variable.
9136 (after-find-file): Don't bind it.
9137 (revert-buffer-in-progress-p): New variable.
9138 (revert-buffer): Bind it.
9139 Pass nil for `after-find-file-from-revert-buffer'.
9140
9141 * saveplace.el (save-place-find-file-hook): Use new variable
9142 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
9143
9144 2011-04-06 Glenn Morris <rgm@gnu.org>
9145
9146 * Makefile.in (AUTOGEN_VCS): New variable.
9147 (autoloads): Use $AUTOGEN_VCS.
9148
9149 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
9150 * calendar/calendar.el (calendar-mode-map):
9151 Check for toolkit scroll bars. (Bug#8305)
9152
9153 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
9154
9155 * minibuffer.el (completion-in-region--postch)
9156 (completion-in-region-mode): Remove unnecessary messages.
9157
9158 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
9159
9160 * font-lock.el (font-lock-refresh-defaults):
9161 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
9162 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
9163
9164 * info.el (Info-directory-list, Info-read-node-name-2)
9165 (Info-split-parameter-string): Doc fixes.
9166 (Info-virtual-nodes): Reflow docstring.
9167 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
9168 (Info-apropos-toc-nodes, info-finder, Info-get-token)
9169 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
9170 Fix typos in docstrings.
9171 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
9172 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
9173 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
9174 (Info-restore-desktop-buffer): Mark unused parameters.
9175 (Info-directory-find-file, Info-directory-find-node)
9176 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
9177 (Info-virtual-index-find-node, Info-apropos-find-file)
9178 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
9179 Mark unused parameters; fix typos in docstrings.
9180 (Info-virtual-index): Remove unused local variable `nodename'.
9181
9182 2011-04-05 Deniz Dogan <deniz@dogan.se>
9183
9184 * net/rcirc.el: Update my e-mail address.
9185 (rcirc-mode-map): Remove M-o binding.
9186
9187 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
9188
9189 * startup.el (command-line): Save the cursor's theme-face
9190 directly, instead of using face-override-spec.
9191
9192 * custom.el (load-theme): Minor optimization in assigning faces.
9193
9194 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
9195
9196 * help-fns.el (describe-variable): Complete all variables having
9197 documentation, including keywords.
9198 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
9199
9200 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
9201
9202 Convert to lexical-binding.
9203
9204 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
9205 (bs--get-marked-string, bs--get-modified-string)
9206 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
9207 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
9208 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
9209
9210 * ehelp.el (electric-help-execute-extended)
9211 (electric-help-ctrl-x-prefix):
9212 * hexl.el (hexl-revert-buffer-function):
9213 * linum.el (linum-after-change, linum-after-scroll):
9214 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
9215
9216 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
9217
9218 2011-04-04 Daiki Ueno <ueno@unixuser.org>
9219
9220 * epa-dired.el:
9221 * epa-mail.el:
9222 * epa-hook.el:
9223 * epa-file.el:
9224 * epa.el:
9225 * epg.el: Use lexical binding.
9226
9227 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
9228
9229 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
9230
9231 * textmodes/flyspell.el (flyspell-word): Recognize default
9232 dictionary case for flyspell-mark-duplications-exceptions.
9233 Use regexp matching for languages.
9234 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
9235 default dictionary (Bug#7926).
9236
9237 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
9238
9239 * emacs-lisp/package.el (package--with-work-buffer):
9240 Recognize https URLs.
9241
9242 * net/network-stream.el: Move from gnus/proto-stream.el.
9243 Change prefix to network-stream throughout.
9244 (open-protocol-stream): Merge into open-network-stream, leaving
9245 open-protocol-stream as an alias. Handle nil BUFFER args.
9246
9247 * subr.el (open-network-stream): Move to net/network-stream.el.
9248
9249 2011-04-02 Glenn Morris <rgm@gnu.org>
9250
9251 * find-dired.el (find-exec-terminator): New option.
9252 (find-ls-option): Test for -ls support.
9253 (find-ls-subdir-switches): Test for -b in find-ls-option.
9254 (find-dired, find-grep-dired): Doc fixes.
9255 (find-dired): Use find-exec-terminator.
9256
9257 * find-dired.el (find-ls-option, find-ls-subdir-switches)
9258 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
9259 (find-name-arg): Remove purecopy.
9260
9261 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
9262 (grep-compute-defaults): Check for `-exec COMMAND +' support.
9263 Set grep-find-use-xargs, grep-find-command, and grep-find-template
9264 accordingly. Don't add the null-device if not needed.
9265
9266 * files.el (save-some-buffers): Doc fix.
9267
9268 2011-04-02 Eli Zaretskii <eliz@gnu.org>
9269
9270 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
9271
9272 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
9273
9274 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
9275 Use `dolist' rather than `mapcar'.
9276
9277 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
9278
9279 Add lexical binding.
9280
9281 * subr.el (apply-partially): Use new closures rather than CL.
9282 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
9283 (dolist, dotimes): Use slightly different expansion for lexical code.
9284 (functionp): Move to C.
9285 (letrec): New macro.
9286 (with-wrapper-hook): Use it and apply-partially instead of CL.
9287 (eval-after-load): Preserve lexical-binding.
9288 (save-window-excursion, with-output-to-temp-buffer): Turn them
9289 into macros.
9290
9291 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
9292
9293 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
9294 than the arglist.
9295 (help-add-fundoc-usage): Don't add `Not documented'.
9296 (help-function-arglist): Handle closures, subroutines, and new
9297 byte-code-functions.
9298 (help-make-usage): Remove leading underscores.
9299 (describe-function-1): Handle closures.
9300 (describe-variable): Use special-variable-p for completion.
9301
9302 * files.el (lexical-binding): Declare safe.
9303
9304 * emacs-lisp/pcase.el: Don't use destructuring-bind.
9305 (pcase--memoize): Rename from pcase-memoize. Change weakness.
9306 (pcase): Add `let' pattern.
9307 Change memoization so it actually works.
9308 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
9309 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
9310 <let>: New case.
9311
9312 * emacs-lisp/macroexp.el: Use lexical binding.
9313 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
9314 Don't convert ' to #' without checking that it's indeed quoting
9315 a lambda.
9316
9317 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
9318 Use eval-sexp-add-defvars.
9319 (eval-sexp-add-defvars): New fun.
9320
9321 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
9322
9323 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
9324 Don't autoload.
9325 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
9326 than the internal `byte-compile-lambda'.
9327 (defmethod): Don't hide code under quotes.
9328 (eieio-defmethod): New `code' argument.
9329
9330 * emacs-lisp/eieio-comp.el: Remove.
9331
9332 * emacs-lisp/edebug.el (edebug-eval-defun)
9333 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
9334 (edebug-toggle): Avoid `eval'.
9335
9336 * emacs-lisp/disass.el (disassemble-internal): Handle new
9337 `closure' objects.
9338 (disassemble-1): Handle new byte codes.
9339
9340 * emacs-lisp/cl.el (pushnew): Silence warning.
9341
9342 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
9343 (cl-byte-compile-throw): Remove.
9344 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
9345
9346 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
9347 closures.
9348
9349 * emacs-lisp/cconv.el: New file.
9350
9351 * emacs-lisp/bytecomp.el: Use lexical binding instead of
9352 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
9353 (byte-compile-initial-macro-environment):
9354 Handle declare-function here.
9355 (byte-compile--lexical-environment): New var.
9356 (byte-stack-ref, byte-stack-set, byte-discardN)
9357 (byte-discardN-preserve-tos): New lap codes.
9358 (byte-interactive-p): Don't use any more.
9359 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
9360 New macros.
9361 (byte-compile-lapcode): Use them and handle new lap codes.
9362 (byte-compile-obsolete): Remove.
9363 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
9364 (byte-compile-arglist-warn): Check late def of inlinable funs.
9365 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
9366 since they should have been expanded by now.
9367 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
9368 (byte-compile-from-buffer): Remove unused second arg.
9369 (byte-compile-preprocess): New function.
9370 (byte-compile-toplevel-file-form): New function to distinguish
9371 file-form calls from outside from file-form calls from hunk-handlers.
9372 (byte-compile-file-form): Simplify.
9373 (byte-compile-file-form-defsubst): Remove.
9374 (byte-compile-file-form-defmumble): Simplify now that
9375 byte-compile-lambda always returns a byte-code-function.
9376 (byte-compile): Preprocess.
9377 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
9378 Remove, not used any more.
9379 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
9380 (byte-compile-make-args-desc): New funs.
9381 (byte-compile-lambda): Handle lexical functions. Always return
9382 a byte-code-function.
9383 (byte-compile-reserved-constants): New var, to make up room for
9384 closed-over variables.
9385 (byte-compile-constants-vector): Obey it.
9386 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
9387 (byte-compile-macroexpand-declare-function): New function.
9388 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
9389 byte-code-functions.
9390 (byte-compile-form): Check obsolescence here.
9391 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
9392 (byte-compile-variable-ref): Remove.
9393 (byte-compile-dynamic-variable-op): New fun.
9394 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
9395 (byte-compile-variable-set): New funs.
9396 (byte-compile-discard): Add 2 args.
9397 (byte-compile-stack-ref, byte-compile-stack-set)
9398 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
9399 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
9400 macroexpand-all instead.
9401 (byte-compile-quote-form): Remove.
9402 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
9403 (byte-compile-bind, byte-compile-unbind): New funs.
9404 (byte-compile-let): Handle let* and lexical binding.
9405 (byte-compile-let*): Remove.
9406 (byte-compile-catch, byte-compile-unwind-protect)
9407 (byte-compile-track-mouse, byte-compile-condition-case):
9408 Handle a new :fun-body form, used for lexical scoping.
9409 (byte-compile-save-window-excursion)
9410 (byte-compile-with-output-to-temp-buffer): Remove.
9411 (byte-compile-defun): Simplify.
9412 (byte-compile-stack-adjustment): New fun.
9413 (byte-compile-out): Use it.
9414 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
9415
9416 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
9417 handler any more.
9418
9419 * emacs-lisp/byte-opt.el: Use lexical binding.
9420 (byte-inline-lapcode): Remove (to bytecomp).
9421 (byte-compile-inline-expand): Pay attention to inlining to/from
9422 lexically bound code.
9423 (byte-compile-unfold-lambda): Don't handle byte-code-functions
9424 any more.
9425 (byte-optimize-form-code-walker): Don't handle save-window-excursion
9426 any more and don't call compiler-macros.
9427 (byte-compile-splice-in-already-compiled-code): Remove.
9428 (byte-code): Don't inline any more.
9429 (disassemble-offset): Receive `bytes' as argument rather than via
9430 dynamic scoping.
9431 (byte-compile-tag-number): Declare before first use.
9432 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
9433 `return' even if make-spliceable.
9434 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
9435 obsolete interactive-p.
9436 (byte-optimize-lapcode): Optimize new lap-codes.
9437 Don't trip up on new form of `byte-constant' lap code.
9438
9439 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
9440
9441 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
9442
9443 * custom.el (custom-initialize-default, custom-declare-variable):
9444 Use `defvar'.
9445
9446 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
9447 New variables.
9448 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
9449 (COMPILE_FIRST): Add macroexp and cconv.
9450 * makefile.w32-in: Mirror changes in Makefile.in.
9451
9452 * vc/cvs-status.el:
9453 * vc/diff-mode.el:
9454 * vc/log-edit.el:
9455 * vc/log-view.el:
9456 * vc/smerge-mode.el:
9457 * textmodes/bibtex-style.el:
9458 * textmodes/css.el:
9459 * startup.el:
9460 * uniquify.el:
9461 * minibuffer.el:
9462 * newcomment.el:
9463 * reveal.el:
9464 * server.el:
9465 * mpc.el:
9466 * emacs-lisp/smie.el:
9467 * doc-view.el:
9468 * dired.el:
9469 * abbrev.el: Use lexical binding.
9470
9471 2011-04-01 Eli Zaretskii <eliz@gnu.org>
9472
9473 * info.el (info-display-manual): New function.
9474
9475 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
9476
9477 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
9478
9479 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
9480
9481 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
9482 an entry for that server in rcirc-authinfo. (Bug#8385)
9483
9484 2011-03-31 Glenn Morris <rgm@gnu.org>
9485
9486 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
9487
9488 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
9489
9490 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
9491
9492 * progmodes/python.el (python-default-interpreter)
9493 (python-python-command-args, python-jython-command-args)
9494 (python-which-shell, python-which-args, python-which-bufname)
9495 (python-file-queue, python-comint-output-filter-function)
9496 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
9497 variables and functions.
9498
9499 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
9500
9501 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
9502 (completion-in-region-mode): New minor mode.
9503 (completion-in-region): Use it.
9504 (completion-in-region--data, completion-in-region-mode-map): New vars.
9505 (completion-in-region--postch): New function.
9506 (completion--capf-misbehave-funs, completion--capf-safe-funs):
9507 New vars.
9508 (completion--capf-wrapper): New function.
9509 (completion-at-point): Use it to track well-behavedness of
9510 hook functions.
9511 (completion-help-at-point): New command.
9512
9513 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
9514
9515 * vc/add-log.el (add-change-log-entry): Don't use whitespace
9516 syntax class to search for whitespace on a single line
9517 (Message-ID: <4D938140.4030905@redhat.com>).
9518
9519 2011-03-30 Leo Liu <sdl.web@gmail.com>
9520
9521 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
9522 New commands.
9523 (edit-abbrevs-map): Bind them here.
9524 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
9525
9526 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
9527
9528 * allout.el (allout-hide-by-annotation, allout-flag-region):
9529 Reduce possibility of overlay leakage by making them volatile.
9530
9531 * allout-widgets.el (allout-widgets-tally): Define as nil so the
9532 hash is not shared between buffers. Mode initialization is
9533 responsible for giving it a useful starting value.
9534 (allout-item-span): Reduce possibility of overlay leakage by
9535 making them volatile.
9536 (allout-widgets-count-buttons-in-region): Add diagnostic function
9537 for tracking down button overlay leaks.
9538
9539 2011-03-29 Leo Liu <sdl.web@gmail.com>
9540
9541 * ido.el (ido-read-internal): Use the default history var
9542 minibuffer-history if no HISTORY is specified.
9543
9544 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
9545
9546 * net/imap.el (imap-shell-open, imap-process-connection-type):
9547 Use imap-process-connection-type for 'shell' streams as well as
9548 Kerberos, SSL, other subprocesses.
9549
9550 2011-03-28 Leo Liu <sdl.web@gmail.com>
9551
9552 * abbrev.el (abbrev-table-empty-p): New function.
9553 (prepare-abbrev-list-buffer): Place empty abbrev tables after
9554 nonempty ones. (Bug#5937)
9555
9556 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
9557
9558 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
9559
9560 2011-03-27 Leo Liu <sdl.web@gmail.com>
9561
9562 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
9563 for foreground and background colors.
9564 (ansi-color-make-color-map): Adapt.
9565
9566 2011-03-25 Leo Liu <sdl.web@gmail.com>
9567
9568 * midnight.el (midnight-time-float): Remove. Note it calculates
9569 the microsecond component incorrectly and seconds-to-time does the
9570 same job.
9571 Remove redundant (require 'timer).
9572
9573 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
9574 (ido-completions): Remove unused arguments. (Bug#8329)
9575
9576 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
9577
9578 * minibuffer.el (completion--flush-all-sorted-completions):
9579 Remove itself from hook.
9580 (completion-at-point): Let the functions perform the completion
9581 immediately and return nil or t.
9582 * comint.el (comint-dynamic-complete-functions): Now identical to
9583 completion-at-point-functions.
9584 (comint-dynamic-list-input-ring): Remove unused var `index'.
9585 (comint--match-partial-filename, comint--unquote&expand-filename):
9586 New funs, split from comint-match-partial-filename.
9587 (comint-dynamic-complete): Use completion-at-point.
9588 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
9589
9590 2011-03-24 Drew Adams <drew.adams@oracle.com>
9591
9592 * thingatpt.el: Support `defun'.
9593
9594 2011-03-23 Leo Liu <sdl.web@gmail.com>
9595
9596 * abbrevlist.el: Move to obsolete/abbrevlist.el.
9597
9598 * help-mode.el (help-mode-finish): Tweak regexp.
9599
9600 2011-03-23 Glenn Morris <rgm@gnu.org>
9601
9602 * eshell/esh-opt.el (eshell-eval-using-options):
9603 Do not bind unused local variable `eshell-option-stub'.
9604
9605 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
9606
9607 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
9608
9609 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
9610 keymap variable in `with-no-warnings' to avoid a warning when the
9611 keymap has been already `defconst'ed.
9612
9613 2011-03-22 Leo Liu <sdl.web@gmail.com>
9614
9615 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
9616 encode all chars in abbrevs; otherwise use emacs-mule or
9617 utf-8-emacs. (Bug#8308)
9618
9619 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
9620
9621 * simple.el (backward-delete-char-untabify):
9622 Avoid warning about using `delete-backward-char'.
9623
9624 * image.el (image-type-file-name-regexps): Make it variable.
9625 `imagemagick-register-types' modifies it, and the user may want
9626 to add new extensions for known image types.
9627 (imagemagick-register-types): Throw error if not using ImageMagick.
9628
9629 2011-03-22 Leo Liu <sdl.web@gmail.com>
9630
9631 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
9632 located before rcirc-prompt-end-marker.
9633 (rcirc-complete): Error if point is not after rcirc prompt.
9634 Handle the case when table is nil.
9635 (rcirc-user-authenticated): Define to fix compiler warning.
9636
9637 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
9638
9639 * custom.el (custom--inhibit-theme-enable): Make it affect only
9640 custom-theme-set-variables and custom-theme-set-faces.
9641 (provide-theme): Ignore custom--inhibit-theme-enable.
9642 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
9643 (custom-enabling-themes): Delete variable.
9644 (enable-theme): Accept only loaded themes as arguments.
9645 Ignore the special custom-enabled-themes variable.
9646 (custom-enabled-themes): Forbid themes from setting this.
9647 Eliminate use of custom-enabling-themes.
9648 (custom-push-theme): Quote "changed" custom var entry.
9649
9650 2011-03-21 Leo Liu <sdl.web@gmail.com>
9651
9652 * ido.el (ido-read-internal): Add ido-selected to history instead
9653 of user input.
9654
9655 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9656
9657 * subr.el (deferred-action-list, deferred-action-function):
9658 Mark obsolete.
9659
9660 2011-03-21 Leo Liu <sdl.web@gmail.com>
9661
9662 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
9663 change on 2011-02-13 (bug#8309).
9664
9665 * minibuffer.el (read-file-name-function): Change default value.
9666 (read-file-name--defaults): Rename from read-file-name-defaults.
9667 (read-file-name-default): Rename from read-file-name.
9668 (read-file-name): Call read-file-name-function.
9669
9670 2011-03-21 Glenn Morris <rgm@gnu.org>
9671
9672 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
9673 Doc fixes.
9674
9675 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
9676
9677 * cus-theme.el: Add missing provide statement.
9678 (customize-create-theme): Extract theme value correctly.
9679 (custom-theme-visit-theme): Autoload.
9680 (customize-create-theme): Prompt before inserting default faces.
9681
9682 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
9683
9684 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
9685 units and musical notes.
9686
9687 2011-03-20 Leo Liu <sdl.web@gmail.com>
9688
9689 * ido.el (ido-read-internal): Use completing-read-default.
9690 (ido-completing-read): Fix compatibility with completing-read.
9691
9692 2011-03-20 Christian Ohler <ohler@gnu.org>
9693
9694 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
9695 (ert-delete-all-tests): Use `called-interactively-p' rather than
9696 `interactive-p'.
9697 (ert--make-xrefs-region): Respect END.
9698
9699 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
9700
9701 * dired-aux.el (dired-create-directory): Signal an error if the
9702 directory already exists (Bug#8246).
9703
9704 * facemenu.el (list-colors-display): Call list-faces-display
9705 inside with-help-window.
9706 (list-colors-print): Use display property to align the final
9707 column, instead of checking window-width.
9708
9709 2011-03-19 Eli Zaretskii <eliz@gnu.org>
9710
9711 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
9712 windows-nt systems.
9713 (emerge-protect-metachars): Quote correctly for ms-dos and
9714 windows-nt systems.
9715
9716 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
9717
9718 * info.el (info-initialize): Replace all uses of `:' with
9719 path-separator for compatibility with non-Unix systems.
9720 Cache quoting of path-separator. (Bug#8258)
9721
9722 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
9723
9724 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
9725 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
9726 (mouse-avoidance-mode): Fix typos in docstrings.
9727
9728 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
9729
9730 * startup.el (package-subdirectory-regexp): Move from package.el.
9731 Omit \\` and \\', and let callers add them.
9732
9733 * emacs-lisp/package.el (package-strip-version)
9734 (package-load-all-descriptors): Add \\` and \\' to
9735 package-subdirectory-regexp before using it.
9736 (package-untar-buffer): New arg DIR; ensure that file untars only
9737 into this expected directory. Remove superfluous delete-region.
9738 (package-unpack): Caller changed.
9739 (package-tar-file-info): Use package-subdirectory-regexp.
9740
9741 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
9742
9743 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
9744 diff-mode-shared-map (bug#8284).
9745 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
9746
9747 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
9748
9749 * calendar/time-date.el (format-seconds): Use assoc instead of
9750 assoc-string, since assoc-string doesn't exist in XEmacs.
9751
9752 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
9753
9754 * custom.el (custom-known-themes): Reflow docstring.
9755 (custom-theme-load-path): Fix typo in docstring.
9756 (load-theme): Fix typo in error message.
9757 (custom-available-themes, custom-variable-theme-value):
9758 Use `let', not `let*'.
9759
9760 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
9761
9762 * calc/README: Mention inclusion of musical notes.
9763
9764 * calc/calc-units.el (calc-lu-quant): Rename from
9765 `calc-logunits-quantity'.
9766 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
9767 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
9768 (calc-db): Rename from `calc-dblevel'.
9769 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
9770 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
9771 (calc-np): Rename from `calc-nplevel'.
9772 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
9773 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
9774 (calc-lu-plus): Rename from `calc-logunits-add'.
9775 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
9776 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
9777 (calc-lu-minus): Rename from `calc-logunits-sub'.
9778 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
9779 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
9780 (calc-lu-times): Rename from `calc-logunits-mul'.
9781 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
9782 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
9783 (calc-lu-divide): Rename from `calc-logunits-div'.
9784 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
9785 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
9786
9787 * calc/calc-ext.el (calc-init-extensions): Update the names of the
9788 functions being autoloaded.
9789
9790 * calc/calc.el (calc-lu-power-reference): Rename from
9791 `calc-logunits-power-reference'.
9792 (calc-lu-field-reference): Rename from
9793 `calc-logunits-field-reference'.
9794
9795 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
9796
9797 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
9798
9799 * minibuffer.el (completion-all-sorted-completions):
9800 Use :completion-cycle-penalty text property if present.
9801
9802 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
9803
9804 * allout.el (allout-yank-processing): Adjust for new rebulleting
9805 regime so bullet being yanked is used without prompting the user
9806 for a choice.
9807
9808 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
9809
9810 * startup.el (command-line): Warn the user that _emacs is deprecated.
9811
9812 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
9813
9814 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
9815 (delphi-verbose, delphi-comment-face, delphi-string-face)
9816 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
9817 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
9818 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
9819 (delphi-new-comment-line, delphi-font-lock-defaults)
9820 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
9821 Fix typos in docstrings.
9822
9823 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
9824
9825 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
9826 Invert the roles of character and string values for INSTEAD, so a
9827 string is used for the more common case of a defaulting prompt.
9828
9829 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9830
9831 * progmodes/ruby-mode.el (ruby-backward-sexp):
9832 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
9833 * play/gamegrid.el (gamegrid-make-face):
9834 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
9835 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
9836 * notifications.el (notifications-notify):
9837 * net/xesam.el (xesam-search-engines):
9838 * net/quickurl.el (quickurl-list-insert):
9839 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
9840
9841 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
9842
9843 * startup.el (command-line): Update package subdirectory regexp.
9844
9845 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9846
9847 * allout.el (allout-abbreviate-flattened-numbering)
9848 (allout-mode-deactivate-hook): Fix up obsolescence "date".
9849
9850 * subr.el (read-char-choice): Only show the cursor after the prompt,
9851 not after the answer.
9852
9853 2011-03-15 Kevin Ryde <user42@zip.com.au>
9854
9855 * help-fns.el (variable-at-point): Skip leading quotes, if any
9856 (bug#8253).
9857
9858 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9859
9860 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
9861 warning message.
9862
9863 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
9864
9865 * shell.el (shell): When called interactively, offer to change the
9866 shell file name on remote hosts.
9867
9868 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
9869
9870 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
9871 integration for LDAP parameters. The host, base, user or binddn,
9872 and secret tokens can be specified in a netrc file, for instance.
9873 This is optional because an `auth-source' parameter must be
9874 specified in the search attributes.
9875
9876 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
9877
9878 * help.el (describe-mode): Link to the mode's definition (bug#8185).
9879
9880 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9881
9882 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
9883 into declaration. Remove redundant and harmful binding.
9884
9885 2011-03-12 Eli Zaretskii <eliz@gnu.org>
9886
9887 * files.el (file-ownership-preserved-p): Pass `integer' as an
9888 explicit 2nd argument to `file-attributes'. If the file's owner
9889 is the Administrators group on Windows, and the current user is
9890 Administrator, consider that a match.
9891
9892 * server.el (server-ensure-safe-dir): Consider server directory
9893 safe on MS-Windows if its owner is the Administrators group while
9894 the current Emacs user is Administrator. Use `=' to compare
9895 numerical UIDs, since they could be integers or floats.
9896
9897 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
9898
9899 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
9900
9901 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
9902
9903 Sync with Tramp 2.2.1.
9904
9905 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
9906
9907 * net/trampver.el: Update release number.
9908
9909 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9910
9911 * progmodes/compile.el (compilation--previous-directory): Fix up
9912 various nil/dead-marker mismatches (bug#8014).
9913 (compilation-directory-properties, compilation-error-properties):
9914 Don't call it at a position past the one we're about to change.
9915
9916 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
9917 Disable obsolescence warnings in the file that declares it.
9918
9919 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
9920
9921 * allout-widgets.el (allout-widgets-tally):
9922 Initialize allout-widgets-tally as a hash table rather than nil to
9923 prevent mode-line redisplay warnings. Also, clarify the module
9924 description and fix a comment typo.
9925
9926 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
9927
9928 * help-fns.el (describe-variable): Don't complete keywords.
9929 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
9930
9931 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
9932
9933 * emacs-lisp/package.el (package-version-join): Impose a standard
9934 string representation for pre/alpha/beta version lists.
9935 (package-unpack-single): Standardize the directory name by passing
9936 it through package-version-join.
9937 (package-strip-rcs-id): Accept any version string that does not
9938 signal an error in version-to-list.
9939
9940 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
9941
9942 * simple.el (delete-trailing-whitespace): Return nil for the
9943 benefit of `write-file-functions'.
9944
9945 2011-03-10 Glenn Morris <rgm@gnu.org>
9946
9947 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
9948
9949 * vc/vc-git.el (vc-git-program): New option.
9950 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
9951 (vc-git--call): Use it.
9952
9953 * eshell/esh-util.el (eshell-condition-case): Doc fix.
9954
9955 * cus-edit.el (Custom-newline): If no button at point, look
9956 for a subgroup button at start-of-line. (Bug#2298)
9957
9958 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
9959
9960 2011-03-10 Julien Danjou <julien@danjou.info>
9961
9962 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
9963 `cursor-type' is nil.
9964
9965 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
9966
9967 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
9968
9969 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
9970
9971 * allout.el Summary: Change so yank of distinctive-bullet items
9972 preserves the existing header prefix, rebulleting it if necessary,
9973 rather than replacing it. This is necessary for proper operation
9974 of cooperative addons like allout-widgets.
9975 (allout-make-topic-prefix, allout-rebullet-heading):
9976 Change SOLICIT arg to INSTEAD, and interpret additionally a string
9977 value as alternate bullet to be used, instead of prompting the user
9978 for a bullet character.
9979
9980 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
9981
9982 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
9983 Do not use `tramp-file-name-port', because this returns also
9984 `tramp-default-port'.
9985
9986 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9987
9988 * net/rcirc.el (rcirc-handler-001): Remove useless
9989 with-rcirc-process-buffer.
9990 (rcirc-check-auth-status): Swap arguments to string-match.
9991
9992 2011-03-09 Glenn Morris <rgm@gnu.org>
9993
9994 * shell.el (shell-mode):
9995 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
9996
9997 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
9998 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
9999
10000 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
10001
10002 * emacs-lisp/package.el (package-refresh-contents)
10003 (package-menu-execute): Use condition-case-no-debug.
10004
10005 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
10006
10007 * simple.el (shell-command-to-string): Use `process-file'.
10008
10009 * emacs-lisp/package.el (package-tar-file-info): Handle also
10010 remote files.
10011
10012 * emacs-lisp/package-x.el (package-upload-buffer-internal):
10013 Use `equal' for upload base check.
10014
10015 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
10016
10017 * textmodes/texinfo.el (texinfo-environments):
10018 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
10019
10020 2011-03-08 Glenn Morris <rgm@gnu.org>
10021
10022 * cus-start.el (cursor-in-non-selected-windows):
10023 Fix :set quoting oddness. (Bug#8192)
10024
10025 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
10026 in some setf expressions. (Bug#2159)
10027
10028 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
10029
10030 * custom.el (custom-available-themes): Return themes in
10031 alphabetical order.
10032
10033 See ChangeLog.15 for earlier changes.
10034
10035 ;; Local Variables:
10036 ;; coding: utf-8
10037 ;; End:
10038
10039 Copyright (C) 2011-2012 Free Software Foundation, Inc.
10040
10041 This file is part of GNU Emacs.
10042
10043 GNU Emacs is free software: you can redistribute it and/or modify
10044 it under the terms of the GNU General Public License as published by
10045 the Free Software Foundation, either version 3 of the License, or
10046 (at your option) any later version.
10047
10048 GNU Emacs is distributed in the hope that it will be useful,
10049 but WITHOUT ANY WARRANTY; without even the implied warranty of
10050 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10051 GNU General Public License for more details.
10052
10053 You should have received a copy of the GNU General Public License
10054 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.